diff --git a/siri/gtfs_reader/src/main/java/il/org/hasadna/siri_client/gtfs/main/GtfsCollectorConfiguration.java b/siri/gtfs_reader/src/main/java/il/org/hasadna/siri_client/gtfs/main/GtfsCollectorConfiguration.java index 80dbed9e..a9bd40e2 100644 --- a/siri/gtfs_reader/src/main/java/il/org/hasadna/siri_client/gtfs/main/GtfsCollectorConfiguration.java +++ b/siri/gtfs_reader/src/main/java/il/org/hasadna/siri_client/gtfs/main/GtfsCollectorConfiguration.java @@ -12,12 +12,16 @@ import java.util.Collections; import java.util.List; import java.util.concurrent.TimeUnit; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component public class GtfsCollectorConfiguration { + private static Logger logger = LoggerFactory.getLogger(GtfsCollectorConfiguration.class); + private static final int DEFAULT_BACKUP_FILES_STORE_TIME_IN_DAYS = 5; private final LocalTime DEFAULT_WHEN_TO_DOWNLOAD = LocalTime.of(3, 30); private final LocalDate DEFAULT_DATE_OF_LAST_DOWNLOAD = LocalDate.of(2000, 1, 1); @@ -59,6 +63,7 @@ public void setGtfsRawFilesBackupDirectory(String gtfsRawFilesBackupDirectory) { } GtfsCollectorConfiguration.gtfsRawFilesBackupDirectory = gtfsRawFilesBackupDirectory; + logger.info("set gtfsRawFilesBackupDirectory={}", gtfsRawFilesBackupDirectory); } @Value("${gtfs.gtfsDownloadDisabled:false}") @@ -187,4 +192,4 @@ private List parseList(String s) { String[] items = s.split(","); return new ArrayList<>(Arrays.asList(items)); } -} \ No newline at end of file +} diff --git a/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriConsumeServiceImpl.java b/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriConsumeServiceImpl.java index 15ed71a0..3bb78795 100644 --- a/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriConsumeServiceImpl.java +++ b/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriConsumeServiceImpl.java @@ -19,6 +19,7 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.ImportResource; import org.springframework.context.annotation.Profile; import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; @@ -27,7 +28,7 @@ import org.springframework.web.client.RestTemplate; @Component -@Profile({"production", "integrationTests"}) +@Profile({"production", "test2"}) public class SiriConsumeServiceImpl implements SiriConsumeService { @Value("${number.of.intervals:12}") @@ -43,6 +44,7 @@ public class SiriConsumeServiceImpl implements SiriConsumeService { private DatadogMeterRegistry registry; protected final Logger logger = LoggerFactory.getLogger(this.getClass()); + protected final Logger responseLogger = LoggerFactory.getLogger("RESPONSE_LOGGER"); final String SIRI_SERVICES_URL = "http://siri.motrealtime.co.il:8081/Siri/SiriServices"; @@ -97,11 +99,17 @@ public GetStopMonitoringServiceResponse retrieveSiri(String stopCode, String pre if (content == null) { return null; } - logger.debug("lineRef={}, stopCode={}, previewInterval={}", lineRef, stopCode, previewInterval); - logger.trace(" response={}", content); + try { + logger.debug("lineRef={}, stopCode={}, previewInterval={}", lineRef, stopCode, previewInterval); + //logger.trace(" response={}", content); + //responseLogger.warn("{},{}", lineRef, content.replace("\n", "")); + } + catch (Exception ex) { + // absorb + } content = SoapUtils.removeSoapEnvelope(content); - logger.trace(content); + //logger.trace(content); //unmarshall XML to object GetStopMonitoringServiceResponse response = unmarshalXml(content); diff --git a/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriParseServiceImpl.java b/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriParseServiceImpl.java index 70e091df..43884080 100644 --- a/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriParseServiceImpl.java +++ b/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriParseServiceImpl.java @@ -5,6 +5,7 @@ import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import uk.org.siri.siri.MonitoredStopVisitStructure; +import uk.org.siri.siri.MonitoredVehicleJourneyStructure; import uk.org.siri.siri.StopMonitoringDeliveriesStructure; import uk.org.siri.siri.StopMonitoringDeliveryStructure; @@ -43,7 +44,7 @@ public Optional parseShortSummary(GetStopMonitoringServiceResponse sm) { } Date departureTime = visit.getMonitoredVehicleJourney().getOriginAimedDepartureTime(); licensePlates.add(licensePlate); - visits.put(formatDate(departureTime) + "/" + licensePlate, visit); + visits.putIfAbsent(((departureTime==null)?"99:99":formatDate(departureTime)) + "/" + licensePlate, visit); } } String s = ""; @@ -53,7 +54,8 @@ public Optional parseShortSummary(GetStopMonitoringServiceResponse sm) { MonitoredStopVisitStructure visit = visits.get(key); String licensePlate = visit.getMonitoredVehicleJourney().getVehicleRef().getValue(); String lineRef = visit.getMonitoredVehicleJourney().getLineRef().getValue(); - visit.getMonitoredVehicleJourney().getMonitoredCall().isVehicleAtStop(); + // isVehicleAtStop = visit.getMonitoredVehicleJourney().getMonitoredCall().isVehicleAtStop(); + String vehicleAtStopStr = parseVehicleAtStop(visit.getMonitoredVehicleJourney()); // "0"=false, "1"=true, "2"=did not appear (or null) Date expectedArrivalTime = visit.getMonitoredVehicleJourney().getMonitoredCall().getExpectedArrivalTime(); BigDecimal lon = BigDecimal.ZERO; BigDecimal lat = BigDecimal.ZERO; @@ -69,7 +71,9 @@ public Optional parseShortSummary(GetStopMonitoringServiceResponse sm) { Date departureTime = visit.getMonitoredVehicleJourney().getOriginAimedDepartureTime(); String operatorRef = visit.getMonitoredVehicleJourney().getOperatorRef().getValue(); String journeyRef = visit.getMonitoredVehicleJourney().getFramedVehicleJourneyRef().getDatedVehicleJourneyRef(); - String rep = stringRepresentation(lineRef, lineName, recordedAt, expectedArrivalTime, licensePlate, lat, lon, departureTime, operatorRef, journeyRef, responseTimestamp); + String dataFrameRef = visit.getMonitoredVehicleJourney().getFramedVehicleJourneyRef().getDataFrameRef().getValue(); + String stopPointRef = visit.getMonitoredVehicleJourney().getMonitoredCall().getStopPointRef().getValue(); + String rep = stringRepresentation(lineRef, lineName, recordedAt, expectedArrivalTime, licensePlate, lat, lon, departureTime, operatorRef, journeyRef, responseTimestamp, dataFrameRef, stopPointRef, vehicleAtStopStr); s = s + rep + "\n"; } if (!visits.isEmpty()) { @@ -86,16 +90,50 @@ public Optional parseShortSummary(GetStopMonitoringServiceResponse sm) { } } + /** + * r + * @param monitoredVehicleJourney + * @return isVehicleAtStop: 0=false, 1=true, 2=did not appear (or null, or some unknown exception during parsing) + */ + private String parseVehicleAtStop(MonitoredVehicleJourneyStructure monitoredVehicleJourney) { + if ((monitoredVehicleJourney == null) || (monitoredVehicleJourney.getMonitoredCall() == null)) { + return "2"; + } + String defaultVal = "2"; + try { + Boolean isVehicleAtStop = monitoredVehicleJourney.getMonitoredCall().isVehicleAtStop(); + String vehicleAtStopStr = defaultVal; + if (isVehicleAtStop != null) { + if (isVehicleAtStop) { + vehicleAtStopStr = "1"; + } else { + vehicleAtStopStr = "0"; + } + } else { + vehicleAtStopStr = "2"; + } + return vehicleAtStopStr; + } + catch (Exception ex) { + // silently absorb (logging here might cause several millions lines in log file every day) + return defaultVal; + } + } - private String stringRepresentation(String lineRef, String lineName, Date recordedAt, Date expectedArrivalTime, String licensePlate, BigDecimal lon, BigDecimal lat, Date departureTime, String operatorRef, String journeyRef, String responseTimestamp) { - String s = MessageFormat.format("{10},[line {0} v {1} oad {6} ea {2}],{7},{8},{0},{9},{6},{1},{2},{3},{4},{5}", + private String stringRepresentation(String lineRef, String lineName, Date recordedAt, Date expectedArrivalTime, + String licensePlate, BigDecimal lon, BigDecimal lat, Date departureTime, + String operatorRef, String journeyRef, String responseTimestamp, + String dataFrameRef, String stopPointRef, String vehicleAtStopStr) { + String s = MessageFormat.format("{10},[line {0} v {1} oad {15} ea {11}],{7},{8},{0},{9},{6},{1},{2},{3},{4},{5},{12},{13},{14},v2", lineName, licensePlate, - formatTimeHHMM(expectedArrivalTime), - formatTime(recordedAt), + formatDate(expectedArrivalTime), // expectedArrivalTime should include both date and time - // 2019-04-01T21:14:00.000+03:00 + formatDate(recordedAt), // recordedAt should include both date and time lon.toString(), lat.toString(), - formatTimeHHMM(departureTime), - operatorRef, lineRef, journeyRef, responseTimestamp - ); + formatDate(departureTime), // OriginAimedDeparture should include both date and time - // 2019-04-01T20:00:00.000+03:00 + operatorRef, lineRef, journeyRef, responseTimestamp, + formatTimeHHMM(expectedArrivalTime), // ea as time only, for the free text part + dataFrameRef, stopPointRef, vehicleAtStopStr, formatTimeHHMM(departureTime) + ); return s ; } @@ -116,3 +154,30 @@ private String formatTimeHHMM(Date date) { } } + +/* +596212019-04-01314391641744606642019-04-01T20:36:00.000+03:0035.2901458740234431.768772125244147558569606642019-04-01T21:18:00.000+03:00 + + + 5962 + 1 + + 2019-04-01 + 31439164 + + 174 + 4 + 60664 + 2019-04-01T20:36:00.000+03:00 + + 35.29014587402344 + 31.76877212524414 + + 7558569 + + 60664 + 2019-04-01T21:18:00.000+03:00 + + + +*/ \ No newline at end of file diff --git a/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriPersistFileService.java b/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriPersistFileService.java index 0a370782..7d11d8d3 100644 --- a/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriPersistFileService.java +++ b/siri/siri_retriever/siri-0.1/src/main/java/org/hasadna/bus/service/SiriPersistFileService.java @@ -2,7 +2,12 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.web.client.RestTemplateBuilder; +import org.springframework.http.HttpEntity; import org.springframework.stereotype.Component; +import org.springframework.util.StringUtils; @Component public class SiriPersistFileService implements SiriPersistService { @@ -12,10 +17,33 @@ public class SiriPersistFileService implements SiriPersistService { // this logger should be defined to a specific file - see logback.xml protected final Logger fileLogger = LoggerFactory.getLogger("SiriRealTimeData"); + @Value("${external.send:false}") + boolean sendExternal; + + @Value("${external.url}") + String url; + + @Autowired + RestTemplateBuilder restTemplateBuilder; + @Override public void persistShortSummary(String summary) { logger.trace("persisting..."); fileLogger.info(summary); + sendToExternal(summary); logger.trace(" ...Done"); } + + private void sendToExternal(String str) { + try { + if (sendExternal && !StringUtils.isEmpty(str)) { + restTemplateBuilder.build().postForEntity(url, new HttpEntity(str, null), String.class); + } + } + catch (Exception ex) { + logger.debug("absorbing ", ex); + } + + } } + diff --git a/siri/siri_retriever/siri-0.1/src/main/resources/application-production.properties b/siri/siri_retriever/siri-0.1/src/main/resources/application-production.properties index ed55887e..dd684545 100644 --- a/siri/siri_retriever/siri-0.1/src/main/resources/application-production.properties +++ b/siri/siri_retriever/siri-0.1/src/main/resources/application-production.properties @@ -12,4 +12,10 @@ scheduler.data.file=/home/evyatar/logs/ scheduler.enable=true # change to false if you want to disable DataDog Monitoring -management.metrics.export.datadog.enabled=true \ No newline at end of file +management.metrics.export.datadog.enabled=true + +#change to error to disable writing response xml to debug log +logging.level.RESPONSE_LOGGER=error + +external.url=https://gtfs-web-app.appspot.com/siri/raw/data +external.send=false diff --git a/siri/siri_retriever/siri-0.1/src/main/resources/logback-ignore-test.xml b/siri/siri_retriever/siri-0.1/src/main/resources/logback-ignore-test.xml index ce6f6a40..dd6d6656 100644 --- a/siri/siri_retriever/siri-0.1/src/main/resources/logback-ignore-test.xml +++ b/siri/siri_retriever/siri-0.1/src/main/resources/logback-ignore-test.xml @@ -29,14 +29,14 @@ - ${DEV_HOME}/siri_rt_data.log + ${DEV_HOME}/siri_rt_data_v2.log %msg%n - ${DEV_HOME}/archived/siri_rt_data.%d{yyyy-MM-dd}.%i.log.gz + ${DEV_HOME}/archived/siri_rt_data_v2.%d{yyyy-MM-dd}.%i.log.gz 100MB diff --git a/siri/siri_retriever/siri-0.1/src/main/resources/logback.xml b/siri/siri_retriever/siri-0.1/src/main/resources/logback.xml index 871da076..a1989777 100644 --- a/siri/siri_retriever/siri-0.1/src/main/resources/logback.xml +++ b/siri/siri_retriever/siri-0.1/src/main/resources/logback.xml @@ -27,16 +27,16 @@ - + - ${SIRI_OUTPUT_PATH}/siri_rt_data.log + ${SIRI_OUTPUT_PATH}/siri_rt_data_v2.log %msg%n - ${SIRI_OUTPUT_PATH}/archived/siri_rt_data.%d{yyyy-MM-dd}.%i.log.gz + ${SIRI_OUTPUT_PATH}/archived/siri_rt_data_v2.%d{yyyy-MM-dd}.%i.log.gz 100MB @@ -49,13 +49,16 @@ - + - + + + + - + diff --git a/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullClock.java b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullClock.java new file mode 100644 index 00000000..8bb6365b --- /dev/null +++ b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullClock.java @@ -0,0 +1,16 @@ +package org.hasadna.bus.service; + +import org.springframework.stereotype.Component; + +@Component +public class NullClock implements io.micrometer.core.instrument.Clock { + @Override + public long wallTime() { + return 0; + } + + @Override + public long monotonicTime() { + return 0; + } +} diff --git a/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullDatadogConfig.java b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullDatadogConfig.java new file mode 100644 index 00000000..ccde1a91 --- /dev/null +++ b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullDatadogConfig.java @@ -0,0 +1,42 @@ +package org.hasadna.bus.service; + +import io.micrometer.datadog.DatadogConfig; +import org.springframework.stereotype.Component; + +@Component +public class NullDatadogConfig implements DatadogConfig { + @Override + public String prefix() { + return null; + } + + @Override + public String get(String s) { + return null; + } + + @Override + public String apiKey() { + return ""; + } + + @Override + public String applicationKey() { + return null; + } + + @Override + public String hostTag() { + return null; + } + + @Override + public String uri() { + return "http://www.example.com"; + } + + @Override + public boolean descriptions() { + return false; + } +} diff --git a/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullDatadogMeterRegistry.java b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullDatadogMeterRegistry.java new file mode 100644 index 00000000..d7bdfdbd --- /dev/null +++ b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullDatadogMeterRegistry.java @@ -0,0 +1,13 @@ +package org.hasadna.bus.service; + +import io.micrometer.core.instrument.Clock; +import io.micrometer.datadog.DatadogConfig; +import io.micrometer.datadog.DatadogMeterRegistry; +import org.springframework.stereotype.Component; + +@Component +public class NullDatadogMeterRegistry extends DatadogMeterRegistry { + public NullDatadogMeterRegistry(DatadogConfig config, Clock clock) { + super(config, clock); + } +} diff --git a/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullHttpPost.java b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullHttpPost.java new file mode 100644 index 00000000..bc5bc54a --- /dev/null +++ b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/NullHttpPost.java @@ -0,0 +1,13 @@ +package org.hasadna.bus.service; + +import org.springframework.http.HttpEntity; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Component; + +//@Component +//public class NullHttpPost implements HttpPost { +// @Override +// public ResponseEntity postHttpRequest(String url, HttpEntity entity) { +// return null; +// } +//} diff --git a/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/SiriConsumeServiceNullImpl.java b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/SiriConsumeServiceNullImpl.java new file mode 100644 index 00000000..4c16fd79 --- /dev/null +++ b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/SiriConsumeServiceNullImpl.java @@ -0,0 +1,13 @@ +package org.hasadna.bus.service; + +import io.micrometer.datadog.DatadogMeterRegistry; +import org.springframework.stereotype.Component; + +//@Component +//public class SiriConsumeServiceNullImpl extends SiriConsumeServiceImpl { +// public SiriConsumeServiceNullImpl() { +// this.registry = null; +// } +// +// DatadogMeterRegistry registry = null; +//} diff --git a/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/SiriParseServiceImplTest.java b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/SiriParseServiceImplTest.java new file mode 100644 index 00000000..0e48879a --- /dev/null +++ b/siri/siri_retriever/siri-0.1/src/test/java/org/hasadna/bus/service/SiriParseServiceImplTest.java @@ -0,0 +1,242 @@ +package org.hasadna.bus.service; + +import org.assertj.core.api.Assertions; +import org.hasadna.bus.BusApplication; +import org.hasadna.bus.SiriConsumeServiceImplTest; +import org.hasadna.bus.config.MonitorConfig; +import org.hasadna.bus.entity.GetStopMonitoringServiceResponse; +import org.hasadna.bus.entity.StopMonitoringAnswer; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.context.TestConfiguration; +import org.springframework.context.annotation.ImportResource; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringRunner; + +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBElement; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Unmarshaller; +import javax.xml.transform.stream.StreamSource; +import java.io.StringReader; +import java.util.Arrays; +import java.util.Optional; +import java.util.stream.Stream; + +import static org.junit.Assert.*; + + +import io.micrometer.datadog.DatadogMeterRegistry; +import org.assertj.core.api.Assertions; +import org.hasadna.bus.entity.GetStopMonitoringServiceResponse; +import org.hasadna.bus.service.HttpPostRestTemplateImpl; +import org.hasadna.bus.service.SiriConsumeService; +import org.hasadna.bus.service.SiriConsumeServiceImpl; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.core.env.ConfigurableEnvironment; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringRunner; + +import static org.mockito.ArgumentMatchers.anyInt; +import static org.mockito.ArgumentMatchers.anyString; +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.when; + +//@SpringBootTest +@RunWith(SpringRunner.class) +@SpringBootTest(webEnvironment=SpringBootTest.WebEnvironment.NONE, classes = BusApplication.class) +@AutoConfigureMockMvc +@TestPropertySource(locations = "classpath:application-test.properties") +public class SiriParseServiceImplTest { + + protected final Logger logger = LoggerFactory.getLogger(SiriParseServiceImplTest.class); + + @Autowired + SiriConsumeServiceImpl siriConsumeServiceImpl; + + @Autowired + SiriParseService parseService; + + @Autowired + private ConfigurableEnvironment env; + + SiriConsumeService scs ; + + @Before + public void before() { + scs = spy(siriConsumeServiceImpl); + when(scs.retrieveSpecificLineAndStop(anyString(), anyString(), anyString(), anyInt())) + .thenReturn(SOAP_RESPONSE_1); + } + + @Test + public void testParsing() { + GetStopMonitoringServiceResponse result = + scs.retrieveSiri("a", "b", "c", 1); + Assertions.assertThat(result).isNotNull(); + Assertions.assertThat(result.getAnswer()).isNotNull(); + Assertions.assertThat(result.getAnswer().getStopMonitoringDelivery()).isNotNull(); + Assertions.assertThat(result.getAnswer().getProducerRef().getValue()).isEqualTo("ISR Siri Server (141.12)"); + + Optional opSummary = parseService.parseShortSummary(result); + Assertions.assertThat(opSummary.isPresent()).isTrue(); + Assertions.assertThat(opSummary.get()).isNotNull().isNotEmpty(); + + String summary = opSummary.get(); + Assertions.assertThat(summary.contains("[line")).isTrue(); + + for (String line : summary.split("\n")) { + String[] fields = line.split(","); + logger.info("timestamp={}", fields[0]); + logger.info("expectedArrivalTime={}", fields[8]); // should have date part as well as time part + logger.info("departureTime={}", fields[6]); // should have date part as well as time part + logger.info("recordedAt={}", fields[9]); + logger.info("dataFrameRef={}", fields[12]); + logger.info("stopPointRef={}", fields[13]); + logger.info("vehicleAtStopStr={}", fields[14]); + logger.info("version={}", fields[fields.length - 1]); + } + } + + @Test + public void testParsing2() { + String respStr = SOAP_RESPONSE_1; + when(scs.retrieveSpecificLineAndStop(anyString(), anyString(), anyString(), anyInt())) + .thenReturn(respStr); + GetStopMonitoringServiceResponse result = + scs.retrieveSiri("a", "b", "c", 1); + Assertions.assertThat(result).isNotNull(); + Assertions.assertThat(result.getAnswer()).isNotNull(); + Assertions.assertThat(result.getAnswer().getStopMonitoringDelivery()).isNotNull(); + Assertions.assertThat(result.getAnswer().getProducerRef().getValue()).isEqualTo("ISR Siri Server (141.12)"); + + Optional opSummary = parseService.parseShortSummary(result); + Assertions.assertThat(opSummary.isPresent()).isTrue(); + Assertions.assertThat(opSummary.get()).isNotNull().isNotEmpty(); + + String summary = opSummary.get(); + Assertions.assertThat(summary.contains("[line")).isTrue(); + + for (String line : summary.split("\n")) { + String[] fields = line.split(","); + logger.info("timestamp={}", fields[0]); + logger.info("expectedArrivalTime={}", fields[8]); // should have date part as well as time part + logger.info("departureTime={}", fields[6]); // should have date part as well as time part + logger.info("recordedAt={}", fields[9]); + logger.info("dataFrameRef={}", fields[12]); + logger.info("stopPointRef={}", fields[13]); + logger.info("vehicleAtStopStr={}", fields[14]); + logger.info("version={}", fields[fields.length - 1]); + } + } + + + @Test + public void testParsing3() { + Arrays.asList(manyResponses).stream().forEach(str -> { + for (String respStr : str.split("\n")) { + when(scs.retrieveSpecificLineAndStop(anyString(), anyString(), anyString(), anyInt())) + .thenReturn(respStr); + GetStopMonitoringServiceResponse result = + scs.retrieveSiri("a", "b", "c", 1); + Assertions.assertThat(result).isNotNull(); + Assertions.assertThat(result.getAnswer()).isNotNull(); + Assertions.assertThat(result.getAnswer().getStopMonitoringDelivery()).isNotNull(); + Assertions.assertThat(result.getAnswer().getProducerRef().getValue()).startsWith("ISR Siri Server (141.1"); + + Optional opSummary = parseService.parseShortSummary(result); + Assertions.assertThat(opSummary.isPresent()).isTrue(); + Assertions.assertThat(opSummary.get()).isNotNull().isNotEmpty(); + + String summary = opSummary.get(); + Assertions.assertThat(summary.contains("[line")).isTrue(); + + for (String line : summary.split("\n")) { + String[] fields = line.split(","); + logger.info("timestamp={}", fields[0]); + logger.info("expectedArrivalTime={}", fields[8]); // should have date part as well as time part + logger.info("departureTime={}", fields[6]); // should have date part as well as time part + logger.info("recordedAt={}", fields[9]); + logger.info("dataFrameRef={}", fields[12]); + logger.info("stopPointRef={}", fields[13]); + logger.info("vehicleAtStopStr={}", fields[14]); + logger.info("version={}", fields[fields.length - 1]); + } + } + }); + } + + + public final String SOAP_RESPONSE_1 = "2018-09-03T22:17:14.603+03:00ISR Siri Server (141.12)226346940100700:1351669188:4684true2018-09-03T22:17:14.603+03:00true2018-09-03T22:17:12.000+03:001049724314357441149422018-09-032945813137115357442018-09-03T20:00:00.000+03:0034.8593940734863331.9178085327148448331253357442018-09-03T22:22:00.000+03:002018-09-03T22:17:11.000+03:001049724316357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724319357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724321357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724324357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724327357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724329357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724331357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724334357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724337357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724339357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724342357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:002018-09-03T22:17:14.603+03:00true2018-09-03T22:17:11.000+03:001049724344357441149422018-09-032945813437115357442018-09-03T21:30:00.000+03:0034.76099014282226631.6066741943359388335753357442018-09-03T23:25:00.000+03:00\n"; + + public String manyResponses[] = new String[]{ + "2019-04-01T21:02:13.339+03:00ISR Siri Server (141.13)440281320100700:1351669188:4684true2019-04-01T21:02:13.339+03:00true2019-04-01T21:02:11.000+03:00-1885927876113551671122019-04-0134281459231113552019-04-01T20:50:00.000+03:0034.62432479858398431.3096942901611334346434113552019-04-01T21:09:00.000+03:002019-04-01T18:51:37.000+03:00-1885927875113551671122019-04-0134281460231113552019-04-01T21:20:00.000+03:004349834113552019-04-01T21:37:00.000+03:002019-04-01T21:37:00.000+03:002019-04-01T15:52:24.000+03:00-1885927874113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T21:02:11.000+03:00-1885927873113551671122019-04-0134281459231113552019-04-01T20:50:00.000+03:0034.62432479858398431.3096942901611334346434113552019-04-01T21:09:00.000+03:002019-04-01T18:51:37.000+03:00-1885927872113551671122019-04-0134281460231113552019-04-01T21:20:00.000+03:004349834113552019-04-01T21:37:00.000+03:002019-04-01T21:37:00.000+03:002019-04-01T15:52:24.000+03:00-1885927871113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T18:51:37.000+03:00-1885927870113551671122019-04-0134281460231113552019-04-01T21:20:00.000+03:004349834113552019-04-01T21:37:00.000+03:002019-04-01T21:37:00.000+03:002019-04-01T15:52:24.000+03:00-1885927869113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927868113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T18:51:37.000+03:00-1885927867113551671122019-04-0134281460231113552019-04-01T21:20:00.000+03:004349834113552019-04-01T21:37:00.000+03:002019-04-01T21:37:00.000+03:002019-04-01T15:52:24.000+03:00-1885927866113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927865113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T18:51:37.000+03:00-1885927864113551671122019-04-0134281460231113552019-04-01T21:20:00.000+03:004349834113552019-04-01T21:37:00.000+03:002019-04-01T21:37:00.000+03:002019-04-01T15:52:24.000+03:00-1885927863113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927862113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T18:51:37.000+03:00-1885927861113551671122019-04-0134281460231113552019-04-01T21:20:00.000+03:004349834113552019-04-01T21:37:00.000+03:002019-04-01T21:37:00.000+03:002019-04-01T15:52:24.000+03:00-1885927860113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927859113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T18:51:37.000+03:00-1885927858113551671122019-04-0134281460231113552019-04-01T21:20:00.000+03:004349834113552019-04-01T21:37:00.000+03:002019-04-01T21:37:00.000+03:002019-04-01T15:52:24.000+03:00-1885927857113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927856113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T15:52:24.000+03:00-1885927855113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927854113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T15:52:24.000+03:00-1885927853113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927852113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T15:52:24.000+03:00-1885927851113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927850113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T15:52:24.000+03:00-1885927849113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927848113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:002019-04-01T21:02:13.339+03:00true2019-04-01T15:52:24.000+03:00-1885927847113551671122019-04-0134281461231113552019-04-01T21:50:00.000+03:00113552019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:53:11.000+03:00-1885927846113551671122019-04-0134281462231113552019-04-01T22:20:00.000+03:00113552019-04-01T22:37:00.000+03:002019-04-01T22:37:00.000+03:00\n" + + "2019-04-01T21:02:13.386+03:00ISR Siri Server (141.13)440281340100700:1351669188:4684true2019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592784534490658522019-04-01372372663193344902019-04-01T20:00:00.000+03:0034.8063507080078131.9055747985839848877301344902019-04-01T21:14:00.000+03:002019-04-01T21:02:09.000+03:00-188592784434490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592784334490658522019-04-01372372663193344902019-04-01T20:00:00.000+03:0034.8063507080078131.9055747985839848877301344902019-04-01T21:14:00.000+03:002019-04-01T21:02:09.000+03:00-188592784234490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592784134490658522019-04-01372372663193344902019-04-01T20:00:00.000+03:0034.8063507080078131.9055747985839848877301344902019-04-01T21:14:00.000+03:002019-04-01T21:02:09.000+03:00-188592784034490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783934490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783834490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783734490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783634490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783534490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783434490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783334490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783234490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:002019-04-01T21:02:13.386+03:00true2019-04-01T21:02:09.000+03:00-188592783134490658522019-04-01372372673193344902019-04-01T21:00:00.000+03:0034.8224487304687532.0864906311035168851701344902019-04-01T22:05:00.000+03:00\n" + , "2019-04-01T21:02:13.395+03:00ISR Siri Server (141.10)2824335700100700:1351669188:4684true2019-04-01T21:02:13.395+03:00true2019-04-01T21:00:43.000+03:00-482547501199874422019-04-013450573221225199872019-04-01T20:00:00.000+03:0034.6413421630859431.80225563049316456256601199872019-04-01T21:04:00.000+03:002019-04-01T21:02:08.000+03:00-482547500199874422019-04-013450573321225199872019-04-01T20:45:00.000+03:0034.7846870422363331.89072799682617256252601199872019-04-01T21:42:00.000+03:002019-04-01T20:51:31.000+03:00-482547499199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T21:02:08.000+03:00-482547498199874422019-04-013450573321225199872019-04-01T20:45:00.000+03:0034.7846870422363331.89072799682617256252601199872019-04-01T21:42:00.000+03:002019-04-01T20:51:31.000+03:00-482547497199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T21:02:08.000+03:00-482547496199874422019-04-013450573321225199872019-04-01T20:45:00.000+03:0034.7846870422363331.89072799682617256252601199872019-04-01T21:42:00.000+03:002019-04-01T20:51:31.000+03:00-482547495199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547494199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T21:02:08.000+03:00-482547493199874422019-04-013450573321225199872019-04-01T20:45:00.000+03:0034.7846870422363331.89072799682617256252601199872019-04-01T21:42:00.000+03:002019-04-01T20:51:31.000+03:00-482547492199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547491199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T21:02:08.000+03:00-482547490199874422019-04-013450573321225199872019-04-01T20:45:00.000+03:0034.7846870422363331.89072799682617256252601199872019-04-01T21:42:00.000+03:002019-04-01T20:51:31.000+03:00-482547489199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547488199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T21:02:08.000+03:00-482547487199874422019-04-013450573321225199872019-04-01T20:45:00.000+03:0034.7846870422363331.89072799682617256252601199872019-04-01T21:42:00.000+03:002019-04-01T20:51:31.000+03:00-482547486199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547485199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T21:02:08.000+03:00-482547484199874422019-04-013450573321225199872019-04-01T20:45:00.000+03:0034.7846870422363331.89072799682617256252601199872019-04-01T21:42:00.000+03:002019-04-01T20:51:31.000+03:00-482547483199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547482199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T21:02:08.000+03:00-482547481199874422019-04-013450573321225199872019-04-01T20:45:00.000+03:0034.7846870422363331.89072799682617256252601199872019-04-01T21:42:00.000+03:002019-04-01T20:51:31.000+03:00-482547480199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547479199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T20:51:31.000+03:00-482547478199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547477199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T20:51:31.000+03:00-482547476199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547475199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T20:51:31.000+03:00-482547474199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547473199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T20:51:31.000+03:00-482547472199874422019-04-013450573621225199872019-04-01T23:00:00.000+03:008911233199872019-04-01T23:52:00.000+03:002019-04-01T23:52:00.000+03:002019-04-01T21:02:13.395+03:00true2019-04-01T20:51:31.000+03:00-482547471199874422019-04-013450573421225199872019-04-01T21:30:00.000+03:007294552199872019-04-01T22:22:00.000+03:002019-04-01T22:22:00.000+03:002019-04-01T20:51:31.000+03:00-482547470199874422019-04-013450573521225199872019-04-01T22:15:00.000+03:007297152199872019-04-01T23:08:00.000+03:002019-04-01T23:08:00.000+03:002019-04-01T20:51:31.000+03:00-482547469199874422019-04-013450573621225199872019-04-01T23:00:00.000+03:008911233199872019-04-01T23:52:00.000+03:002019-04-01T23:52:00.000+03:00\n" + + "2019-04-01T21:02:13.464+03:00ISR Siri Server (141.13)440281390100700:1351669188:4684true2019-04-01T21:02:13.464+03:00true2019-04-01T15:21:27.000+03:00-1885927729144921393412019-04-0130595987315144922019-04-01T21:15:00.000+03:008337453144922019-04-01T21:40:00.000+03:002019-04-01T21:40:00.000+03:002019-04-01T15:21:38.000+03:00-1885927728144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:27.000+03:00-1885927727144921393412019-04-0130595987315144922019-04-01T21:15:00.000+03:008337453144922019-04-01T21:40:00.000+03:002019-04-01T21:40:00.000+03:002019-04-01T15:21:38.000+03:00-1885927726144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:27.000+03:00-1885927725144921393412019-04-0130595987315144922019-04-01T21:15:00.000+03:008337453144922019-04-01T21:40:00.000+03:002019-04-01T21:40:00.000+03:002019-04-01T15:21:38.000+03:00-1885927724144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:27.000+03:00-1885927723144921393412019-04-0130595987315144922019-04-01T21:15:00.000+03:008337453144922019-04-01T21:40:00.000+03:002019-04-01T21:40:00.000+03:002019-04-01T15:21:38.000+03:00-1885927722144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:27.000+03:00-1885927721144921393412019-04-0130595987315144922019-04-01T21:15:00.000+03:008337453144922019-04-01T21:40:00.000+03:002019-04-01T21:40:00.000+03:002019-04-01T15:21:38.000+03:00-1885927720144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:27.000+03:00-1885927719144921393412019-04-0130595987315144922019-04-01T21:15:00.000+03:008337453144922019-04-01T21:40:00.000+03:002019-04-01T21:40:00.000+03:002019-04-01T15:21:38.000+03:00-1885927718144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:27.000+03:00-1885927717144921393412019-04-0130595987315144922019-04-01T21:15:00.000+03:008337453144922019-04-01T21:40:00.000+03:002019-04-01T21:40:00.000+03:002019-04-01T15:21:38.000+03:00-1885927716144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:27.000+03:00-1885927715144921393412019-04-0130595987315144922019-04-01T21:15:00.000+03:008337453144922019-04-01T21:40:00.000+03:002019-04-01T21:40:00.000+03:002019-04-01T15:21:38.000+03:00-1885927714144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:38.000+03:00-1885927713144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:38.000+03:00-1885927712144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:38.000+03:00-1885927711144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.464+03:00true2019-04-01T15:21:38.000+03:00-1885927710144921393412019-04-0130595992315144922019-04-01T22:00:00.000+03:008338253144922019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:00\n" + , "2019-04-01T21:02:13.415+03:00ISR Siri Server (141.12)2794251000100700:1351669188:4684true2019-04-01T21:02:13.415+03:00true2019-04-01T21:01:59.000+03:00-602297949603811159622019-04-013742471922018603812019-04-01T19:20:00.000+03:0035.0449714660644531.930032730102547342552603812019-04-01T21:10:00.000+03:002019-04-01T21:02:11.000+03:00-602297948603811159622019-04-013742472022018603812019-04-01T20:00:00.000+03:0034.91310882568359431.971719741821297324552603812019-04-01T21:32:00.000+03:002019-04-01T21:02:03.000+03:00-602297947603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:01:59.000+03:00-602297946603811159622019-04-013742471922018603812019-04-01T19:20:00.000+03:0035.0449714660644531.930032730102547342552603812019-04-01T21:10:00.000+03:002019-04-01T21:02:11.000+03:00-602297945603811159622019-04-013742472022018603812019-04-01T20:00:00.000+03:0034.91310882568359431.971719741821297324552603812019-04-01T21:32:00.000+03:002019-04-01T21:02:03.000+03:00-602297944603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:11.000+03:00-602297943603811159622019-04-013742472022018603812019-04-01T20:00:00.000+03:0034.91310882568359431.971719741821297324552603812019-04-01T21:32:00.000+03:002019-04-01T21:02:03.000+03:00-602297942603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297941603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:11.000+03:00-602297940603811159622019-04-013742472022018603812019-04-01T20:00:00.000+03:0034.91310882568359431.971719741821297324552603812019-04-01T21:32:00.000+03:002019-04-01T21:02:03.000+03:00-602297939603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297938603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:11.000+03:00-602297937603811159622019-04-013742472022018603812019-04-01T20:00:00.000+03:0034.91310882568359431.971719741821297324552603812019-04-01T21:32:00.000+03:002019-04-01T21:02:03.000+03:00-602297936603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297935603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:11.000+03:00-602297934603811159622019-04-013742472022018603812019-04-01T20:00:00.000+03:0034.91310882568359431.971719741821297324552603812019-04-01T21:32:00.000+03:002019-04-01T21:02:03.000+03:00-602297933603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297932603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:03.000+03:00-602297931603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297930603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:51.000+03:00-602297929603811159622019-04-013742472322018603812019-04-01T22:00:00.000+03:007331552603812019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:03.000+03:00-602297928603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297927603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:51.000+03:00-602297926603811159622019-04-013742472322018603812019-04-01T22:00:00.000+03:007331552603812019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:03.000+03:00-602297925603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297924603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:51.000+03:00-602297923603811159622019-04-013742472322018603812019-04-01T22:00:00.000+03:007331552603812019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:03.000+03:00-602297922603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297921603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:51.000+03:00-602297920603811159622019-04-013742472322018603812019-04-01T22:00:00.000+03:007331552603812019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T21:02:03.000+03:00-602297919603811159622019-04-013742472122018603812019-04-01T20:40:00.000+03:0034.8344383239746132.0804405212402343191178603812019-04-01T21:57:00.000+03:002019-04-01T15:51:38.000+03:00-602297918603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:51.000+03:00-602297917603811159622019-04-013742472322018603812019-04-01T22:00:00.000+03:007331552603812019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.415+03:00true2019-04-01T15:51:38.000+03:00-602297916603811159622019-04-013742472222018603812019-04-01T21:20:00.000+03:0030742101603812019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:51.000+03:00-602297915603811159622019-04-013742472322018603812019-04-01T22:00:00.000+03:007331552603812019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T15:26:24.000+03:00-602297914603811159622019-04-013742472422018603812019-04-01T22:40:00.000+03:002101264603812019-04-01T23:57:00.000+03:002019-04-01T23:57:00.000+03:00\n" + + "2019-04-01T21:02:13.550+03:00ISR Siri Server (141.11)62281490100700:1351669188:4684true2019-04-01T21:02:13.550+03:00true2019-04-01T21:01:43.000+03:0041751001320164864012019-04-013355641222018201642019-04-01T20:00:00.000+03:0034.83438110351562532.0799331665039067331552201642019-04-01T21:19:00.000+03:002019-04-01T21:02:13.550+03:00true2019-04-01T21:01:43.000+03:0041751001420164864012019-04-013355641222018201642019-04-01T20:00:00.000+03:0034.83438110351562532.0799331665039067331552201642019-04-01T21:19:00.000+03:002019-04-01T21:02:13.550+03:00true2019-04-01T21:01:43.000+03:0041751001520164864012019-04-013355641222018201642019-04-01T20:00:00.000+03:0034.83438110351562532.0799331665039067331552201642019-04-01T21:19:00.000+03:002019-04-01T21:02:13.550+03:00true2019-04-01T21:01:43.000+03:0041751001620164864012019-04-013355641222018201642019-04-01T20:00:00.000+03:0034.83438110351562532.0799331665039067331552201642019-04-01T21:19:00.000+03:002019-04-01T21:02:13.550+03:00false740Line 8640 is not expected to arrive in stop 20164 in the given time frame (21:22-23:22) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.550+03:00false740Line 8640 is not expected to arrive in stop 20164 in the given time frame (21:27-23:27) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.550+03:00false740Line 8640 is not expected to arrive in stop 20164 in the given time frame (21:32-23:32) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.550+03:00false740Line 8640 is not expected to arrive in stop 20164 in the given time frame (21:37-23:37) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.550+03:00false740Line 8640 is not expected to arrive in stop 20164 in the given time frame (21:42-23:42) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.550+03:00false740Line 8640 is not expected to arrive in stop 20164 in the given time frame (21:47-23:47) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.550+03:00false740Line 8640 is not expected to arrive in stop 20164 in the given time frame (21:52-23:52) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.550+03:00false740Line 8640 is not expected to arrive in stop 20164 in the given time frame (21:57-23:57) (reported by ISR Siri Server (141.11))\n" + , "2019-04-01T21:02:13.449+03:00ISR Siri Server (141.13)440281380100700:1351669188:4684true2019-04-01T21:02:13.449+03:00true2019-04-01T21:02:06.000+03:00-188592776560664596212019-04-01314391631744606642019-04-01T20:24:00.000+03:0035.2957229614257831.7761325836181647593069606642019-04-01T21:14:00.000+03:002019-04-01T21:01:42.000+03:00-188592776460664596212019-04-01314391641744606642019-04-01T20:36:00.000+03:0035.2901458740234431.768772125244147558569606642019-04-01T21:18:00.000+03:002019-04-01T21:00:56.000+03:00-188592776360664596212019-04-01314391651744606642019-04-01T20:48:00.000+03:0035.23218154907226631.7991828918457037592069606642019-04-01T21:27:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T21:02:06.000+03:00-188592776260664596212019-04-01314391631744606642019-04-01T20:24:00.000+03:0035.2957229614257831.7761325836181647593069606642019-04-01T21:14:00.000+03:002019-04-01T21:01:42.000+03:00-188592776160664596212019-04-01314391641744606642019-04-01T20:36:00.000+03:0035.2901458740234431.768772125244147558569606642019-04-01T21:18:00.000+03:002019-04-01T21:00:56.000+03:00-188592776060664596212019-04-01314391651744606642019-04-01T20:48:00.000+03:0035.23218154907226631.7991828918457037592069606642019-04-01T21:27:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T21:02:06.000+03:00-188592775960664596212019-04-01314391631744606642019-04-01T20:24:00.000+03:0035.2957229614257831.7761325836181647593069606642019-04-01T21:14:00.000+03:002019-04-01T21:01:42.000+03:00-188592775860664596212019-04-01314391641744606642019-04-01T20:36:00.000+03:0035.2901458740234431.768772125244147558569606642019-04-01T21:18:00.000+03:002019-04-01T21:00:56.000+03:00-188592775760664596212019-04-01314391651744606642019-04-01T20:48:00.000+03:0035.23218154907226631.7991828918457037592069606642019-04-01T21:27:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T21:01:42.000+03:00-188592775660664596212019-04-01314391641744606642019-04-01T20:36:00.000+03:0035.2901458740234431.768772125244147558569606642019-04-01T21:18:00.000+03:002019-04-01T21:00:56.000+03:00-188592775560664596212019-04-01314391651744606642019-04-01T20:48:00.000+03:0035.23218154907226631.7991828918457037592069606642019-04-01T21:27:00.000+03:002019-04-01T21:02:08.000+03:00-188592775460664596212019-04-01314391661744606642019-04-01T21:00:00.000+03:0035.206043243408231.7891082763671887530969606642019-04-01T21:36:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T21:00:56.000+03:00-188592775360664596212019-04-01314391651744606642019-04-01T20:48:00.000+03:0035.23218154907226631.7991828918457037592069606642019-04-01T21:27:00.000+03:002019-04-01T21:02:08.000+03:00-188592775260664596212019-04-01314391661744606642019-04-01T21:00:00.000+03:0035.206043243408231.7891082763671887530969606642019-04-01T21:36:00.000+03:002019-04-01T20:41:15.000+03:00-188592775160664596212019-04-01314391671744606642019-04-01T21:10:00.000+03:007588769606642019-04-01T21:46:00.000+03:002019-04-01T21:46:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T21:02:08.000+03:00-188592775060664596212019-04-01314391661744606642019-04-01T21:00:00.000+03:0035.206043243408231.7891082763671887530969606642019-04-01T21:36:00.000+03:002019-04-01T20:41:15.000+03:00-188592774960664596212019-04-01314391671744606642019-04-01T21:10:00.000+03:007588769606642019-04-01T21:46:00.000+03:002019-04-01T21:46:00.000+03:002019-04-01T20:41:15.000+03:00-188592774860664596212019-04-01314391681744606642019-04-01T21:20:00.000+03:007590869606642019-04-01T21:56:00.000+03:002019-04-01T21:56:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T21:02:08.000+03:00-188592774760664596212019-04-01314391661744606642019-04-01T21:00:00.000+03:0035.206043243408231.7891082763671887530969606642019-04-01T21:36:00.000+03:002019-04-01T20:41:15.000+03:00-188592774660664596212019-04-01314391671744606642019-04-01T21:10:00.000+03:007588769606642019-04-01T21:46:00.000+03:002019-04-01T21:46:00.000+03:002019-04-01T20:41:15.000+03:00-188592774560664596212019-04-01314391681744606642019-04-01T21:20:00.000+03:007590869606642019-04-01T21:56:00.000+03:002019-04-01T21:56:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T20:41:15.000+03:00-188592774460664596212019-04-01314391671744606642019-04-01T21:10:00.000+03:007588769606642019-04-01T21:46:00.000+03:002019-04-01T21:46:00.000+03:002019-04-01T20:41:15.000+03:00-188592774360664596212019-04-01314391681744606642019-04-01T21:20:00.000+03:007590869606642019-04-01T21:56:00.000+03:002019-04-01T21:56:00.000+03:002019-04-01T20:41:15.000+03:00-188592774260664596212019-04-01314391691744606642019-04-01T21:30:00.000+03:007558469606642019-04-01T22:07:00.000+03:002019-04-01T22:07:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T20:41:15.000+03:00-188592774160664596212019-04-01314391671744606642019-04-01T21:10:00.000+03:007588769606642019-04-01T21:46:00.000+03:002019-04-01T21:46:00.000+03:002019-04-01T20:41:15.000+03:00-188592774060664596212019-04-01314391681744606642019-04-01T21:20:00.000+03:007590869606642019-04-01T21:56:00.000+03:002019-04-01T21:56:00.000+03:002019-04-01T20:41:15.000+03:00-188592773960664596212019-04-01314391691744606642019-04-01T21:30:00.000+03:007558469606642019-04-01T22:07:00.000+03:002019-04-01T22:07:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T20:41:15.000+03:00-188592773860664596212019-04-01314391681744606642019-04-01T21:20:00.000+03:007590869606642019-04-01T21:56:00.000+03:002019-04-01T21:56:00.000+03:002019-04-01T20:41:15.000+03:00-188592773760664596212019-04-01314391691744606642019-04-01T21:30:00.000+03:007558469606642019-04-01T22:07:00.000+03:002019-04-01T22:07:00.000+03:002019-04-01T20:41:15.000+03:00-188592773660664596212019-04-01314391701744606642019-04-01T21:40:00.000+03:007591969606642019-04-01T22:17:00.000+03:002019-04-01T22:17:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T20:41:15.000+03:00-188592773560664596212019-04-01314391681744606642019-04-01T21:20:00.000+03:007590869606642019-04-01T21:56:00.000+03:002019-04-01T21:56:00.000+03:002019-04-01T20:41:15.000+03:00-188592773460664596212019-04-01314391691744606642019-04-01T21:30:00.000+03:007558469606642019-04-01T22:07:00.000+03:002019-04-01T22:07:00.000+03:002019-04-01T20:41:15.000+03:00-188592773360664596212019-04-01314391701744606642019-04-01T21:40:00.000+03:007591969606642019-04-01T22:17:00.000+03:002019-04-01T22:17:00.000+03:002019-04-01T21:02:13.449+03:00true2019-04-01T20:41:15.000+03:00-188592773260664596212019-04-01314391691744606642019-04-01T21:30:00.000+03:007558469606642019-04-01T22:07:00.000+03:002019-04-01T22:07:00.000+03:002019-04-01T20:41:15.000+03:00-188592773160664596212019-04-01314391701744606642019-04-01T21:40:00.000+03:007591969606642019-04-01T22:17:00.000+03:002019-04-01T22:17:00.000+03:002019-04-01T20:41:15.000+03:00-188592773060664596212019-04-01314391711744606642019-04-01T21:50:00.000+03:007591669606642019-04-01T22:27:00.000+03:002019-04-01T22:27:00.000+03:00\n" + + "2019-04-01T21:02:13.496+03:00ISR Siri Server (141.13)440281410100700:1351669188:4684true2019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927684551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927683551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927682551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927681551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927680551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927679551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927678551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927677551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927676551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927675551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927674551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T21:02:13.496+03:00true2019-04-01T21:00:10.000+03:00-1885927673551391410912019-04-013717808624216551392019-04-01T21:00:00.000+03:0035.29223632812532.607795715332031290887551392019-04-01T22:10:00.000+03:002019-04-01T15:22:00.000+03:00-1885927672551391410912019-04-013717812924216551392019-04-01T22:50:00.000+03:007594734551392019-04-01T23:55:00.000+03:002019-04-01T23:55:00.000+03:00\n" +// "2019-04-01T21:02:13.457+03:00ISR Siri Server (141.10)2824335750100700:1351669188:4684true2019-04-01T21:02:13.457+03:00true2019-04-01T21:02:09.000+03:00-482547215119942534922019-04-0137004602323119942019-04-01T20:45:00.000+03:0034.96555328369140629.5714893341064457765869119942019-04-01T21:12:00.000+03:002019-04-01T21:02:09.000+03:00-482547214119942534922019-04-0137004602323119942019-04-01T20:45:00.000+03:0034.96555328369140629.5714893341064457765869119942019-04-01T21:22:00.000+03:002019-04-01T19:41:33.000+03:00-482547213119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:41:00.000+03:002019-04-01T21:41:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T21:02:09.000+03:00-482547212119942534922019-04-0137004602323119942019-04-01T20:45:00.000+03:0034.96555328369140629.5714893341064457765869119942019-04-01T21:12:00.000+03:002019-04-01T21:02:09.000+03:00-482547211119942534922019-04-0137004602323119942019-04-01T20:45:00.000+03:0034.96555328369140629.5714893341064457765869119942019-04-01T21:22:00.000+03:002019-04-01T19:41:33.000+03:00-482547210119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:41:00.000+03:002019-04-01T21:41:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T21:02:09.000+03:00-482547209119942534922019-04-0137004602323119942019-04-01T20:45:00.000+03:0034.96555328369140629.5714893341064457765869119942019-04-01T21:22:00.000+03:002019-04-01T19:41:33.000+03:00-482547208119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:41:00.000+03:002019-04-01T21:41:00.000+03:002019-04-01T19:41:33.000+03:00-482547207119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:51:00.000+03:002019-04-01T21:51:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T21:02:09.000+03:00-482547206119942534922019-04-0137004602323119942019-04-01T20:45:00.000+03:0034.96555328369140629.5714893341064457765869119942019-04-01T21:22:00.000+03:002019-04-01T19:41:33.000+03:00-482547205119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:41:00.000+03:002019-04-01T21:41:00.000+03:002019-04-01T19:41:33.000+03:00-482547204119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:51:00.000+03:002019-04-01T21:51:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T19:41:33.000+03:00-482547203119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:41:00.000+03:002019-04-01T21:41:00.000+03:002019-04-01T19:41:33.000+03:00-482547202119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:51:00.000+03:002019-04-01T21:51:00.000+03:002019-04-01T15:52:18.000+03:00-482547201119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:12:00.000+03:002019-04-01T22:12:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T19:41:33.000+03:00-482547200119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:41:00.000+03:002019-04-01T21:41:00.000+03:002019-04-01T19:41:33.000+03:00-482547199119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:51:00.000+03:002019-04-01T21:51:00.000+03:002019-04-01T15:52:18.000+03:00-482547198119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:12:00.000+03:002019-04-01T22:12:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T19:41:33.000+03:00-482547197119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:41:00.000+03:002019-04-01T21:41:00.000+03:002019-04-01T19:41:33.000+03:00-482547196119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:51:00.000+03:002019-04-01T21:51:00.000+03:002019-04-01T15:52:18.000+03:00-482547195119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:12:00.000+03:002019-04-01T22:12:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T19:41:33.000+03:00-482547194119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:41:00.000+03:002019-04-01T21:41:00.000+03:002019-04-01T19:41:33.000+03:00-482547193119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:51:00.000+03:002019-04-01T21:51:00.000+03:002019-04-01T15:52:18.000+03:00-482547192119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:12:00.000+03:002019-04-01T22:12:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T19:41:33.000+03:00-482547191119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:51:00.000+03:002019-04-01T21:51:00.000+03:002019-04-01T15:52:18.000+03:00-482547190119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:12:00.000+03:002019-04-01T22:12:00.000+03:002019-04-01T15:52:18.000+03:00-482547189119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T19:41:33.000+03:00-482547188119942534922019-04-0137004603323119942019-04-01T21:15:00.000+03:007766369119942019-04-01T21:51:00.000+03:002019-04-01T21:51:00.000+03:002019-04-01T15:52:18.000+03:00-482547187119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:12:00.000+03:002019-04-01T22:12:00.000+03:002019-04-01T15:52:18.000+03:00-482547186119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T15:52:18.000+03:00-482547185119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:12:00.000+03:002019-04-01T22:12:00.000+03:002019-04-01T15:52:18.000+03:00-482547184119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T15:53:06.000+03:00-482547183119942534922019-04-0137004605323119942019-04-01T22:15:00.000+03:00119942019-04-01T22:42:00.000+03:002019-04-01T22:42:00.000+03:002019-04-01T21:02:13.457+03:00true2019-04-01T15:52:18.000+03:00-482547182119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:12:00.000+03:002019-04-01T22:12:00.000+03:002019-04-01T15:52:18.000+03:00-482547181119942534922019-04-0137004604323119942019-04-01T21:45:00.000+03:00119942019-04-01T22:21:00.000+03:002019-04-01T22:21:00.000+03:002019-04-01T15:53:06.000+03:00-482547180119942534922019-04-0137004605323119942019-04-01T22:15:00.000+03:00119942019-04-01T22:42:00.000+03:002019-04-01T22:42:00.000+03:00\n" +// "2019-04-01T21:02:13.565+03:00ISR Siri Server (141.11)62281500100700:1351669188:4684true2019-04-01T21:02:13.565+03:00true2019-04-01T21:02:05.000+03:00417510017533402120322019-04-0129479291323533402019-04-01T21:00:00.000+03:0035.6477241516113333.1346206665039068867701533402019-04-01T21:22:00.000+03:002019-04-01T21:02:13.565+03:00true2019-04-01T21:02:05.000+03:00417510018533402120322019-04-0129479291323533402019-04-01T21:00:00.000+03:0035.6477241516113333.1346206665039068867701533402019-04-01T21:22:00.000+03:002019-04-01T21:02:13.565+03:00true2019-04-01T21:02:05.000+03:00417510019533402120322019-04-0129479291323533402019-04-01T21:00:00.000+03:0035.6477241516113333.1346206665039068867701533402019-04-01T21:22:00.000+03:002019-04-01T21:02:13.565+03:00true2019-04-01T21:02:05.000+03:00417510020533402120322019-04-0129479291323533402019-04-01T21:00:00.000+03:0035.6477241516113333.1346206665039068867701533402019-04-01T21:22:00.000+03:002019-04-01T21:02:13.565+03:00false740Line 21203 is not expected to arrive in stop 53340 in the given time frame (21:22-23:22) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.565+03:00false740Line 21203 is not expected to arrive in stop 53340 in the given time frame (21:27-23:27) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.565+03:00false740Line 21203 is not expected to arrive in stop 53340 in the given time frame (21:32-23:32) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.565+03:00false740Line 21203 is not expected to arrive in stop 53340 in the given time frame (21:37-23:37) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.565+03:00false740Line 21203 is not expected to arrive in stop 53340 in the given time frame (21:42-23:42) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.565+03:00false740Line 21203 is not expected to arrive in stop 53340 in the given time frame (21:47-23:47) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.565+03:00false740Line 21203 is not expected to arrive in stop 53340 in the given time frame (21:52-23:52) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.565+03:00false740Line 21203 is not expected to arrive in stop 53340 in the given time frame (21:57-23:57) (reported by ISR Siri Server (141.11))\n" ; +// "2019-04-01T21:02:13.473+03:00ISR Siri Server (141.10)2824335760100700:1351669188:4684true2019-04-01T21:02:13.473+03:00true2019-04-01T21:02:07.000+03:00-482547179479171961732019-04-0136435930323479172019-04-01T21:00:00.000+03:0034.9700469970703132.825099945068363460089479172019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547178479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547177479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T21:02:07.000+03:00-482547176479171961732019-04-0136435930323479172019-04-01T21:00:00.000+03:0034.9700469970703132.825099945068363460089479172019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547175479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547174479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T21:02:07.000+03:00-482547173479171961732019-04-0136435930323479172019-04-01T21:00:00.000+03:0034.9700469970703132.825099945068363460089479172019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547172479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547171479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T21:02:07.000+03:00-482547170479171961732019-04-0136435930323479172019-04-01T21:00:00.000+03:0034.9700469970703132.825099945068363460089479172019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547169479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547168479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T21:02:07.000+03:00-482547167479171961732019-04-0136435930323479172019-04-01T21:00:00.000+03:0034.9700469970703132.825099945068363460089479172019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547166479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547165479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T21:02:07.000+03:00-482547164479171961732019-04-0136435930323479172019-04-01T21:00:00.000+03:0034.9700469970703132.825099945068363460089479172019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547163479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:41:28.000+03:00-482547162479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T19:41:28.000+03:00-482547161479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:41:28.000+03:00-482547160479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:05:00.000+03:002019-04-01T22:05:00.000+03:002019-04-01T19:41:28.000+03:00-482547159479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:33:00.000+03:002019-04-01T22:33:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T19:41:28.000+03:00-482547158479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:41:28.000+03:00-482547157479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:05:00.000+03:002019-04-01T22:05:00.000+03:002019-04-01T19:41:28.000+03:00-482547156479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:33:00.000+03:002019-04-01T22:33:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T19:41:28.000+03:00-482547155479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:41:28.000+03:00-482547154479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:05:00.000+03:002019-04-01T22:05:00.000+03:002019-04-01T19:41:28.000+03:00-482547153479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:33:00.000+03:002019-04-01T22:33:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T19:41:28.000+03:00-482547152479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:41:28.000+03:00-482547151479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:05:00.000+03:002019-04-01T22:05:00.000+03:002019-04-01T19:41:28.000+03:00-482547150479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:33:00.000+03:002019-04-01T22:33:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T19:41:28.000+03:00-482547149479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:41:28.000+03:00-482547148479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:05:00.000+03:002019-04-01T22:05:00.000+03:002019-04-01T19:41:28.000+03:00-482547147479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:33:00.000+03:002019-04-01T22:33:00.000+03:002019-04-01T21:02:13.473+03:00true2019-04-01T19:41:28.000+03:00-482547146479171961732019-04-0136435931323479172019-04-01T21:30:00.000+03:003459589479172019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:41:28.000+03:00-482547145479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:05:00.000+03:002019-04-01T22:05:00.000+03:002019-04-01T19:41:28.000+03:00-482547144479171961732019-04-0136435932323479172019-04-01T22:05:00.000+03:003459589479172019-04-01T22:33:00.000+03:002019-04-01T22:33:00.000+03:00\n" + +// "2019-04-01T21:02:13.531+03:00ISR Siri Server (141.11)62281460100700:1351669188:4684true2019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509886201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509887201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509888201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509889201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509890201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509891201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509892201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509893201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509894201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509895201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509896201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509897201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509898201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509899201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509900201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509901201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509902201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509903201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509904201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:002019-04-01T21:02:13.531+03:00true2019-04-01T15:51:41.000+03:00417509905201641159512019-04-013742461022018201642019-04-01T21:25:00.000+03:007326352201642019-04-01T22:23:00.000+03:002019-04-01T22:23:00.000+03:002019-04-01T15:25:53.000+03:00417509906201641159512019-04-013742461122018201642019-04-01T22:15:00.000+03:007326752201642019-04-01T23:16:00.000+03:002019-04-01T23:16:00.000+03:00\n" + +// "2019-04-01T21:02:13.480+03:00ISR Siri Server (141.13)440281400100700:1351669188:4684true2019-04-01T21:02:13.480+03:00true2019-04-01T21:02:08.000+03:00-1885927709117951689312019-04-0137523174231117952019-04-01T20:40:00.000+03:0034.56961059570312531.6747665405273449287301117952019-04-01T21:17:00.000+03:002019-04-01T18:41:06.000+03:00-1885927708117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927707117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T21:02:08.000+03:00-1885927706117951689312019-04-0137523174231117952019-04-01T20:40:00.000+03:0034.56961059570312531.6747665405273449287301117952019-04-01T21:17:00.000+03:002019-04-01T18:41:06.000+03:00-1885927705117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927704117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T21:02:08.000+03:00-1885927703117951689312019-04-0137523174231117952019-04-01T20:40:00.000+03:0034.56961059570312531.6747665405273449287301117952019-04-01T21:17:00.000+03:002019-04-01T18:41:06.000+03:00-1885927702117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927701117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T18:41:06.000+03:00-1885927700117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927699117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T18:41:06.000+03:00-1885927698117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927697117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T18:41:06.000+03:00-1885927696117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927695117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T18:41:06.000+03:00-1885927694117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927693117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T18:41:06.000+03:00-1885927692117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927691117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T18:41:06.000+03:00-1885927690117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927689117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T18:41:06.000+03:00-1885927688117951689312019-04-0137523175231117952019-04-01T21:10:00.000+03:004355934117952019-04-01T21:48:00.000+03:002019-04-01T21:48:00.000+03:002019-04-01T15:52:05.000+03:00-1885927687117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T15:52:05.000+03:00-1885927686117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.480+03:00true2019-04-01T15:52:05.000+03:00-1885927685117951689312019-04-0137523176231117952019-04-01T21:40:00.000+03:00117952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:00\n" + +// "2019-04-01T21:02:13.488+03:00ISR Siri Server (141.10)2824335770100700:1351669188:4684true2019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254714359903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254714259903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254714159903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254714059903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254713959903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254713859903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254713759903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254713659903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254713559903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254713459903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254713359903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254713259903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254713159903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254713059903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254712959903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254712859903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254712759903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254712659903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254712559903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254712459903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254712359903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254712259903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254712159903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254712059903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T18:44:06.000+03:00-48254711959903420532019-04-0131900256314599032019-04-01T21:30:00.000+03:009025930599032019-04-01T21:45:00.000+03:002019-04-01T21:45:00.000+03:002019-04-01T19:14:24.000+03:00-48254711859903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254711759903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T19:14:24.000+03:00-48254711659903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254711559903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T19:14:24.000+03:00-48254711459903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254711359903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.488+03:00true2019-04-01T19:14:24.000+03:00-48254711259903420532019-04-0131900261314599032019-04-01T22:00:00.000+03:009025930599032019-04-01T22:13:00.000+03:002019-04-01T22:13:00.000+03:002019-04-01T19:56:39.000+03:00-48254711159903420532019-04-0131900266314599032019-04-01T22:30:00.000+03:009025930599032019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:00\n" + +// "2019-04-01T21:02:13.520+03:00ISR Siri Server (141.10)2824335780100700:1351669188:4684true2019-04-01T21:02:13.520+03:00true2019-04-01T21:02:12.000+03:00-4825471105200596822019-04-0125329282174452002019-04-01T20:40:00.000+03:0035.27915191650390631.7879581451416753106952002019-04-01T21:18:00.000+03:002019-04-01T20:21:40.000+03:00-4825471095200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825471085200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T21:02:12.000+03:00-4825471075200596822019-04-0125329282174452002019-04-01T20:40:00.000+03:0035.27915191650390631.7879581451416753106952002019-04-01T21:18:00.000+03:002019-04-01T20:21:40.000+03:00-4825471065200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825471055200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T21:02:12.000+03:00-4825471045200596822019-04-0125329282174452002019-04-01T20:40:00.000+03:0035.27915191650390631.7879581451416753106952002019-04-01T21:18:00.000+03:002019-04-01T20:21:40.000+03:00-4825471035200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825471025200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T21:02:12.000+03:00-4825471015200596822019-04-0125329282174452002019-04-01T20:40:00.000+03:0035.27915191650390631.7879581451416753106952002019-04-01T21:18:00.000+03:002019-04-01T20:21:40.000+03:00-4825471005200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825470995200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T20:21:40.000+03:00-4825470985200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825470975200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T15:53:31.000+03:00-4825470965200596822019-04-0125329285174452002019-04-01T22:30:00.000+03:0052002019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T20:21:40.000+03:00-4825470955200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825470945200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T15:53:31.000+03:00-4825470935200596822019-04-0125329285174452002019-04-01T22:30:00.000+03:0052002019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T20:21:40.000+03:00-4825470925200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825470915200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T15:53:31.000+03:00-4825470905200596822019-04-0125329285174452002019-04-01T22:30:00.000+03:0052002019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T20:21:40.000+03:00-4825470895200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825470885200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T15:53:31.000+03:00-4825470875200596822019-04-0125329285174452002019-04-01T22:30:00.000+03:0052002019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T20:21:40.000+03:00-4825470865200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825470855200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T15:53:31.000+03:00-4825470845200596822019-04-0125329285174452002019-04-01T22:30:00.000+03:0052002019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T20:21:40.000+03:00-4825470835200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825470825200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T15:53:31.000+03:00-4825470815200596822019-04-0125329285174452002019-04-01T22:30:00.000+03:0052002019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T20:21:40.000+03:00-4825470805200596822019-04-0125329283174452002019-04-01T21:20:00.000+03:00759286952002019-04-01T21:57:00.000+03:002019-04-01T21:57:00.000+03:002019-04-01T20:21:40.000+03:00-4825470795200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T15:53:31.000+03:00-4825470785200596822019-04-0125329285174452002019-04-01T22:30:00.000+03:0052002019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:002019-04-01T21:02:13.520+03:00true2019-04-01T20:21:40.000+03:00-4825470775200596822019-04-0125329284174452002019-04-01T21:50:00.000+03:00759206952002019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T15:53:31.000+03:00-4825470765200596822019-04-0125329285174452002019-04-01T22:30:00.000+03:0052002019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:00\n" + +// "2019-04-01T21:02:13.511+03:00ISR Siri Server (141.13)440281420100700:1351669188:4684true2019-04-01T21:02:13.511+03:00true2019-04-01T21:02:04.000+03:00-188592767125301040412019-04-013732763832325302019-04-01T20:10:00.000+03:0035.19808197021484431.74862289428711750416925302019-04-01T21:24:00.000+03:002019-04-01T21:02:11.000+03:00-188592767025301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592766925301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:04.000+03:00-188592766825301040412019-04-013732763832325302019-04-01T20:10:00.000+03:0035.19808197021484431.74862289428711750416925302019-04-01T21:24:00.000+03:002019-04-01T21:02:11.000+03:00-188592766725301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592766625301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:04.000+03:00-188592766525301040412019-04-013732763832325302019-04-01T20:10:00.000+03:0035.19808197021484431.74862289428711750416925302019-04-01T21:24:00.000+03:002019-04-01T21:02:11.000+03:00-188592766425301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592766325301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:04.000+03:00-188592766225301040412019-04-013732763832325302019-04-01T20:10:00.000+03:0035.19808197021484431.74862289428711750416925302019-04-01T21:24:00.000+03:002019-04-01T21:02:11.000+03:00-188592766125301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592766025301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:04.000+03:00-188592765925301040412019-04-013732763832325302019-04-01T20:10:00.000+03:0035.19808197021484431.74862289428711750416925302019-04-01T21:24:00.000+03:002019-04-01T21:02:11.000+03:00-188592765825301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592765725301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:11.000+03:00-188592765625301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592765525301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T19:41:35.000+03:00-188592765425301040412019-04-013732764232325302019-04-01T21:30:00.000+03:00876600125302019-04-01T22:36:00.000+03:002019-04-01T22:36:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:11.000+03:00-188592765325301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592765225301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T19:41:35.000+03:00-188592765125301040412019-04-013732764232325302019-04-01T21:30:00.000+03:00876600125302019-04-01T22:36:00.000+03:002019-04-01T22:36:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:11.000+03:00-188592765025301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592764925301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T19:41:35.000+03:00-188592764825301040412019-04-013732764232325302019-04-01T21:30:00.000+03:00876600125302019-04-01T22:36:00.000+03:002019-04-01T22:36:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:11.000+03:00-188592764725301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592764625301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T19:41:35.000+03:00-188592764525301040412019-04-013732764232325302019-04-01T21:30:00.000+03:00876600125302019-04-01T22:36:00.000+03:002019-04-01T22:36:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:11.000+03:00-188592764425301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592764325301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T19:41:35.000+03:00-188592764225301040412019-04-013732764232325302019-04-01T21:30:00.000+03:00876600125302019-04-01T22:36:00.000+03:002019-04-01T22:36:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T21:02:11.000+03:00-188592764125301040412019-04-013732764032325302019-04-01T20:50:00.000+03:0035.2017898559570331.810665130615234751966925302019-04-01T21:55:00.000+03:002019-04-01T19:41:34.000+03:00-188592764025301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T19:41:35.000+03:00-188592763925301040412019-04-013732764232325302019-04-01T21:30:00.000+03:00876600125302019-04-01T22:36:00.000+03:002019-04-01T22:36:00.000+03:002019-04-01T21:02:13.511+03:00true2019-04-01T19:41:34.000+03:00-188592763825301040412019-04-013732764132325302019-04-01T21:10:00.000+03:00780166925302019-04-01T22:15:00.000+03:002019-04-01T22:15:00.000+03:002019-04-01T19:41:35.000+03:00-188592763725301040412019-04-013732764232325302019-04-01T21:30:00.000+03:00876600125302019-04-01T22:36:00.000+03:002019-04-01T22:36:00.000+03:002019-04-01T19:41:34.000+03:00-188592763625301040412019-04-013732764332325302019-04-01T21:50:00.000+03:00780296925302019-04-01T23:09:00.000+03:002019-04-01T23:09:00.000+03:00\n" + +// "2019-04-01T21:02:13.582+03:00ISR Siri Server (141.10)2824335830100700:1351669188:4684true2019-04-01T21:02:13.582+03:00true2019-04-01T21:02:07.000+03:00-482546994184781393522019-04-0130596027315184782019-04-01T20:45:00.000+03:0035.2021827697753931.261867523193368337453184782019-04-01T21:08:00.000+03:002019-04-01T15:21:38.000+03:00-482546993184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T21:02:07.000+03:00-482546992184781393522019-04-0130596027315184782019-04-01T20:45:00.000+03:0035.2021827697753931.261867523193368337453184782019-04-01T21:08:00.000+03:002019-04-01T15:21:38.000+03:00-482546991184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T15:21:38.000+03:00-482546990184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T15:21:38.000+03:00-482546989184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T15:21:38.000+03:00-482546988184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T15:21:38.000+03:00-482546987184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T15:21:38.000+03:00-482546986184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T15:21:38.000+03:00-482546985184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T15:21:38.000+03:00-482546984184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00true2019-04-01T15:21:38.000+03:00-482546983184781393522019-04-0130596032315184782019-04-01T21:30:00.000+03:008338253184782019-04-01T21:50:00.000+03:002019-04-01T21:50:00.000+03:002019-04-01T21:02:13.582+03:00false740Line 13935 is not expected to arrive in stop 18478 in the given time frame (21:52-23:52) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.582+03:00false740Line 13935 is not expected to arrive in stop 18478 in the given time frame (21:57-23:57) (reported by ISR Siri Server (141.10))\n" + +// "2019-04-01T21:02:13.527+03:00ISR Siri Server (141.13)440281430100700:1351669188:4684true2019-04-01T21:02:13.527+03:00true2019-04-01T21:01:40.000+03:00-188592763540901040822019-04-012536161032340902019-04-01T20:00:00.000+03:0035.1889801025390631.821523666381836780296940902019-04-01T21:09:00.000+03:002019-04-01T21:02:07.000+03:00-188592763440901040822019-04-012536161132340902019-04-01T20:20:00.000+03:0035.2164154052734431.784954071044922779726940902019-04-01T21:36:00.000+03:002019-04-01T21:01:54.000+03:00-188592763340901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:01:40.000+03:00-188592763240901040822019-04-012536161032340902019-04-01T20:00:00.000+03:0035.1889801025390631.821523666381836780296940902019-04-01T21:09:00.000+03:002019-04-01T21:02:07.000+03:00-188592763140901040822019-04-012536161132340902019-04-01T20:20:00.000+03:0035.2164154052734431.784954071044922779726940902019-04-01T21:36:00.000+03:002019-04-01T21:01:54.000+03:00-188592763040901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:02:07.000+03:00-188592762940901040822019-04-012536161132340902019-04-01T20:20:00.000+03:0035.2164154052734431.784954071044922779726940902019-04-01T21:36:00.000+03:002019-04-01T21:01:54.000+03:00-188592762840901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592762740901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:02:07.000+03:00-188592762640901040822019-04-012536161132340902019-04-01T20:20:00.000+03:0035.2164154052734431.784954071044922779726940902019-04-01T21:36:00.000+03:002019-04-01T21:01:54.000+03:00-188592762540901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592762440901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:02:07.000+03:00-188592762340901040822019-04-012536161132340902019-04-01T20:20:00.000+03:0035.2164154052734431.784954071044922779726940902019-04-01T21:36:00.000+03:002019-04-01T21:01:54.000+03:00-188592762240901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592762140901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:02:07.000+03:00-188592762040901040822019-04-012536161132340902019-04-01T20:20:00.000+03:0035.2164154052734431.784954071044922779726940902019-04-01T21:36:00.000+03:002019-04-01T21:01:54.000+03:00-188592761940901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592761840901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:02:07.000+03:00-188592761740901040822019-04-012536161132340902019-04-01T20:20:00.000+03:0035.2164154052734431.784954071044922779726940902019-04-01T21:36:00.000+03:002019-04-01T21:01:54.000+03:00-188592761640901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592761540901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:01:54.000+03:00-188592761440901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592761340901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T19:41:34.000+03:00-188592761240901040822019-04-012536161432340902019-04-01T21:20:00.000+03:00779716940902019-04-01T22:31:00.000+03:002019-04-01T22:31:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:01:54.000+03:00-188592761140901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592761040901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T19:41:34.000+03:00-188592760940901040822019-04-012536161432340902019-04-01T21:20:00.000+03:00779716940902019-04-01T22:31:00.000+03:002019-04-01T22:31:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:01:54.000+03:00-188592760840901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592760740901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T19:41:34.000+03:00-188592760640901040822019-04-012536161432340902019-04-01T21:20:00.000+03:00779716940902019-04-01T22:31:00.000+03:002019-04-01T22:31:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:01:54.000+03:00-188592760540901040822019-04-012536161232340902019-04-01T20:40:00.000+03:0035.2000808715820331.73716926574707752376940902019-04-01T21:57:00.000+03:002019-04-01T21:01:53.000+03:00-188592760440901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T19:41:34.000+03:00-188592760340901040822019-04-012536161432340902019-04-01T21:20:00.000+03:00779716940902019-04-01T22:31:00.000+03:002019-04-01T22:31:00.000+03:002019-04-01T21:02:13.527+03:00true2019-04-01T21:01:53.000+03:00-188592760240901040822019-04-012536161332340902019-04-01T21:00:00.000+03:0035.1846160888671931.73257827758789754976940902019-04-01T22:10:00.000+03:002019-04-01T19:41:34.000+03:00-188592760140901040822019-04-012536161432340902019-04-01T21:20:00.000+03:00779716940902019-04-01T22:31:00.000+03:002019-04-01T22:31:00.000+03:002019-04-01T19:41:29.000+03:00-188592760040901040822019-04-012536161532340902019-04-01T21:40:00.000+03:00752126940902019-04-01T22:52:00.000+03:002019-04-01T22:52:00.000+03:00\n" + +// "2019-04-01T21:02:13.558+03:00ISR Siri Server (141.13)440281450100700:1351669188:4684true2019-04-01T21:02:13.558+03:00true2019-04-01T21:02:07.000+03:00-1885927583501481202212019-04-0137244542314501482019-04-01T21:00:00.000+03:0035.0941238403320332.98936843872076408768501482019-04-01T21:26:00.000+03:002019-04-01T18:44:06.000+03:00-1885927582501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927581501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T21:02:07.000+03:00-1885927580501481202212019-04-0137244542314501482019-04-01T21:00:00.000+03:0035.0941238403320332.98936843872076408768501482019-04-01T21:26:00.000+03:002019-04-01T18:44:06.000+03:00-1885927579501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927578501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T21:02:07.000+03:00-1885927577501481202212019-04-0137244542314501482019-04-01T21:00:00.000+03:0035.0941238403320332.98936843872076408768501482019-04-01T21:26:00.000+03:002019-04-01T18:44:06.000+03:00-1885927576501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927575501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T21:02:07.000+03:00-1885927574501481202212019-04-0137244542314501482019-04-01T21:00:00.000+03:0035.0941238403320332.98936843872076408768501482019-04-01T21:26:00.000+03:002019-04-01T18:44:06.000+03:00-1885927573501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927572501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T21:02:07.000+03:00-1885927571501481202212019-04-0137244542314501482019-04-01T21:00:00.000+03:0035.0941238403320332.98936843872076408768501482019-04-01T21:26:00.000+03:002019-04-01T18:44:06.000+03:00-1885927570501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927569501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T18:44:06.000+03:00-1885927568501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927567501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T19:56:39.000+03:00-1885927566501481202212019-04-0137244545314501482019-04-01T22:30:00.000+03:003139472501482019-04-01T22:53:00.000+03:002019-04-01T22:53:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T18:44:06.000+03:00-1885927565501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927564501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T19:56:39.000+03:00-1885927563501481202212019-04-0137244545314501482019-04-01T22:30:00.000+03:003139472501482019-04-01T22:53:00.000+03:002019-04-01T22:53:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T18:44:06.000+03:00-1885927562501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927561501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T19:56:39.000+03:00-1885927560501481202212019-04-0137244545314501482019-04-01T22:30:00.000+03:003139472501482019-04-01T22:53:00.000+03:002019-04-01T22:53:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T18:44:06.000+03:00-1885927559501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927558501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T19:56:39.000+03:00-1885927557501481202212019-04-0137244545314501482019-04-01T22:30:00.000+03:003139472501482019-04-01T22:53:00.000+03:002019-04-01T22:53:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T18:44:06.000+03:00-1885927556501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927555501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T19:56:39.000+03:00-1885927554501481202212019-04-0137244545314501482019-04-01T22:30:00.000+03:003139472501482019-04-01T22:53:00.000+03:002019-04-01T22:53:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T18:44:06.000+03:00-1885927553501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927552501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T19:56:39.000+03:00-1885927551501481202212019-04-0137244545314501482019-04-01T22:30:00.000+03:003139472501482019-04-01T22:53:00.000+03:002019-04-01T22:53:00.000+03:002019-04-01T21:02:13.558+03:00true2019-04-01T18:44:06.000+03:00-1885927550501481202212019-04-0137244543314501482019-04-01T21:35:00.000+03:009368353501482019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T19:14:24.000+03:00-1885927549501481202212019-04-0137244544314501482019-04-01T22:05:00.000+03:009369853501482019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T19:56:39.000+03:00-1885927548501481202212019-04-0137244545314501482019-04-01T22:30:00.000+03:003139472501482019-04-01T22:53:00.000+03:002019-04-01T22:53:00.000+03:00\n" + +// "2019-04-01T21:02:13.567+03:00ISR Siri Server (141.10)2824335820100700:1351669188:4684true2019-04-01T21:02:13.567+03:00true2019-04-01T21:01:24.000+03:00-482547021264722193422019-04-013418776322318264722019-04-01T20:30:00.000+03:0034.8666801452636732.034500122070315594187264722019-04-01T21:18:00.000+03:002019-04-01T15:51:46.000+03:00-482547020264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T21:01:24.000+03:00-482547019264722193422019-04-013418776322318264722019-04-01T20:30:00.000+03:0034.8666801452636732.034500122070315594187264722019-04-01T21:18:00.000+03:002019-04-01T15:51:46.000+03:00-482547018264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482547017264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T21:01:24.000+03:00-482547016264722193422019-04-013418776322318264722019-04-01T20:30:00.000+03:0034.8666801452636732.034500122070315594187264722019-04-01T21:18:00.000+03:002019-04-01T15:51:46.000+03:00-482547015264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482547014264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T21:01:24.000+03:00-482547013264722193422019-04-013418776322318264722019-04-01T20:30:00.000+03:0034.8666801452636732.034500122070315594187264722019-04-01T21:18:00.000+03:002019-04-01T15:51:46.000+03:00-482547012264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482547011264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T15:51:46.000+03:00-482547010264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482547009264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T15:51:46.000+03:00-482547008264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482547007264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T15:51:46.000+03:00-482547006264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482547005264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T15:51:46.000+03:00-482547004264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482547003264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T15:51:46.000+03:00-482547002264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482547001264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T15:51:46.000+03:00-482547000264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482546999264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T15:51:46.000+03:00-482546998264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482546997264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:002019-04-01T21:02:13.567+03:00true2019-04-01T15:51:46.000+03:00-482546996264722193422019-04-013418776822318264722019-04-01T21:30:00.000+03:005594487264722019-04-01T22:06:00.000+03:002019-04-01T22:06:00.000+03:002019-04-01T15:21:35.000+03:00-482546995264722193422019-04-013418777322318264722019-04-01T22:30:00.000+03:005594087264722019-04-01T23:05:00.000+03:002019-04-01T23:05:00.000+03:00\n" + +// "[TRACE][http-retrieve-8] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.445] response=2019-04-01T21:02:13.676+03:00ISR Siri Server (141.10)2824335860100700:1351669188:4684true2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:02-23:02) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:07-23:07) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:12-23:12) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:17-23:17) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:22-23:22) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:27-23:27) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:32-23:32) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:37-23:37) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:42-23:42) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:47-23:47) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:52-23:52) (reported by ISR Siri Server (141.10))2019-04-01T21:02:13.676+03:00false740Line 21356 is not expected to arrive in stop 53220 in the given time frame (21:57-23:57) (reported by ISR Siri Server (141.10))\n" + +// "[TRACE][http-retrieve-6] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.469] response=2019-04-01T21:02:13.659+03:00ISR Siri Server (141.11)62281530100700:1351669188:4684true2019-04-01T21:02:13.659+03:00true2019-04-01T21:01:57.000+03:00417510180352752193312019-04-013418767322318352752019-04-01T21:00:00.000+03:0034.8421897888183632.074062347412115594087352752019-04-01T21:37:00.000+03:002019-04-01T15:52:35.000+03:00417510181352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:01:57.000+03:00417510182352752193312019-04-013418767322318352752019-04-01T21:00:00.000+03:0034.8421897888183632.074062347412115594087352752019-04-01T21:37:00.000+03:002019-04-01T15:52:35.000+03:00417510183352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:01:57.000+03:00417510184352752193312019-04-013418767322318352752019-04-01T21:00:00.000+03:0034.8421897888183632.074062347412115594087352752019-04-01T21:37:00.000+03:002019-04-01T15:52:35.000+03:00417510185352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:01:57.000+03:00417510186352752193312019-04-013418767322318352752019-04-01T21:00:00.000+03:0034.8421897888183632.074062347412115594087352752019-04-01T21:37:00.000+03:002019-04-01T15:52:35.000+03:00417510187352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:01:57.000+03:00417510188352752193312019-04-013418767322318352752019-04-01T21:00:00.000+03:0034.8421897888183632.074062347412115594087352752019-04-01T21:37:00.000+03:002019-04-01T15:52:35.000+03:00417510189352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:01:57.000+03:00417510190352752193312019-04-013418767322318352752019-04-01T21:00:00.000+03:0034.8421897888183632.074062347412115594087352752019-04-01T21:37:00.000+03:002019-04-01T15:52:35.000+03:00417510191352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:01:57.000+03:00417510192352752193312019-04-013418767322318352752019-04-01T21:00:00.000+03:0034.8421897888183632.074062347412115594087352752019-04-01T21:37:00.000+03:002019-04-01T15:52:35.000+03:00417510193352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T15:52:35.000+03:00417510194352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T15:54:05.000+03:00417510195352752193312019-04-013418768322318352752019-04-01T23:00:00.000+03:005594487352752019-04-01T23:33:00.000+03:002019-04-01T23:33:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T15:52:35.000+03:00417510196352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T15:54:05.000+03:00417510197352752193312019-04-013418768322318352752019-04-01T23:00:00.000+03:005594487352752019-04-01T23:33:00.000+03:002019-04-01T23:33:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T15:52:35.000+03:00417510198352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T15:54:05.000+03:00417510199352752193312019-04-013418768322318352752019-04-01T23:00:00.000+03:005594487352752019-04-01T23:33:00.000+03:002019-04-01T23:33:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T15:52:35.000+03:00417510200352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T15:54:05.000+03:00417510201352752193312019-04-013418768322318352752019-04-01T23:00:00.000+03:005594487352752019-04-01T23:33:00.000+03:002019-04-01T23:33:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T15:52:35.000+03:00417510202352752193312019-04-013418767822318352752019-04-01T22:00:00.000+03:005594187352752019-04-01T22:43:00.000+03:002019-04-01T22:43:00.000+03:002019-04-01T15:54:05.000+03:00417510203352752193312019-04-013418768322318352752019-04-01T23:00:00.000+03:005594487352752019-04-01T23:33:00.000+03:002019-04-01T23:33:00.000+03:00\n" + +// "[TRACE][http-retrieve-1] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.473] response=2019-04-01T21:02:13.597+03:00ISR Siri Server (141.11)62281520100700:1351669188:4684true2019-04-01T21:02:13.597+03:00true2019-04-01T21:02:07.000+03:00417510150185181670212019-04-0134278344231185182019-04-01T20:40:00.000+03:0034.5753707885742231.4181766510009774353434185182019-04-01T21:05:00.000+03:002019-04-01T18:41:06.000+03:00417510151185181670212019-04-0134278345231185182019-04-01T21:10:00.000+03:004346934185182019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:12:38.000+03:00417510152185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T18:41:06.000+03:00417510153185181670212019-04-0134278345231185182019-04-01T21:10:00.000+03:004346934185182019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:12:38.000+03:00417510154185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510155185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T18:41:06.000+03:00417510156185181670212019-04-0134278345231185182019-04-01T21:10:00.000+03:004346934185182019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:12:38.000+03:00417510157185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510158185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T18:41:06.000+03:00417510159185181670212019-04-0134278345231185182019-04-01T21:10:00.000+03:004346934185182019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:12:38.000+03:00417510160185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510161185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T18:41:06.000+03:00417510162185181670212019-04-0134278345231185182019-04-01T21:10:00.000+03:004346934185182019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:12:38.000+03:00417510163185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510164185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T18:41:06.000+03:00417510165185181670212019-04-0134278345231185182019-04-01T21:10:00.000+03:004346934185182019-04-01T21:30:00.000+03:002019-04-01T21:30:00.000+03:002019-04-01T19:12:38.000+03:00417510166185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510167185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T19:12:38.000+03:00417510168185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510169185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T19:12:38.000+03:00417510170185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510171185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T19:12:38.000+03:00417510172185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510173185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T19:12:38.000+03:00417510174185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510175185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T19:12:38.000+03:00417510176185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510177185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:002019-04-01T21:02:13.597+03:00true2019-04-01T19:12:38.000+03:00417510178185181670212019-04-0134278346231185182019-04-01T21:40:00.000+03:004344534185182019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T15:52:59.000+03:00417510179185181670212019-04-0134278347231185182019-04-01T22:10:00.000+03:00185182019-04-01T22:28:00.000+03:002019-04-01T22:28:00.000+03:00\n" + +// "[TRACE][http-retrieve-17] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.513] response=2019-04-01T21:02:13.524+03:00ISR Siri Server (141.12)2794251020100700:1351669188:4684true2019-04-01T21:02:13.524+03:00true2019-04-01T21:01:43.000+03:00-60229781236095236912019-04-0137241411255360952019-04-01T20:05:00.000+03:0034.7727203369140632.05596160888672728360952019-04-01T21:27:00.000+03:002019-04-01T21:02:10.000+03:00-60229781136095236912019-04-0137241413255360952019-04-01T20:30:00.000+03:0034.7812423706054732.08024215698242729360952019-04-01T21:41:00.000+03:002019-04-01T20:55:06.000+03:00-60229781036095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:01:43.000+03:00-60229780936095236912019-04-0137241411255360952019-04-01T20:05:00.000+03:0034.7727203369140632.05596160888672728360952019-04-01T21:27:00.000+03:002019-04-01T21:02:10.000+03:00-60229780836095236912019-04-0137241413255360952019-04-01T20:30:00.000+03:0034.7812423706054732.08024215698242729360952019-04-01T21:41:00.000+03:002019-04-01T20:55:06.000+03:00-60229780736095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:01:43.000+03:00-60229780636095236912019-04-0137241411255360952019-04-01T20:05:00.000+03:0034.7727203369140632.05596160888672728360952019-04-01T21:27:00.000+03:002019-04-01T21:02:10.000+03:00-60229780536095236912019-04-0137241413255360952019-04-01T20:30:00.000+03:0034.7812423706054732.08024215698242729360952019-04-01T21:41:00.000+03:002019-04-01T20:55:06.000+03:00-60229780436095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:01:43.000+03:00-60229780336095236912019-04-0137241411255360952019-04-01T20:05:00.000+03:0034.7727203369140632.05596160888672728360952019-04-01T21:27:00.000+03:002019-04-01T21:02:10.000+03:00-60229780236095236912019-04-0137241413255360952019-04-01T20:30:00.000+03:0034.7812423706054732.08024215698242729360952019-04-01T21:41:00.000+03:002019-04-01T20:55:06.000+03:00-60229780136095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:01:43.000+03:00-60229780036095236912019-04-0137241411255360952019-04-01T20:05:00.000+03:0034.7727203369140632.05596160888672728360952019-04-01T21:27:00.000+03:002019-04-01T21:02:10.000+03:00-60229779936095236912019-04-0137241413255360952019-04-01T20:30:00.000+03:0034.7812423706054732.08024215698242729360952019-04-01T21:41:00.000+03:002019-04-01T20:55:06.000+03:00-60229779836095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:02:10.000+03:00-60229779736095236912019-04-0137241413255360952019-04-01T20:30:00.000+03:0034.7812423706054732.08024215698242729360952019-04-01T21:41:00.000+03:002019-04-01T20:55:06.000+03:00-60229779636095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:01:47.000+03:00-60229779536095236912019-04-0137241415255360952019-04-01T21:00:00.000+03:0034.80721282958984432.116233825683594723360952019-04-01T22:05:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:02:10.000+03:00-60229779436095236912019-04-0137241413255360952019-04-01T20:30:00.000+03:0034.7812423706054732.08024215698242729360952019-04-01T21:41:00.000+03:002019-04-01T20:55:06.000+03:00-60229779336095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:01:47.000+03:00-60229779236095236912019-04-0137241415255360952019-04-01T21:00:00.000+03:0034.80721282958984432.116233825683594723360952019-04-01T22:05:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:02:10.000+03:00-60229779136095236912019-04-0137241413255360952019-04-01T20:30:00.000+03:0034.7812423706054732.08024215698242729360952019-04-01T21:41:00.000+03:002019-04-01T20:55:06.000+03:00-60229779036095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:01:47.000+03:00-60229778936095236912019-04-0137241415255360952019-04-01T21:00:00.000+03:0034.80721282958984432.116233825683594723360952019-04-01T22:05:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T20:55:06.000+03:00-60229778836095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:01:47.000+03:00-60229778736095236912019-04-0137241415255360952019-04-01T21:00:00.000+03:0034.80721282958984432.116233825683594723360952019-04-01T22:05:00.000+03:002019-04-01T15:51:24.000+03:00-60229778636095236912019-04-0137241416255360952019-04-01T21:15:00.000+03:00360952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T20:55:06.000+03:00-60229778536095236912019-04-0137241414255360952019-04-01T20:45:00.000+03:0034.7620048522949231.99858856201172510360952019-04-01T21:52:00.000+03:002019-04-01T21:01:47.000+03:00-60229778436095236912019-04-0137241415255360952019-04-01T21:00:00.000+03:0034.80721282958984432.116233825683594723360952019-04-01T22:05:00.000+03:002019-04-01T15:51:24.000+03:00-60229778336095236912019-04-0137241416255360952019-04-01T21:15:00.000+03:00360952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:01:47.000+03:00-60229778236095236912019-04-0137241415255360952019-04-01T21:00:00.000+03:0034.80721282958984432.116233825683594723360952019-04-01T22:05:00.000+03:002019-04-01T15:51:24.000+03:00-60229778136095236912019-04-0137241416255360952019-04-01T21:15:00.000+03:00360952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T20:52:07.000+03:00-60229778036095236912019-04-0137241417255360952019-04-01T21:30:00.000+03:00507360952019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:01:47.000+03:00-60229777936095236912019-04-0137241415255360952019-04-01T21:00:00.000+03:0034.80721282958984432.116233825683594723360952019-04-01T22:05:00.000+03:002019-04-01T15:51:24.000+03:00-60229777836095236912019-04-0137241416255360952019-04-01T21:15:00.000+03:00360952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T20:52:07.000+03:00-60229777736095236912019-04-0137241417255360952019-04-01T21:30:00.000+03:00507360952019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T21:01:47.000+03:00-60229777636095236912019-04-0137241415255360952019-04-01T21:00:00.000+03:0034.80721282958984432.116233825683594723360952019-04-01T22:05:00.000+03:002019-04-01T15:51:24.000+03:00-60229777536095236912019-04-0137241416255360952019-04-01T21:15:00.000+03:00360952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T20:52:07.000+03:00-60229777436095236912019-04-0137241417255360952019-04-01T21:30:00.000+03:00507360952019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:51:24.000+03:00-60229777336095236912019-04-0137241416255360952019-04-01T21:15:00.000+03:00360952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T20:52:07.000+03:00-60229777236095236912019-04-0137241417255360952019-04-01T21:30:00.000+03:00507360952019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:20.000+03:00-60229777136095236912019-04-0137241418255360952019-04-01T21:45:00.000+03:00360952019-04-01T22:46:00.000+03:002019-04-01T22:46:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:51:24.000+03:00-60229777036095236912019-04-0137241416255360952019-04-01T21:15:00.000+03:00360952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T20:52:07.000+03:00-60229776936095236912019-04-0137241417255360952019-04-01T21:30:00.000+03:00507360952019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:20.000+03:00-60229776836095236912019-04-0137241418255360952019-04-01T21:45:00.000+03:00360952019-04-01T22:46:00.000+03:002019-04-01T22:46:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:51:24.000+03:00-60229776736095236912019-04-0137241416255360952019-04-01T21:15:00.000+03:00360952019-04-01T22:18:00.000+03:002019-04-01T22:18:00.000+03:002019-04-01T20:52:07.000+03:00-60229776636095236912019-04-0137241417255360952019-04-01T21:30:00.000+03:00507360952019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:20.000+03:00-60229776536095236912019-04-0137241418255360952019-04-01T21:45:00.000+03:00360952019-04-01T22:46:00.000+03:002019-04-01T22:46:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T20:52:07.000+03:00-60229776436095236912019-04-0137241417255360952019-04-01T21:30:00.000+03:00507360952019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:20.000+03:00-60229776336095236912019-04-0137241418255360952019-04-01T21:45:00.000+03:00360952019-04-01T22:46:00.000+03:002019-04-01T22:46:00.000+03:002019-04-01T15:52:54.000+03:00-60229776236095236912019-04-0137241419255360952019-04-01T22:05:00.000+03:00360952019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T20:52:07.000+03:00-60229776136095236912019-04-0137241417255360952019-04-01T21:30:00.000+03:00507360952019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T15:52:20.000+03:00-60229776036095236912019-04-0137241418255360952019-04-01T21:45:00.000+03:00360952019-04-01T22:46:00.000+03:002019-04-01T22:46:00.000+03:002019-04-01T15:52:54.000+03:00-60229775936095236912019-04-0137241419255360952019-04-01T22:05:00.000+03:00360952019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:52:20.000+03:00-60229775836095236912019-04-0137241418255360952019-04-01T21:45:00.000+03:00360952019-04-01T22:46:00.000+03:002019-04-01T22:46:00.000+03:002019-04-01T15:52:54.000+03:00-60229775736095236912019-04-0137241419255360952019-04-01T22:05:00.000+03:00360952019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T15:53:30.000+03:00-60229775636095236912019-04-0137241420255360952019-04-01T22:30:00.000+03:00360952019-04-01T23:29:00.000+03:002019-04-01T23:29:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:52:20.000+03:00-60229775536095236912019-04-0137241418255360952019-04-01T21:45:00.000+03:00360952019-04-01T22:46:00.000+03:002019-04-01T22:46:00.000+03:002019-04-01T15:52:54.000+03:00-60229775436095236912019-04-0137241419255360952019-04-01T22:05:00.000+03:00360952019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T15:53:30.000+03:00-60229775336095236912019-04-0137241420255360952019-04-01T22:30:00.000+03:00360952019-04-01T23:29:00.000+03:002019-04-01T23:29:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:52:20.000+03:00-60229775236095236912019-04-0137241418255360952019-04-01T21:45:00.000+03:00360952019-04-01T22:46:00.000+03:002019-04-01T22:46:00.000+03:002019-04-01T15:52:54.000+03:00-60229775136095236912019-04-0137241419255360952019-04-01T22:05:00.000+03:00360952019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T15:53:30.000+03:00-60229775036095236912019-04-0137241420255360952019-04-01T22:30:00.000+03:00360952019-04-01T23:29:00.000+03:002019-04-01T23:29:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:52:54.000+03:00-60229774936095236912019-04-0137241419255360952019-04-01T22:05:00.000+03:00360952019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T15:53:30.000+03:00-60229774836095236912019-04-0137241420255360952019-04-01T22:30:00.000+03:00360952019-04-01T23:29:00.000+03:002019-04-01T23:29:00.000+03:002019-04-01T15:53:54.000+03:00-60229774736095236912019-04-0137241421255360952019-04-01T22:55:00.000+03:00360952019-04-01T23:51:00.000+03:002019-04-01T23:51:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:52:54.000+03:00-60229774636095236912019-04-0137241419255360952019-04-01T22:05:00.000+03:00360952019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T15:53:30.000+03:00-60229774536095236912019-04-0137241420255360952019-04-01T22:30:00.000+03:00360952019-04-01T23:29:00.000+03:002019-04-01T23:29:00.000+03:002019-04-01T15:53:54.000+03:00-60229774436095236912019-04-0137241421255360952019-04-01T22:55:00.000+03:00360952019-04-01T23:51:00.000+03:002019-04-01T23:51:00.000+03:002019-04-01T21:02:13.524+03:00true2019-04-01T15:52:54.000+03:00-60229774336095236912019-04-0137241419255360952019-04-01T22:05:00.000+03:00360952019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T15:53:30.000+03:00-60229774236095236912019-04-0137241420255360952019-04-01T22:30:00.000+03:00360952019-04-01T23:29:00.000+03:002019-04-01T23:29:00.000+03:002019-04-01T15:53:54.000+03:00-60229774136095236912019-04-0137241421255360952019-04-01T22:55:00.000+03:00360952019-04-01T23:51:00.000+03:002019-04-01T23:51:00.000+03:00\n" + +// "[TRACE][http-retrieve-16] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.522] response=2019-04-01T21:02:13.696+03:00ISR Siri Server (141.12)2794251080100700:1351669188:4684true2019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297508406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297507406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297506406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297505406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297504406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297503406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297502406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297501406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297500406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297499406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297498406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.696+03:00true2019-04-01T15:53:03.000+03:00-602297497406791719922019-04-012978906324516406792019-04-01T22:15:00.000+03:006781732406792019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:00\n" + +// "[TRACE][http-retrieve-19] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.524] response=2019-04-01T21:02:13.758+03:00ISR Siri Server (141.12)2794251110100700:1351669188:4684true2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:02-23:02) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:07-23:07) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:12-23:12) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:17-23:17) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:22-23:22) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:27-23:27) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:32-23:32) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:37-23:37) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:42-23:42) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:47-23:47) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:52-23:52) (reported by ISR Siri Server (141.12))2019-04-01T21:02:13.758+03:00false740Line 3743 is not expected to arrive in stop 42016 in the given time frame (21:57-23:57) (reported by ISR Siri Server (141.12))\n" + +// "[TRACE][http-retrieve-9] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.527] response=2019-04-01T21:02:13.660+03:00ISR Siri Server (141.10)2824335850100700:1351669188:4684true2019-04-01T21:02:13.660+03:00true2019-04-01T21:02:07.000+03:00-48254687519865210622019-04-01374176022225198652019-04-01T20:40:00.000+03:0034.62670516967773431.7715682983398448245884198652019-04-01T21:03:00.000+03:002019-04-01T20:41:00.000+03:00-48254687419865210622019-04-01374176032225198652019-04-01T21:15:00.000+03:008240484198652019-04-01T21:34:00.000+03:002019-04-01T21:34:00.000+03:002019-04-01T20:41:00.000+03:00-48254687319865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254687219865210622019-04-01374176032225198652019-04-01T21:15:00.000+03:008240484198652019-04-01T21:34:00.000+03:002019-04-01T21:34:00.000+03:002019-04-01T20:41:00.000+03:00-48254687119865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254687019865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254686919865210622019-04-01374176032225198652019-04-01T21:15:00.000+03:008240484198652019-04-01T21:34:00.000+03:002019-04-01T21:34:00.000+03:002019-04-01T20:41:00.000+03:00-48254686819865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254686719865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254686619865210622019-04-01374176032225198652019-04-01T21:15:00.000+03:008240484198652019-04-01T21:34:00.000+03:002019-04-01T21:34:00.000+03:002019-04-01T20:41:00.000+03:00-48254686519865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254686419865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254686319865210622019-04-01374176032225198652019-04-01T21:15:00.000+03:008240484198652019-04-01T21:34:00.000+03:002019-04-01T21:34:00.000+03:002019-04-01T20:41:00.000+03:00-48254686219865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254686119865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254686019865210622019-04-01374176032225198652019-04-01T21:15:00.000+03:008240484198652019-04-01T21:34:00.000+03:002019-04-01T21:34:00.000+03:002019-04-01T20:41:00.000+03:00-48254685919865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254685819865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254685719865210622019-04-01374176032225198652019-04-01T21:15:00.000+03:008240484198652019-04-01T21:34:00.000+03:002019-04-01T21:34:00.000+03:002019-04-01T20:41:00.000+03:00-48254685619865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254685519865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254685419865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254685319865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T19:52:57.000+03:00-48254685219865210622019-04-01374176062225198652019-04-01T22:40:00.000+03:008239184198652019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254685119865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254685019865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T19:52:57.000+03:00-48254684919865210622019-04-01374176062225198652019-04-01T22:40:00.000+03:008239184198652019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254684819865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254684719865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T19:52:57.000+03:00-48254684619865210622019-04-01374176062225198652019-04-01T22:40:00.000+03:008239184198652019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254684519865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254684419865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T19:52:57.000+03:00-48254684319865210622019-04-01374176062225198652019-04-01T22:40:00.000+03:008239184198652019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:002019-04-01T21:02:13.660+03:00true2019-04-01T20:41:00.000+03:00-48254684219865210622019-04-01374176042225198652019-04-01T21:40:00.000+03:008240284198652019-04-01T22:01:00.000+03:002019-04-01T22:01:00.000+03:002019-04-01T20:41:00.000+03:00-48254684119865210622019-04-01374176052225198652019-04-01T22:20:00.000+03:008240484198652019-04-01T22:44:00.000+03:002019-04-01T22:44:00.000+03:002019-04-01T19:52:57.000+03:00-48254684019865210622019-04-01374176062225198652019-04-01T22:40:00.000+03:008239184198652019-04-01T23:04:00.000+03:002019-04-01T23:04:00.000+03:00\n" + +// "[TRACE][http-retrieve-12] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.530] response=2019-04-01T21:02:13.659+03:00ISR Siri Server (141.11)62281540100700:1351669188:4684true2019-04-01T21:02:13.659+03:00true2019-04-01T21:02:06.000+03:00417510204590871202322019-04-0137244835314590872019-04-01T21:00:00.000+03:0035.1081008911132833.020221710205089369853590872019-04-01T21:25:00.000+03:002019-04-01T18:44:06.000+03:00417510205590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510206590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:02:06.000+03:00417510207590871202322019-04-0137244835314590872019-04-01T21:00:00.000+03:0035.1081008911132833.020221710205089369853590872019-04-01T21:25:00.000+03:002019-04-01T18:44:06.000+03:00417510208590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510209590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:02:06.000+03:00417510210590871202322019-04-0137244835314590872019-04-01T21:00:00.000+03:0035.1081008911132833.020221710205089369853590872019-04-01T21:25:00.000+03:002019-04-01T18:44:06.000+03:00417510211590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510212590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:02:06.000+03:00417510213590871202322019-04-0137244835314590872019-04-01T21:00:00.000+03:0035.1081008911132833.020221710205089369853590872019-04-01T21:25:00.000+03:002019-04-01T18:44:06.000+03:00417510214590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510215590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T21:02:06.000+03:00417510216590871202322019-04-0137244835314590872019-04-01T21:00:00.000+03:0035.1081008911132833.020221710205089369853590872019-04-01T21:25:00.000+03:002019-04-01T18:44:06.000+03:00417510217590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510218590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T18:44:06.000+03:00417510219590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510220590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T19:56:39.000+03:00417510221590871202322019-04-0137244838314590872019-04-01T22:30:00.000+03:009368353590872019-04-01T22:52:00.000+03:002019-04-01T22:52:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T18:44:06.000+03:00417510222590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510223590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T19:56:39.000+03:00417510224590871202322019-04-0137244838314590872019-04-01T22:30:00.000+03:009368353590872019-04-01T22:52:00.000+03:002019-04-01T22:52:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T18:44:06.000+03:00417510225590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510226590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T19:56:39.000+03:00417510227590871202322019-04-0137244838314590872019-04-01T22:30:00.000+03:009368353590872019-04-01T22:52:00.000+03:002019-04-01T22:52:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T18:44:06.000+03:00417510228590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510229590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T19:56:39.000+03:00417510230590871202322019-04-0137244838314590872019-04-01T22:30:00.000+03:009368353590872019-04-01T22:52:00.000+03:002019-04-01T22:52:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T18:44:06.000+03:00417510231590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510232590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T19:56:39.000+03:00417510233590871202322019-04-0137244838314590872019-04-01T22:30:00.000+03:009368353590872019-04-01T22:52:00.000+03:002019-04-01T22:52:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T18:44:06.000+03:00417510234590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510235590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T19:56:39.000+03:00417510236590871202322019-04-0137244838314590872019-04-01T22:30:00.000+03:009368353590872019-04-01T22:52:00.000+03:002019-04-01T22:52:00.000+03:002019-04-01T21:02:13.659+03:00true2019-04-01T18:44:06.000+03:00417510237590871202322019-04-0137244836314590872019-04-01T21:35:00.000+03:003139472590872019-04-01T22:03:00.000+03:002019-04-01T22:03:00.000+03:002019-04-01T19:14:24.000+03:00417510238590871202322019-04-0137244837314590872019-04-01T22:10:00.000+03:006408768590872019-04-01T22:32:00.000+03:002019-04-01T22:32:00.000+03:002019-04-01T19:56:39.000+03:00417510239590871202322019-04-0137244838314590872019-04-01T22:30:00.000+03:009368353590872019-04-01T22:52:00.000+03:002019-04-01T22:52:00.000+03:00\n" + +// "[TRACE][http-retrieve-11] [org.hasadna.bus.service.SiriConsumeServiceImpl][2019-04-01 21:02:15.535] response=2019-04-01T21:02:13.770+03:00ISR Siri Server (141.11)62281610100700:1351669188:4684true2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:02-23:02) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:07-23:07) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:12-23:12) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:17-23:17) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:22-23:22) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:27-23:27) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:32-23:32) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:37-23:37) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:42-23:42) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:47-23:47) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:52-23:52) (reported by ISR Siri Server (141.11))2019-04-01T21:02:13.770+03:00false740Line 2377 is not expected to arrive in stop 36095 in the given time frame (21:57-23:57) (reported by ISR Siri Server (141.11))\n" + +// "2019-04-01T21:02:13.680+03:00ISR Siri Server (141.12)2794251070100700:1351669188:4684true2019-04-01T21:02:13.680+03:00true2019-04-01T21:02:00.000+03:00-60229754432297109512019-04-01363982182225322972019-04-01T20:35:00.000+03:0034.8983840942382832.073982238769533183439322972019-04-01T21:04:00.000+03:002019-04-01T21:02:06.000+03:00-60229754332297109512019-04-01363982232225322972019-04-01T21:00:00.000+03:0034.85889053344726632.099617004394538912733322972019-04-01T21:31:00.000+03:002019-04-01T20:31:59.000+03:00-60229754232297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T21:02:06.000+03:00-60229754132297109512019-04-01363982232225322972019-04-01T21:00:00.000+03:0034.85889053344726632.099617004394538912733322972019-04-01T21:31:00.000+03:002019-04-01T20:31:59.000+03:00-60229754032297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229753932297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T21:02:06.000+03:00-60229753832297109512019-04-01363982232225322972019-04-01T21:00:00.000+03:0034.85889053344726632.099617004394538912733322972019-04-01T21:31:00.000+03:002019-04-01T20:31:59.000+03:00-60229753732297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229753632297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T21:02:06.000+03:00-60229753532297109512019-04-01363982232225322972019-04-01T21:00:00.000+03:0034.85889053344726632.099617004394538912733322972019-04-01T21:31:00.000+03:002019-04-01T20:31:59.000+03:00-60229753432297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229753332297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T21:02:06.000+03:00-60229753232297109512019-04-01363982232225322972019-04-01T21:00:00.000+03:0034.85889053344726632.099617004394538912733322972019-04-01T21:31:00.000+03:002019-04-01T20:31:59.000+03:00-60229753132297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229753032297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T21:02:06.000+03:00-60229752932297109512019-04-01363982232225322972019-04-01T21:00:00.000+03:0034.85889053344726632.099617004394538912733322972019-04-01T21:31:00.000+03:002019-04-01T20:31:59.000+03:00-60229752832297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229752732297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T20:31:59.000+03:00-60229752632297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229752532297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T19:48:26.000+03:00-60229752432297109512019-04-01363982382225322972019-04-01T22:30:00.000+03:008912733322972019-04-01T22:59:00.000+03:002019-04-01T22:59:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T20:31:59.000+03:00-60229752332297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229752232297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T19:48:26.000+03:00-60229752132297109512019-04-01363982382225322972019-04-01T22:30:00.000+03:008912733322972019-04-01T22:59:00.000+03:002019-04-01T22:59:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T20:31:59.000+03:00-60229752032297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229751932297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T19:48:26.000+03:00-60229751832297109512019-04-01363982382225322972019-04-01T22:30:00.000+03:008912733322972019-04-01T22:59:00.000+03:002019-04-01T22:59:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T20:31:59.000+03:00-60229751732297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229751632297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T19:48:26.000+03:00-60229751532297109512019-04-01363982382225322972019-04-01T22:30:00.000+03:008912733322972019-04-01T22:59:00.000+03:002019-04-01T22:59:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T20:31:59.000+03:00-60229751432297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229751332297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T19:48:26.000+03:00-60229751232297109512019-04-01363982382225322972019-04-01T22:30:00.000+03:008912733322972019-04-01T22:59:00.000+03:002019-04-01T22:59:00.000+03:002019-04-01T21:02:13.680+03:00true2019-04-01T20:31:59.000+03:00-60229751132297109512019-04-01363982282225322972019-04-01T21:30:00.000+03:009008258322972019-04-01T22:00:00.000+03:002019-04-01T22:00:00.000+03:002019-04-01T20:31:59.000+03:00-60229751032297109512019-04-01363982332225322972019-04-01T22:00:00.000+03:009008358322972019-04-01T22:29:00.000+03:002019-04-01T22:29:00.000+03:002019-04-01T19:48:26.000+03:00-60229750932297109512019-04-01363982382225322972019-04-01T22:30:00.000+03:008912733322972019-04-01T22:59:00.000+03:002019-04-01T22:59:00.000+03:00\n"; + }; +} + +//@RunWith(SpringRunner.class) +//@ImportResource({"classpath:data.xml"}) +//@ContextConfiguration(classes = {SiriConsumeServiceNullImpl.class, NullDatadogMeterRegistry.class, NullDatadogConfig.class, NullClock.class, NullHttpPost.class}) +//public class SiriParseServiceImplTest { +// +// @Autowired +// SiriConsumeService siriConsumeService; +// +// @Test +// public void parseShortSummary() throws JAXBException { +// +// Unmarshaller jaxbUnmarshaller = null; +// JAXBContext jaxbContext = JAXBContext.newInstance(GetStopMonitoringServiceResponse.class); +// jaxbUnmarshaller = jaxbContext.createUnmarshaller(); +// String xml = (new SiriConsumeServiceImplTest()).SOAP_RESPONSE_1 ; +// StreamSource streamSource = new StreamSource(new StringReader(xml)); +// JAXBElement je = jaxbUnmarshaller.unmarshal(streamSource, GetStopMonitoringServiceResponse.class); +// +// GetStopMonitoringServiceResponse sm = je.getValue(); +// Assertions.assertThat(sm.getAnswer()).isNotNull(); +// Optional opSummary = (new SiriParseServiceImpl()).parseShortSummary(sm); +// Assertions.assertThat(opSummary.isPresent()).isTrue(); +// Assertions.assertThat(opSummary.get()).isNotNull().isNotEmpty(); +// } +//} \ No newline at end of file diff --git a/siri/siri_retriever/siri-0.1/src/test/resources/application-test.properties b/siri/siri_retriever/siri-0.1/src/test/resources/application-test.properties index 2a1e6ad1..4147ab3c 100644 --- a/siri/siri_retriever/siri-0.1/src/test/resources/application-test.properties +++ b/siri/siri_retriever/siri-0.1/src/test/resources/application-test.properties @@ -11,6 +11,6 @@ management.metrics.export.datadog.apiKey=dummy datadog.apiKey=dummy management.metrics.export.datadog.application-key=dummy -spring.profiles.active=integrationTests +spring.profiles.active=test2 management.metrics.export.datadog.enabled=false diff --git a/siri/siri_retriever/siri-0.1/src/test/resources/data.xml b/siri/siri_retriever/siri-0.1/src/test/resources/data.xml new file mode 100644 index 00000000..5ea4aa17 --- /dev/null +++ b/siri/siri_retriever/siri-0.1/src/test/resources/data.xml @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file