diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5856d56ada71951cdc02835bc14bf1477305619d..bf25e90679e00f59ccb5279a9373195d68101677 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -195,7 +195,7 @@ deploy_nomad_central: parallel: matrix: - COMPONENT: - - aggregate + - extract environment: name: central script: diff --git a/README.md b/README.md index d330c9acfa32dfabb24f5028b5d5a255b49e1a56..baba51050567ee980df6aae7dc558bae6200ea48 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,55 @@ Station statistics gather and dump utility, writes station statistics contiously to the local S3 based object storage. ## Installation + ``` pip install . ``` ## Usage +To forward (copy) statistics packets, metadata, or matrices from one place to another, use the following command: + +```bash +l2ss-stingray-forward <source> <destination> --datatype=packet|json +``` + +These locations are supported for ``source`` and ``destionation``: + +* ``file:<path>``: read/write from a file on disk, +* ``tcp://<host>:<port>``: receive from/write to a TCP server, +* ``udp://<host>:<port>``: receive on/write to a UDP server, +* ``s3://<host>/<bucket>/<path>``: write to an S3 store as JSON (destination only), +* ``zmq+tcp://<host>:<port>/<topic>``: subscribe to ZMQ server and topic (source only), + +The ``packet`` datatype is used to process (binary) statistics packets from SDP, and the ``json`` datatype +is used to process lines of JSON, the encoding used for metadata and matrices. + +To convert statistics packets into matrices and publish those using ZMQ, use the following command: + ```bash -l2ss-stingray-record <source> <target> +l2ss-stingray-publish <station> <antennafield> <type> <source> ``` + +To extract a set of matrices from disk, annotate them with metadata, and write them as HDF5 files, use: + ```bash -l2ss-stingray-aggregate <station> <antennafield> <type> <from> <to> <source> <target> +l2ss-stingray-extract <station> <antennafield> <type> <from> <to> <source> <destination> +``` + +## Example + +The following commands, when started in parallel in the order listed, will convert the XST packets in ``tests/xst-packets.bin`` to JSON matrices in ``xst-matrices.txt``: + +```bash +# start converter & publisher +l2ss-stingray-publish cs123 hba xst udp://0:5000 + +# catch output of publisher +l2ss-stingray-forward -d json 'zmq+tcp://localhost:6001/xst?content_type=application/json' file:xst-matrices.txt + +# provide input to converter +l2ss-stingray-forward file:tests/xst-packets.bin udp://127.0.0.1:5000 ``` ## Contributing diff --git a/infra/jobs/central/aggregate.levant.nomad b/infra/jobs/central/extract.levant.nomad similarity index 95% rename from infra/jobs/central/aggregate.levant.nomad rename to infra/jobs/central/extract.levant.nomad index 67e4e36e983d741b5fd0d2b8d9a4dfa89e3bf28d..89d86405636e1d8ace048f6a629999be40b73fdd 100644 --- a/infra/jobs/central/aggregate.levant.nomad +++ b/infra/jobs/central/extract.levant.nomad @@ -1,4 +1,4 @@ -job "statistics-aggregate" { +job "statistics-extract" { datacenters = ["nl-north"] type = "batch" namespace = "statistics" @@ -26,7 +26,7 @@ job "statistics-aggregate" { image = "git.astron.nl:5000/lofar2.0/stingray/stingray:[[$.image_tag]]" entrypoint = [ - "l2ss-stingray-aggregate", + "l2ss-stingray-extract", "--endpoint", "s3.lofar.net", "--secure", "${NOMAD_META_station}", diff --git a/infra/jobs/station/stingray.levant.nomad b/infra/jobs/station/stingray.levant.nomad index c67cb42b8305d7aad09049b3a392b34637b1e921..1d1162cea4e4ee60b8b4ec0026c92e4c92b0fc1d 100644 --- a/infra/jobs/station/stingray.levant.nomad +++ b/infra/jobs/station/stingray.levant.nomad @@ -15,14 +15,15 @@ job "statistics" { mode = "bridge" } - task "stingray-metadata" { + task "stingray-record-metadata" { driver = "docker" config { image = "git.astron.nl:5000/lofar2.0/stingray/stingray:[[$.image_tag]]" entrypoint = [ - "l2ss-stingray-record", + "l2ss-stingray-forward", + "--datatype=json", "zmq+tcp://device-metadata.service.consul:6001/metadata?content-type=application%2Fjson", "s3://statistics/[[$.station]]/metadata" ] @@ -30,7 +31,7 @@ job "statistics" { env { MINIO_ROOT_USER = "[[$.object_storage.user.name]]" - MINIO_ROOT_PASSWORD = "[[$.object_storage.user.name]]" + MINIO_ROOT_PASSWORD = "[[$.object_storage.user.pass]]" } @@ -42,39 +43,95 @@ job "statistics" { } [[ range $af, $fields := $.stingray ]] - group "stingray-[[ $af ]]" { + [[ range $st, $port := $fields ]] + group "stingray-[[ $af ]]-[[ $st ]]" { count = 1 network { - mode = "bridge" + mode = "cni/station" } - [[ range $st, $port := $fields ]] - task "stingray-[[ $af ]]-[[ $st ]]" { - driver = "docker" + service { + name = "stingray-[[ $af ]]-[[ $st ]]-zmq" + port = 6001 + address_mode = "alloc" + + check { + type = "tcp" + interval = "20s" + timeout = "5s" + address_mode = "alloc" + } + } - config { - image = "git.astron.nl:5000/lofar2.0/stingray/stingray:[[$.image_tag]]" + service { + name = "stingray-[[ $af ]]-[[ $st ]]-udp" + port = [[ $port ]] + address_mode = "alloc" + } - entrypoint = [ - "l2ss-stingray-record", - "tcp://device-[[ $st ]].service.consul:[[ $port ]]", - "s3://statistics/[[$.station]]/[[ $st ]]/[[ $af ]]" - ] - } + service { + name = "stingray-[[ $af ]]-[[ $st ]]-publish-metrics" + tags = ["scrape"] + port = 8000 + address_mode = "alloc" + } - env { - MINIO_ROOT_USER = "[[$.object_storage.user.name]]" - MINIO_ROOT_PASSWORD = "[[$.object_storage.user.name]]" - } + service { + name = "stingray-[[ $af ]]-[[ $st ]]-record-metrics" + tags = ["scrape"] + port = 8001 + address_mode = "alloc" + } + task "stingray-publish-[[ $af ]]-[[ $st ]]" { + driver = "docker" + + config { + image = "git.astron.nl:5000/lofar2.0/stingray/stingray:[[ $.image_tag ]]" + + entrypoint = [ + "l2ss-stingray-publish", + "[[ $.station ]]", + "[[ $af ]]", + "[[ $st ]]", + "udp://0.0.0.0:[[ $port ]]", + "--port=6001" + ] + } + + resources { + cpu = 10 + memory = 512 + } + } - resources { - cpu = 10 - memory = 512 - } - } - [[ end ]] + task "stingray-record-[[ $af ]]-[[ $st ]]" { + driver = "docker" + + config { + image = "git.astron.nl:5000/lofar2.0/stingray/stingray:[[$.image_tag]]" + + entrypoint = [ + "l2ss-stingray-forward", + "--datatype=json", + "zmq+tcp://localhost:6001/[[ $st ]]/[[ $af ]]/", + "s3://statistics/[[$.station]]/[[ $st ]]/[[ $af ]]", + "--metrics-port=8001" + ] + } + + env { + MINIO_ROOT_USER = "[[$.object_storage.user.name]]" + MINIO_ROOT_PASSWORD = "[[$.object_storage.user.pass]]" + } + + resources { + cpu = 10 + memory = 512 + } + } } [[ end ]] + [[ end ]] } diff --git a/lofar_stingray/_prometheus.py b/lofar_stingray/_prometheus.py new file mode 100644 index 0000000000000000000000000000000000000000..dfde5d64c28401c88719fb25d575f8eea7374f24 --- /dev/null +++ b/lofar_stingray/_prometheus.py @@ -0,0 +1,16 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""Reusable Prometheus helpers""" + +from argparse import ArgumentParser + + +def add_prometheus_argument(parser: ArgumentParser): + """Add prometheus endpoint argument""" + parser.add_argument( + "--metrics-port", + type=int, + default=8000, + help="the HTTP port number for exposing Prometheus metrics", + ) diff --git a/lofar_stingray/aggregator/__init__.py b/lofar_stingray/aggregator/__init__.py index 9cbea117328ff7e1277bd9ccf0b3726d7f0b7888..6b7256d68c580e5a9120491a06b51c3b3bbd40bd 100644 --- a/lofar_stingray/aggregator/__init__.py +++ b/lofar_stingray/aggregator/__init__.py @@ -6,5 +6,11 @@ from ._bst_aggregator import BstAggregator from ._sst_aggregator import SstAggregator from ._xst_aggregator import XstAggregator +from ._collect import CollectPacketsPerTimestamp -__all__ = ["BstAggregator", "SstAggregator", "XstAggregator"] +__all__ = [ + "BstAggregator", + "SstAggregator", + "XstAggregator", + "CollectPacketsPerTimestamp", +] diff --git a/lofar_stingray/aggregator/_base.py b/lofar_stingray/aggregator/_base.py index fa6f351b214e043e448457dd8613a69c1f8c8d28..ad26d8a7ba9faf6d2f5e01b5bafb4129c047247b 100644 --- a/lofar_stingray/aggregator/_base.py +++ b/lofar_stingray/aggregator/_base.py @@ -1,99 +1,44 @@ # Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) # SPDX-License-Identifier: Apache-2.0 -""" Base aggregator class """ +""" Base annotator class """ from abc import ABC, abstractmethod -from datetime import datetime, timedelta -from typing import Iterable -from lofar_station_client.common import CaseInsensitiveDict -from lofar_station_client.statistics.statistics_data import StatisticsDataFile +import numpy -from lofar_stingray import __version__ +from .message import Message class BaseAggregator(ABC): - """Base aggregator class""" + """Base annotator class""" - def __init__(self, station: str, antennafield: str, metadata_packets: Iterable): - self._metadata_packets = metadata_packets - self.station = station - self.antennafield = antennafield - self.metadata = CaseInsensitiveDict() - - def _load_metadata(self): - """Load and prepare the metadata""" - for packet in self._metadata_packets: - for device, data in packet.items(): - if self.antennafield not in device.casefold(): - continue - - device_name = device.split("/")[1] - device_name = ( - "antennafield" if device_name.startswith("af") else device_name - ) - - if device_name not in self.metadata: - data["name"] = device - self.metadata[device_name] = CaseInsensitiveDict(data) - - @staticmethod - def format_timestamp(timestamp: datetime) -> str: - """Round the given timestamp to the nearst millisecond.""" - return timestamp.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] - - @staticmethod - def round_datetime_ms(timestamp: datetime) -> datetime: - """Round the given timestamp to the nearst millisecond.""" - subtract_us = timestamp.microsecond - round(timestamp.microsecond, -3) - return timestamp - timedelta(microseconds=subtract_us) + def __init__(self): + pass @abstractmethod - def convert(self, statistics: StatisticsDataFile): - """Convert the statistics packets and store into the StatisticsDataFile""" + def new_matrix(self): + """Return an empty matrix into which all packets + with the same timestamp can be aggregated""" - @property @abstractmethod - def mode(self): - """Return the current packet mode""" + def add_packet_to_matrix(self, packet, matrix: numpy.ndarray) -> numpy.ndarray: + """Add a packet to the matrix. Returns the updated matrix.""" + + def packets_to_matrix(self, packets: list): + """Combine multiple packets into a single matrix.""" - def set_file_header(self, statistics: StatisticsDataFile): - """Returns the header fields per HDF5 file.""" + matrix = self.new_matrix() + for packet in packets: + if packet["source_info"]["payload_error"]: + continue - self._load_metadata() - statistics.station_name = self.station - # statistics.station_version = _get_station_version(self.antennafield_device) - statistics.writer_version = __version__ - statistics.mode = self.mode + matrix = self.add_packet_to_matrix(packet, matrix) - statistics.antennafield_device = self.metadata.get("antennafield", {}).get( - "name", str() - ) - statistics.antenna_names = self.metadata.get("antennafield", {}).get( - "Antenna_Names_R", [] - ) - statistics.antenna_type = self.antennafield[:3].upper() - statistics.rcu_pcb_id = self.metadata.get("antennafield", {}).get( - "RCU_PCB_ID_R", [] - ) - statistics.rcu_pcb_version = self.metadata.get("antennafield", {}).get( - "RCU_PCB_version_R", [] - ) - statistics.antenna_status = self.metadata.get("antennafield", {}).get( - "Antenna_Status_R", [] - ) # noqa - statistics.antenna_usage_mask = self.metadata.get("antennafield", {}).get( - "Antenna_Usage_Mask_R", [] - ) # noqa - statistics.antenna_reference_itrf = self.metadata.get("antennafield", {}).get( - "Antenna_Reference_ITRF_R", [] - ) # noqa + return matrix - statistics.fpga_firmware_version = self.metadata.get("sdpfirmware", {}).get( - "FPGA_firmware_version_R", [] - ) - statistics.fpga_hardware_version = self.metadata.get("sdpfirmware", {}).get( - "FPGA_hardware_version_R", [] - ) + @staticmethod + @abstractmethod + def matrix_to_messages(matrix) -> list[Message]: + """Convert a matrix into one or more dicts.""" diff --git a/lofar_stingray/aggregator/_bst_aggregator.py b/lofar_stingray/aggregator/_bst_aggregator.py index 646c1908cba9e2e040a00b016eda7a639501392c..fbcfc407e5d09a186885279f2092de103355944e 100644 --- a/lofar_stingray/aggregator/_bst_aggregator.py +++ b/lofar_stingray/aggregator/_bst_aggregator.py @@ -3,16 +3,10 @@ """ Class to aggregate BST statistics """ -from datetime import datetime -from typing import Iterable - import numpy as np from lofar_station_client.dts.constants import N_pol -from lofar_station_client.statistics.statistics_data import ( - StatisticsDataFile, -) - from ._base import BaseAggregator +from .message import BSTMessage class BstAggregator(BaseAggregator): @@ -21,53 +15,31 @@ class BstAggregator(BaseAggregator): # beamlets = 488 * 2 for the x and y polarisations MAX_BEAMLETS = 488 - def __init__( - self, - station: str, - antennafield: str, - metadata_packets: Iterable, - packets: Iterable, - ): - super().__init__(station, antennafield, metadata_packets) - self.package_loader = packets - - @property - def mode(self): - return "BST" - - @staticmethod - def _reformat_timestamp(timestamp: str) -> str: - timestamp = datetime.fromisoformat(timestamp) - timestamp = BaseAggregator.round_datetime_ms(timestamp) - return BaseAggregator.format_timestamp(timestamp) - - def convert(self, statistics: StatisticsDataFile): - self.set_file_header(statistics) - for packet in self.package_loader: - - if packet["source_info"]["payload_error"]: - continue - - beamlets = np.array(packet["payload"]) - nr_beamlets = beamlets.shape[0] - first_beamlet = packet["data_id"]["beamlet_index"] - last_beamlet = first_beamlet + nr_beamlets + def new_matrix(self): + return np.zeros( + (self.MAX_BEAMLETS, N_pol), + dtype=np.float32, + ) + + def add_packet_to_matrix(self, packet, matrix): + beamlets = packet["payload"] + nr_beamlets = beamlets.shape[0] + first_beamlet = packet["data_id"]["beamlet_index"] + last_beamlet = first_beamlet + nr_beamlets + + # determine which input this packet contains data for + if last_beamlet > self.MAX_BEAMLETS: + # packet describes an input that is out of bounds for us + raise ValueError( + f"Packet describes {nr_beamlets} beamlets starting at " + f"{first_beamlet}, but we are limited " + f"to describing MAX_BEAMLETS={self.MAX_BEAMLETS}" + ) - # determine which input this packet contains data for - if last_beamlet > self.MAX_BEAMLETS: - # packet describes an input that is out of bounds for us - raise ValueError( - f"Packet describes {nr_beamlets} beamlets starting at " - f"{first_beamlet}, but we are limited " - f"to describing MAX_BEAMLETS={self.MAX_BEAMLETS}" - ) + matrix[first_beamlet:last_beamlet] = beamlets - timestamp = self._reformat_timestamp(packet["timestamp"]) - matrix_name = f"BST_{timestamp}" + return matrix - matrix = np.zeros( - (self.MAX_BEAMLETS, N_pol), - dtype=np.uint64, - ) - matrix[first_beamlet:last_beamlet] = beamlets - statistics[matrix_name] = matrix.astype(np.float32) + @staticmethod + def matrix_to_messages(matrix) -> list[BSTMessage]: + return [BSTMessage(bst_data=matrix)] diff --git a/lofar_stingray/aggregator/_collect.py b/lofar_stingray/aggregator/_collect.py new file mode 100644 index 0000000000000000000000000000000000000000..f943032e68588a688139b24ed9797a75152c209b --- /dev/null +++ b/lofar_stingray/aggregator/_collect.py @@ -0,0 +1,42 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + + +"""Collect statistics packets per timestamp.""" + +from typing import Generator + +from lofar_station_client.statistics.packets import StatisticsPacket + + +class CollectPacketsPerTimestamp: + """Collect and return packets per timestamp. Assumes packets arrive in order.""" + + def __init__(self): + self.packets: list[StatisticsPacket] = [] + self.current_timestamp = None + + def put_packet( + self, packet: StatisticsPacket + ) -> Generator[list[StatisticsPacket], None, None]: + """Add another packet. Yield the full set of packets having the same + timestamp.""" + + if packet.timestamp != self.current_timestamp: + # packet is for next matrix, so current one is complete + if self.packets: + yield self.packets + self.packets = [] + + # collect next matrix + self.current_timestamp = packet.timestamp + + # add to current matrix + self.packets.append(packet) + + def done(self): + """Process any remaining data.""" + + if self.packets: + yield self.packets + self.packets = [] diff --git a/lofar_stingray/aggregator/_sst_aggregator.py b/lofar_stingray/aggregator/_sst_aggregator.py index 5b270d1581dde93ad9890bf195f8cbd46517bf4a..7b786ff546f91a5e142f5f9e0c2515ff3b128d38 100644 --- a/lofar_stingray/aggregator/_sst_aggregator.py +++ b/lofar_stingray/aggregator/_sst_aggregator.py @@ -3,15 +3,9 @@ """ Class to aggregate SST statistics """ -from datetime import datetime -from typing import Optional, Iterable - import numpy as np -from lofar_station_client.statistics.statistics_data import ( - StatisticsDataFile, -) - from ._base import BaseAggregator +from .message import SSTMessage class SstAggregator(BaseAggregator): @@ -25,66 +19,34 @@ class SstAggregator(BaseAggregator): def __init__( self, - station: str, - antennafield: str, - metadata_packets: Iterable, - packets: Iterable, nr_signal_inputs: int = MAX_INPUTS, first_signal_input_index: int = 0, ): # pylint: disable=too-many-arguments,too-many-positional-arguments - super().__init__(station, antennafield, metadata_packets) - self.package_loader = packets self.nr_signal_inputs = nr_signal_inputs self.first_signal_input_index = first_signal_input_index - @property - def mode(self): - return "SST" - - def convert(self, statistics: StatisticsDataFile): - self.set_file_header(statistics) - - current_timestamp: Optional[datetime] = None - matrix = np.zeros( - (self.nr_signal_inputs, self.MAX_SUBBANDS), dtype=np.uint64 - ).astype(np.float32) - - for packet in self.package_loader: - - if packet["source_info"]["payload_error"]: - continue - - # amount of antennas - input_index = ( - packet["data_id"]["signal_input_index"] - self.first_signal_input_index + def new_matrix(self): + return np.zeros((self.nr_signal_inputs, self.MAX_SUBBANDS), dtype=np.float32) + + def add_packet_to_matrix(self, packet, matrix): + # amount of antennas + input_index = ( + packet["data_id"]["signal_input_index"] - self.first_signal_input_index + ) + + # determine which input this packet contains data for + if not 0 <= input_index < self.nr_signal_inputs: + # packet describes an input that is out of bounds for us + raise ValueError( + f"Packet describes input {packet['data_id']['signal_input_index']}" + f", but we are limited to describing {self.nr_signal_inputs}" + f" starting at index {self.first_signal_input_index}" ) - # determine which input this packet contains data for - if not 0 <= input_index < self.nr_signal_inputs: - # packet describes an input that is out of bounds for us - raise ValueError( - f"Packet describes input {packet['data_id']['signal_input_index']}" - f", but we are limited to describing {self.nr_signal_inputs}" - f" starting at index {self.first_signal_input_index}" - ) - - timestamp = datetime.fromisoformat(packet["timestamp"]) - timestamp = self.round_datetime_ms(timestamp) - - if current_timestamp is None: - current_timestamp = timestamp - - if timestamp > current_timestamp: - statistics[f"SST_{self.format_timestamp(current_timestamp)}"] = matrix - matrix = np.zeros( - (self.nr_signal_inputs, self.MAX_SUBBANDS), dtype=np.uint64 - ).astype(np.float32) - current_timestamp = timestamp + matrix[input_index][: packet["nof_statistics_per_packet"]] = packet["payload"] - # track timestamp - matrix[input_index][: packet["nof_statistics_per_packet"]] = packet[ - "payload" - ] + return matrix - if current_timestamp is not None: - statistics[f"SST_{self.format_timestamp(current_timestamp)}"] = matrix + @staticmethod + def matrix_to_messages(matrix) -> list[SSTMessage]: + return [SSTMessage(sst_data=matrix)] diff --git a/lofar_stingray/aggregator/_xst_aggregator.py b/lofar_stingray/aggregator/_xst_aggregator.py index 6a0a771db4150b6437ac78316db813aac541e9cd..dd629cb69aa4d40d8d15845da2d82a33dfbb4357 100644 --- a/lofar_stingray/aggregator/_xst_aggregator.py +++ b/lofar_stingray/aggregator/_xst_aggregator.py @@ -3,24 +3,15 @@ """ Class to aggregate XST statistics """ -from datetime import datetime -from typing import Optional, Iterable - import numpy from lofar_station_client.math.baseline import nr_baselines -from lofar_station_client.statistics.statistics_data import ( - StatisticsDataFile, -) - from ._base import BaseAggregator +from .message import XSTMessage class XstAggregator(BaseAggregator): """Class to aggregate XST statistics packets.""" - # Maximum number of subbands for which we collect XSTs simultaneously - MAX_PARALLEL_SUBBANDS = 8 - # Maximum number of antenna inputs we support (used to determine array sizes) MAX_INPUTS = 192 @@ -43,22 +34,13 @@ class XstAggregator(BaseAggregator): def __init__( self, - station: str, - antennafield: str, - metadata_packets: Iterable, - packets: Iterable, nr_signal_inputs=MAX_INPUTS, first_signal_input_index=0, ): # pylint: disable=too-many-arguments,too-many-positional-arguments - super().__init__(station, antennafield, metadata_packets) - self.packets = packets self.nr_signal_inputs = nr_signal_inputs self.first_signal_input_index = first_signal_input_index - self.nr_parallel_subbands = self.MAX_PARALLEL_SUBBANDS - @property - def mode(self): - return "XST" + super().__init__() @property def nr_blocks(self): @@ -95,7 +77,6 @@ class XstAggregator(BaseAggregator): ) def _transpose_block(self, first_baseline, block): - # Make sure we always have a baseline (a,b) with a>=b. If not, we swap the # indices and mark that the data must be conjugated and transposed when # processed. @@ -122,12 +103,11 @@ class XstAggregator(BaseAggregator): block = block.conjugate().transpose() return first_baseline, block - def _new_matrix(self): + def new_matrix(self): return numpy.array( [], dtype=[ ("subband", numpy.int32), - ("frequency", numpy.float32), ( "data", numpy.complex64, @@ -136,77 +116,60 @@ class XstAggregator(BaseAggregator): ], ) - def convert(self, statistics: StatisticsDataFile): - self.set_file_header(statistics) - matrix = self._new_matrix() - current_timestamp: Optional[datetime] = None - for packet in self.packets: - if packet["source_info"]["payload_error"]: - continue - - nof_signal_inputs = packet["nof_signal_inputs"] - first_baseline = packet["data_id"]["first_baseline"] + def add_packet_to_matrix(self, packet, matrix): + nof_signal_inputs = packet["nof_signal_inputs"] + first_baseline = packet["data_id"]["first_baseline"] - if nof_signal_inputs != self.BLOCK_LENGTH: - raise ValueError( - f"Packet describes a block of {nof_signal_inputs} x " - f"{nof_signal_inputs} baselines, but we can only parse " - f"blocks of {self.BLOCK_LENGTH} x {self.BLOCK_LENGTH} baselines" - ) + if nof_signal_inputs != self.BLOCK_LENGTH: + raise ValueError( + f"Packet describes a block of {nof_signal_inputs} x " + f"{nof_signal_inputs} baselines, but we can only parse " + f"blocks of {self.BLOCK_LENGTH} x {self.BLOCK_LENGTH} baselines" + ) - self._validate_baselines(first_baseline, nof_signal_inputs) + self._validate_baselines(first_baseline, nof_signal_inputs) - subband = packet["data_id"]["subband_index"] + subband = packet["data_id"]["subband_index"] - block = numpy.zeros( - (self.BLOCK_LENGTH * self.BLOCK_LENGTH * self.VALUES_PER_COMPLEX) + block = numpy.zeros( + (self.BLOCK_LENGTH * self.BLOCK_LENGTH * self.VALUES_PER_COMPLEX) + ) + block[: packet["nof_statistics_per_packet"]] = packet["payload"] + + first_baseline, block = self._transpose_block(first_baseline, block) + + if subband not in matrix["subband"]: + matrix = numpy.append( + matrix, + numpy.array( + [ + ( + subband, + numpy.zeros( + (self.nr_signal_inputs, self.nr_signal_inputs), + dtype=numpy.complex64, + ), + ) + ], + dtype=matrix.dtype, + ), ) - block[: packet["nof_statistics_per_packet"]] = packet["payload"] - - first_baseline, block = self._transpose_block(first_baseline, block) - timestamp = self.round_datetime_ms( - datetime.fromisoformat(packet["timestamp"]) + (idx,) = numpy.nonzero(matrix["subband"] == subband) + matrix[idx[0]]["data"][ + first_baseline[0] : first_baseline[0] + self.BLOCK_LENGTH, + first_baseline[1] : first_baseline[1] + self.BLOCK_LENGTH, + ] = block + + return matrix + + @staticmethod + def matrix_to_messages(matrix) -> list[XSTMessage]: + return [ + XSTMessage( + subband=subband, + xst_data_real=numpy.real(data), + xst_data_imag=numpy.imag(data), ) - - if current_timestamp is None: - current_timestamp = timestamp - - if timestamp > current_timestamp: - # write new matrix - statistics[f"XST_{self.format_timestamp(current_timestamp)}"] = matrix - matrix = self._new_matrix() - current_timestamp = timestamp - - if subband not in matrix["subband"]: - try: - freq = self.metadata["sdp"]["subband_frequency_r"][0][subband] - except (KeyError, IndexError): - freq = 0.0 - - matrix = numpy.append( - matrix, - numpy.array( - [ - ( - subband, - freq, - numpy.zeros( - (self.nr_signal_inputs, self.nr_signal_inputs), - dtype=numpy.complex64, - ), - ) - ], - dtype=matrix.dtype, - ), - ) - - (idx,) = numpy.nonzero(matrix["subband"] == subband) - matrix[idx[0]]["data"][ - first_baseline[0] : first_baseline[0] + self.BLOCK_LENGTH, - first_baseline[1] : first_baseline[1] + self.BLOCK_LENGTH, - ] = block - - # flush latest - if current_timestamp is not None: - statistics[f"XST_{self.format_timestamp(current_timestamp)}"] = matrix + for subband, data in matrix + ] diff --git a/lofar_stingray/aggregator/message.py b/lofar_stingray/aggregator/message.py new file mode 100644 index 0000000000000000000000000000000000000000..d7199b565157ef8c70bd62478dc5348adb16e58d --- /dev/null +++ b/lofar_stingray/aggregator/message.py @@ -0,0 +1,67 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""Classes to encode ZMQ message payloads.""" + +from dataclasses import dataclass, asdict, field +from datetime import datetime +import json + +import numpy + +from lofar_stingray.utils import StingrayJsonEncoder + + +@dataclass +class Message: + """Structure to hold the fields for a message to be exchanged over ZMQ.""" + + def zmq_payload(self) -> str: + """Turn this object into a ZMQ message payload.""" + return json.dumps(asdict(self), cls=StingrayJsonEncoder) + + +@dataclass +# pylint: disable=too-many-instance-attributes +class StatisticsHeader: + """Generic fields for metadata regarding statistics.""" + + timestamp: datetime = datetime.min + + # source of statistics + station: str = "" + antenna_field: str = "" + type: str = "" + + # packet header metadata, + # for testing and validation + packet_version: int = 0 + station_id: int = 0 + station_info: dict = field(default_factory=dict) + source_info: dict = field(default_factory=dict) + observation_id: int = 0 + clock_mhz: int = 0 + integration_interval: float = 0.0 + + +@dataclass +class BSTMessage(Message, StatisticsHeader): + """A message describing and containing BSTs.""" + + bst_data: numpy.ndarray = field(default_factory=numpy.array) + + +@dataclass +class SSTMessage(Message, StatisticsHeader): + """A message describing and containing SSTs.""" + + sst_data: numpy.ndarray = field(default_factory=numpy.array) + + +@dataclass +class XSTMessage(Message, StatisticsHeader): + """A message describing and containing XSTs.""" + + subband: int = -1 + xst_data_real: numpy.ndarray = field(default_factory=numpy.array) + xst_data_imag: numpy.ndarray = field(default_factory=numpy.array) diff --git a/lofar_stingray/annotator/__init__.py b/lofar_stingray/annotator/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e5dc767fe231a54a074d55b729bd10137e2895f5 --- /dev/null +++ b/lofar_stingray/annotator/__init__.py @@ -0,0 +1,10 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""Provide classes to aggregate statistics data""" + +from ._bst_annotator import BstAnnotator +from ._sst_annotator import SstAnnotator +from ._xst_annotator import XstAnnotator + +__all__ = ["BstAnnotator", "SstAnnotator", "XstAnnotator"] diff --git a/lofar_stingray/annotator/_base.py b/lofar_stingray/annotator/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..12729b2cd309a5c123ae418932310895b0380f0f --- /dev/null +++ b/lofar_stingray/annotator/_base.py @@ -0,0 +1,103 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Base annotator class """ + + +from abc import ABC, abstractmethod +from datetime import datetime, timedelta +from typing import Iterable + +from lofar_station_client.common import CaseInsensitiveDict +from lofar_station_client.statistics.statistics_data import StatisticsDataFile + +from lofar_stingray import __version__ + + +class BaseAnnotator(ABC): + """Base annotator class""" + + def __init__(self, station: str, antennafield: str, metadata_packets: Iterable): + self._metadata_packets = metadata_packets + self.station = station + self.antennafield = antennafield + self.metadata = CaseInsensitiveDict() + + def _load_metadata(self): + """Load and prepare the metadata""" + for packet in self._metadata_packets: + for device, data in packet.items(): + if self.antennafield not in device.casefold(): + continue + + device_name = device.split("/")[1] + device_name = ( + "antennafield" if device_name.startswith("af") else device_name + ) + + if device_name not in self.metadata: + data["name"] = device + self.metadata[device_name] = CaseInsensitiveDict(data) + + @staticmethod + def format_timestamp(timestamp: datetime) -> str: + """Round the given timestamp to the nearst millisecond.""" + return timestamp.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + + @staticmethod + def round_datetime_ms(timestamp: datetime) -> datetime: + """Round the given timestamp to the nearst millisecond.""" + subtract_us = timestamp.microsecond - round(timestamp.microsecond, -3) + return timestamp - timedelta(microseconds=subtract_us) + + @abstractmethod + def write(self, statistics: StatisticsDataFile): + """Store the matrices and metadata into the StatisticsDataFile""" + + @property + @abstractmethod + def mode(self): + """Return the current packet mode""" + + def set_file_header(self, statistics: StatisticsDataFile): + """Returns the header fields per HDF5 file.""" + + self._load_metadata() + statistics.station_name = self.station + # statistics.station_version = _get_station_version(self.antennafield_device) + statistics.writer_version = __version__ + statistics.mode = self.mode + + statistics.antennafield_device = self.metadata.get("antennafield", {}).get( + "name", str() + ) + statistics.antenna_names = self.metadata.get("antennafield", {}).get( + "Antenna_Names_R", [] + ) + statistics.antenna_type = self.antennafield[:3].upper() + statistics.rcu_pcb_id = self.metadata.get("antennafield", {}).get( + "RCU_PCB_ID_R", [] + ) + statistics.rcu_pcb_version = self.metadata.get("antennafield", {}).get( + "RCU_PCB_version_R", [] + ) + statistics.antenna_status = self.metadata.get("antennafield", {}).get( + "Antenna_Status_R", [] + ) # noqa + statistics.antenna_usage_mask = self.metadata.get("antennafield", {}).get( + "Antenna_Usage_Mask_R", [] + ) # noqa + statistics.antenna_reference_itrf = self.metadata.get("antennafield", {}).get( + "Antenna_Reference_ITRF_R", [] + ) # noqa + + statistics.fpga_firmware_version = self.metadata.get("sdpfirmware", {}).get( + "FPGA_firmware_version_R", [] + ) + statistics.fpga_hardware_version = self.metadata.get("sdpfirmware", {}).get( + "FPGA_hardware_version_R", [] + ) + + statistics.subband_frequencies = self.metadata.get("sdp", {}).get( + "subband_frequency_R", [[]] + )[0] diff --git a/lofar_stingray/annotator/_bst_annotator.py b/lofar_stingray/annotator/_bst_annotator.py new file mode 100644 index 0000000000000000000000000000000000000000..114825730fbddbbc74ba7b5ec34e7a5acc4676c9 --- /dev/null +++ b/lofar_stingray/annotator/_bst_annotator.py @@ -0,0 +1,45 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Class to aggregate BST statistics """ + +from datetime import datetime +from typing import Iterable + +import numpy + +from lofar_station_client.statistics.statistics_data import ( + StatisticsDataFile, +) + +from ._base import BaseAnnotator + + +class BstAnnotator(BaseAnnotator): + """Class to aggregate BST statistics""" + + def __init__( + self, + station: str, + antennafield: str, + metadata_packets: Iterable, + matrices: Iterable, + ): + super().__init__(station, antennafield, metadata_packets) + self.matrices = matrices + + @property + def mode(self): + return "BST" + + def write(self, statistics: StatisticsDataFile): + self.set_file_header(statistics) + + for matrix in self.matrices: + timestamp = self.round_datetime_ms( + datetime.fromisoformat(matrix["timestamp"]) + ) + + values = numpy.array(matrix["bst_data"], dtype=numpy.float32) + + statistics[f"BST_{self.format_timestamp(timestamp)}"] = values diff --git a/lofar_stingray/annotator/_sst_annotator.py b/lofar_stingray/annotator/_sst_annotator.py new file mode 100644 index 0000000000000000000000000000000000000000..c55726e07f28b44cdac3c557a1f7c713243cc3c9 --- /dev/null +++ b/lofar_stingray/annotator/_sst_annotator.py @@ -0,0 +1,45 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Class to aggregate SST statistics """ + +from datetime import datetime +from typing import Iterable + +import numpy + +from lofar_station_client.statistics.statistics_data import ( + StatisticsDataFile, +) + +from ._base import BaseAnnotator + + +class SstAnnotator(BaseAnnotator): + """Class to aggregate SST statistics""" + + def __init__( + self, + station: str, + antennafield: str, + metadata_packets: Iterable, + matrices: Iterable, + ): # pylint: disable=too-many-arguments,too-many-positional-arguments + super().__init__(station, antennafield, metadata_packets) + self.matrices = matrices + + @property + def mode(self): + return "SST" + + def write(self, statistics: StatisticsDataFile): + self.set_file_header(statistics) + + for matrix in self.matrices: + timestamp = self.round_datetime_ms( + datetime.fromisoformat(matrix["timestamp"]) + ) + + values = numpy.array(matrix["sst_data"], dtype=numpy.float32) + + statistics[f"SST_{self.format_timestamp(timestamp)}"] = values diff --git a/lofar_stingray/annotator/_xst_annotator.py b/lofar_stingray/annotator/_xst_annotator.py new file mode 100644 index 0000000000000000000000000000000000000000..fd8d714855655625733f46494d66620e1388f502 --- /dev/null +++ b/lofar_stingray/annotator/_xst_annotator.py @@ -0,0 +1,50 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Class to aggregate XST statistics """ + +from datetime import datetime +from typing import Iterable + +import numpy + +from lofar_station_client.statistics.statistics_data import ( + StatisticsDataFile, +) + +from ._base import BaseAnnotator + + +class XstAnnotator(BaseAnnotator): + """Class to aggregate XST statistics packets.""" + + def __init__( + self, + station: str, + antennafield: str, + metadata_packets: Iterable, + matrices: Iterable, + ): # pylint: disable=too-many-arguments,too-many-positional-arguments + super().__init__(station, antennafield, metadata_packets) + self.matrices = matrices + + @property + def mode(self): + return "XST" + + def write(self, statistics: StatisticsDataFile): + self.set_file_header(statistics) + + for matrix in self.matrices: + timestamp = self.round_datetime_ms( + datetime.fromisoformat(matrix["timestamp"]) + ) + subband = matrix["subband"] + + real = numpy.array(matrix["xst_data_real"], dtype=numpy.float32) + imag = numpy.array(matrix["xst_data_imag"], dtype=numpy.float32) + values = real + imag * 1j + + statistics[f"XST_{self.format_timestamp(timestamp)}_SB{subband:03}"] = ( + values + ) diff --git a/lofar_stingray/aggregate.py b/lofar_stingray/extract.py similarity index 72% rename from lofar_stingray/aggregate.py rename to lofar_stingray/extract.py index b752357b674d2a0ffedf460992c71de9c55253a2..46baf51ca94f8d4257af71756f9c0949870e9d59 100644 --- a/lofar_stingray/aggregate.py +++ b/lofar_stingray/extract.py @@ -1,7 +1,7 @@ # Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) # SPDX-License-Identifier: Apache-2.0 -"""Entry point to aggregate statistic packets""" +"""Entry point to extract statistic matrices & metadata to store them as HDF5""" import argparse import logging @@ -15,7 +15,7 @@ from lofar_station_client.statistics.statistics_data import StatisticsDataFile from lofar_stingray._logging import setup_logging_handler from lofar_stingray._minio import add_minio_argument, get_minio_client -from lofar_stingray.aggregator import XstAggregator, SstAggregator, BstAggregator +from lofar_stingray.annotator import XstAnnotator, SstAnnotator, BstAnnotator from lofar_stingray.reader import S3PacketLoader logger = logging.getLogger() @@ -31,10 +31,6 @@ logger.addHandler(setup_logging_handler()) MAX_METADATA_LOOKBACK = timedelta(minutes=10, seconds=30) -def _lower_str(s: str): - return s.lower() - - def _datetime_fromisoformat_with_tz( datetime_str: str, default_tz: timezone = timezone.utc ) -> datetime: @@ -49,27 +45,29 @@ def _datetime_fromisoformat_with_tz( def _create_parser(): """Define the parser""" parser = argparse.ArgumentParser( - description="Aggregates statistics packets from an S3 bucket into an HDF5 file." + description="Extract statistics matrices from an S3 bucket into an HDF5 file." ) - parser.add_argument("station", type=_lower_str, help="the name of the station") + parser.add_argument("station", type=str.lower, help="the name of the station") parser.add_argument( "antennafield", - type=_lower_str, + type=str.lower, choices=["lba", "hba", "hba0", "hba1"], help="the name of the antenna field", ) parser.add_argument( "type", - type=_lower_str, + type=str.lower, choices=["xst", "sst", "bst"], help="the type of the statistics", ) parser.add_argument("begin", type=_datetime_fromisoformat_with_tz) parser.add_argument("end", type=_datetime_fromisoformat_with_tz) parser.add_argument( - "source", type=urlparse, help="the source bucket location of the data" + "source", + type=urlparse, + help="the source bucket location of the data", ) - parser.add_argument("destination", type=urlparse, help="the target HDF5 file") + parser.add_argument("destination", type=urlparse, help="the destination HDF5 file") add_minio_argument(parser) return parser @@ -114,41 +112,20 @@ def main() -> int: logger.error("Statistics not available on S3") return 1 # this is fatal - # aggregate data - aggregator_args = ( + # combine matrices with metadata + annotator_args = ( args.station, args.antennafield, - metadata_storage.load_packets( - args.begin - MAX_METADATA_LOOKBACK, args.end, "ts" - ), - statistics_storage.load_packets(args.begin, args.end), + metadata_storage.load_json(args.begin - MAX_METADATA_LOOKBACK, args.end, "ts"), + statistics_storage.load_json(args.begin, args.end), ) - nr_signal_inputs = 192 # default LBA - first_signal_input_index = 0 - match args.antennafield: - case "hba": - nr_signal_inputs = 96 - case "hba0": - nr_signal_inputs = 48 - case "hba1": - nr_signal_inputs = 48 - first_signal_input_index = 48 - if args.type == "sst": - aggregator = SstAggregator( - *aggregator_args, - nr_signal_inputs=nr_signal_inputs, - first_signal_input_index=first_signal_input_index, - ) + annotator = SstAnnotator(*annotator_args) elif args.type == "xst": - aggregator = XstAggregator( - *aggregator_args, - nr_signal_inputs=nr_signal_inputs, - first_signal_input_index=first_signal_input_index, - ) + annotator = XstAnnotator(*annotator_args) else: - aggregator = BstAggregator(*aggregator_args) + annotator = BstAnnotator(*annotator_args) tf = ( tempfile.NamedTemporaryFile(delete=False) # pylint: disable=consider-using-with @@ -157,12 +134,12 @@ def main() -> int: ) with create_hdf5(tf, StatisticsDataFile) as statistics: - aggregator.convert(statistics) + annotator.write(statistics) - logger.info("Aggregation completed.") + logger.info("Extraction completed.") if args.destination.scheme == "s3": tf.close() - logger.info("Uploading %s", args.destination) + logger.info("Uploading to %s", args.destination) minio_client.fput_object( args.destination.netloc, args.destination.path, tf.name ) diff --git a/lofar_stingray/forward.py b/lofar_stingray/forward.py new file mode 100644 index 0000000000000000000000000000000000000000..c0bfb74d6b8abcbf4efa8bdfbd965d32a13c9f6a --- /dev/null +++ b/lofar_stingray/forward.py @@ -0,0 +1,106 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Stingray forwarder application """ + +import argparse +import logging +import sys + +from prometheus_client import start_http_server, disable_created_metrics, Counter, Gauge + +from lofar_stingray import streams +from lofar_stingray._logging import setup_logging_handler +from lofar_stingray._minio import get_minio_client, add_minio_argument +from lofar_stingray._prometheus import add_prometheus_argument + +logger = logging.getLogger() +logger.setLevel(logging.DEBUG) +logger.addHandler(setup_logging_handler()) + + +def _create_parser(): + """Define the parser""" + parser = argparse.ArgumentParser( + description="Copy a stream of statistics packets or json" + " (matrices, metadata) from a source to a destination." + ) + parser.add_argument( + "source", type=str, help="the source of the data (file, udp, tcp, zmq)" + ) + parser.add_argument( + "destination", + type=str, + help="the destination location to use (file, udp, tcp, s3)", + ) + parser.add_argument( + "-d", + "--datatype", + choices=["packet", "json"], + default="packet", + help="type of data that is copied", + ) + add_prometheus_argument(parser) + add_minio_argument(parser) + return parser + + +def main(argv=None): + """Parser main method""" + logger.debug("Starting stingray forwarder") + parser = _create_parser() + args = parser.parse_args(argv or sys.argv[1:]) + logger.info("Using source %s", args.source) + logger.info("Using destination %s", args.destination) + + # start prometheus server + disable_created_metrics() + start_http_server(args.metrics_port) + + # initialise metrics + metric_nr_bytes_read = Gauge( + "nr_bytes_read", + "Number of bytes read from the input", + ) + metric_nr_bytes_read.inc(0) + metric_nr_bytes_written = Gauge( + "nr_bytes_written", + "Number of bytes written to the output", + ) + metric_nr_bytes_written.inc(0) + + metric_nr_packets_processed = Counter( + "nr_packets_processed", + "Number of packets read from the input and written to the output", + ) + metric_nr_packets_processed.inc(0) + + # obtain s3 client, if needed + if args.destination.startswith("s3:"): + minio_client = get_minio_client(args) + else: + minio_client = None + + with streams.create(args.destination, True, minio_client) as writer: + with streams.create(args.source, False, minio_client) as reader: + if args.datatype == "packet": + for packet in reader: + writer.put_packet(packet) + + metric_nr_packets_processed.inc() + metric_nr_bytes_read.set(reader.num_bytes_read) + metric_nr_bytes_written.set(writer.num_bytes_written) + + elif args.datatype == "json": + while data := reader.get_json(): + writer.put_json(data) + + metric_nr_packets_processed.inc() + metric_nr_bytes_read.set(reader.num_bytes_read) + metric_nr_bytes_written.set(writer.num_bytes_written) + + logger.info("End of packet stream. Shutting down.") + + +if __name__ == "__main__": + main() diff --git a/lofar_stingray/publish.py b/lofar_stingray/publish.py new file mode 100644 index 0000000000000000000000000000000000000000..0383bf047b3f31acfec87e987cc7c722ddfddf4e --- /dev/null +++ b/lofar_stingray/publish.py @@ -0,0 +1,263 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Stingray application that transforms statistics packets into matrices, + which are published through ZMQ. """ + +import argparse +import logging +import queue +import sys +import time +from typing import Dict, Generator + +from lofar_station_client.zeromq.publisher import ZeroMQPublisher +from lofar_station_client.statistics.packets import StatisticsPacket +from prometheus_client import start_http_server, disable_created_metrics, Counter, Gauge + +from lofar_stingray import streams +from lofar_stingray._logging import setup_logging_handler +from lofar_stingray._prometheus import add_prometheus_argument +from lofar_stingray.aggregator import ( + BstAggregator, + SstAggregator, + XstAggregator, + CollectPacketsPerTimestamp, +) +from lofar_stingray.aggregator.message import Message + +logger = logging.getLogger() +logger.setLevel(logging.DEBUG) +logger.addHandler(setup_logging_handler()) + + +def nr_signal_inputs(antenna_field: str): + """Return the number of SDP signal inputs for the antenna fields.""" + match antenna_field: + case "hba": + return 96 + case "hba0": + return 48 + case "hba1": + return 48 + case "lba": + return 192 + + +def first_signal_input_index(antenna_field: str): + """Return the index of the first signal input in the statistics packets from SDP.""" + match antenna_field: + case "hba": + return 0 + case "hba0": + return 0 + case "hba1": + return 48 + case "lba": + return 0 + + +def packets_to_messages( + station: str, antenna_field: str, mode: str, packets: list[StatisticsPacket] +) -> list[Message]: + """Convert a set of packages into one or more message payloads for ZMQ""" + + if mode == "sst": + aggregator = SstAggregator( + nr_signal_inputs=nr_signal_inputs(antenna_field), + first_signal_input_index=first_signal_input_index(antenna_field), + ) + elif mode == "xst": + aggregator = XstAggregator( + nr_signal_inputs=nr_signal_inputs(antenna_field), + first_signal_input_index=first_signal_input_index(antenna_field), + ) + else: + aggregator = BstAggregator() + + # combine packets into a matrix + matrix = aggregator.packets_to_matrix([dict(packet) for packet in packets]) + messages = aggregator.matrix_to_messages(matrix) + + # add header + packet = packets[0] + for m in messages: + m.timestamp = packet.timestamp + + m.station = station + m.antenna_field = antenna_field + m.type = mode + + m.packet_version = packet.header.version_id + m.station_id = packet.header.station_id + m.station_info = packet.header.station_info + m.source_info = packet.header.source_info + m.observation_id = packet.header.observation_id + m.clock_mhz = packet.header.t_adc + m.integration_interval = packet.header.integration_interval + + return messages + + +def read_packets( + stream: streams.Stream, metric_labels: Dict[str, str] +) -> Generator[StatisticsPacket, None, None]: + """Generator returning all packets read from the given stream until EOF.""" + + metric_labels_keys = list(metric_labels.keys()) + + metric_nr_bytes_received = Gauge( + "nr_bytes_received", "Number of bytes received", metric_labels_keys + ).labels(**metric_labels) + metric_nr_packets_received = Counter( + "nr_packets_received", + "Number of packets received and decoded, per FPGA (or -1 if FPGA is unknown)", + metric_labels_keys + ["fpga"], + ) + metric_nr_payload_errors = Counter( + "nr_payload_errors", + "Number of packets that were marked by the FPGA for having a payload error", + metric_labels_keys + ["fpga"], + ) + metric_nr_decoding_errors = Counter( + "nr_decoding_errors", + "Number of packets that could not be decoded as a valid statistics packet", + metric_labels_keys, + ).labels(**metric_labels) + + # provide a value to make the metric already available + metric_nr_bytes_received.inc(0) + metric_nr_packets_received.labels(**metric_labels, fpga=-1).inc(0) + metric_nr_payload_errors.labels(**metric_labels, fpga=-1).inc(0) + metric_nr_decoding_errors.inc(0) + + while True: + try: + packet = stream.get_packet() + except EOFError: + return + except ValueError: + metric_nr_packets_received.labels(**metric_labels, fpga=-1).inc() + metric_nr_decoding_errors.inc() + continue + finally: + metric_nr_bytes_received.set(stream.num_bytes_read) + + metric_nr_packets_received.labels( + **metric_labels, fpga=packet.header.gn_index + ).inc() + + if packet.header.payload_error: + metric_nr_payload_errors.labels( + **metric_labels, fpga=packet.header.gn_index + ).inc() + continue + + yield packet + + +def _create_parser(): + """Define the parser""" + parser = argparse.ArgumentParser( + description="Records a stream of statistics" + " packets and publish them as matrices on ZMQ." + ) + parser.add_argument("station", type=str.lower, help="the station name") + parser.add_argument( + "antenna_field", + type=str.lower, + choices=["lba", "hba", "hba0", "hba1"], + help="the antenna-field name", + ) + parser.add_argument( + "type", + type=str.lower, + choices=["bst", "sst", "xst"], + help="the type of statistic to write", + ) + parser.add_argument("source", type=str, help="source of the packets") + parser.add_argument( + "--port", type=int, default=6001, help="the ZMQ port number to publish on" + ) + add_prometheus_argument(parser) + return parser + + +def send_message(publisher: ZeroMQPublisher, message) -> bool: + """Send one message over the ZMQ bus. Return whether + emission was succesful.""" + + try: + publisher.send(message.zmq_payload()) + return True + except queue.Full: + logger.warning("Could not post message: queue is full") + return False + + +def main(argv=None): + """Parser main method""" + logger.debug("Starting statistics matrix publisher") + parser = _create_parser() + args = parser.parse_args(argv or sys.argv[1:]) + + # start prometheus server + disable_created_metrics() + start_http_server(args.metrics_port) + + # initialise metrics + metric_labels = { + "antenna_field": args.antenna_field, + "type": args.type, + } + + metric_nr_messages_constructed = Counter( + "nr_messages_constructed", + "Number of messages constructed ZMQ", + list(metric_labels.keys()), + ).labels(**metric_labels) + metric_nr_messages_constructed.inc(0) + + metric_nr_messages_published = Counter( + "nr_messages_published", + "Number of messages published on ZMQ", + list(metric_labels.keys()), + ).labels(**metric_labels) + metric_nr_messages_published.inc(0) + + # start publishing + zmq_url = f"tcp://*:{args.port}" + topic = f"{args.type}/{args.antenna_field}/{args.station}" + logger.info("Publishing on %s with topic %s", zmq_url, topic) + with ZeroMQPublisher(zmq_url, [topic]) as publisher: + logger.info("Waiting for publisher to start...") + while not publisher.is_running: + time.sleep(1) + logger.info("Publisher started") + + collector = CollectPacketsPerTimestamp() + + # processor function for each timestamp + def process_packets(packets): + for message in packets_to_messages( + args.station, args.antenna_field, args.type, packets + ): + metric_nr_messages_constructed.inc() + if send_message(publisher, message): + metric_nr_messages_published.inc() + + # process stream + with streams.create(args.source) as stream: + for packet in read_packets(stream, metric_labels): + for packets_of_same_timestamp in collector.put_packet(packet): + process_packets(packets_of_same_timestamp) + + # process remainder + for packets_of_same_timestamp in collector.done(): + process_packets(packets_of_same_timestamp) + + logger.info("End of packet stream. Shutting down.") + + +if __name__ == "__main__": + main() diff --git a/lofar_stingray/reader/_s3_packet_loader.py b/lofar_stingray/reader/_s3_packet_loader.py index dfaac02206d621e95331178832242c2fe395ba92..eec63cdec1a4ef57ad4416ddd44d915da2d470b9 100644 --- a/lofar_stingray/reader/_s3_packet_loader.py +++ b/lofar_stingray/reader/_s3_packet_loader.py @@ -104,8 +104,8 @@ class S3PacketLoader: # pylint: disable=too-few-public-methods ) return False - def load_packets(self, start: datetime, end: datetime, ts_field="timestamp"): - """Loads packets from the S3 storage until no matching packets are found""" + def load_json(self, start: datetime, end: datetime, ts_field="timestamp") -> list: + """Loads json lines from the S3 storage until no matching packets are found""" for obj in self._list_objects_after(start): packets = [] diff --git a/lofar_stingray/record.py b/lofar_stingray/record.py deleted file mode 100644 index 5bf61eda555e8cc34c407707886f83c70c247aa8..0000000000000000000000000000000000000000 --- a/lofar_stingray/record.py +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) -# SPDX-License-Identifier: Apache-2.0 - -""" Stingray recorder application """ - -import argparse -import json -import logging -from urllib.parse import urlparse - -from lofar_station_client.statistics import receivers - -from lofar_stingray._logging import setup_logging_handler -from lofar_stingray._minio import get_minio_client, add_minio_argument -from lofar_stingray.utils import StingrayJsonEncoder -from lofar_stingray.writer import Storage - -logger = logging.getLogger() -logger.setLevel(logging.DEBUG) -logger.addHandler(setup_logging_handler()) - - -def _create_parser(): - """Define the parser""" - parser = argparse.ArgumentParser( - description="Records a stream of statistics packets onto an S3 bucket." - ) - parser.add_argument("source", type=str, help="the source of the data") - parser.add_argument( - "target", type=urlparse, help="the target bucket location to use" - ) - add_minio_argument(parser) - return parser - - -def main(): - """Parser main method""" - logger.debug("Starting stingray") - parser = _create_parser() - args = parser.parse_args() - minio_client = get_minio_client(args) - logger.info("Using source %s", args.source) - logger.info("Using target %s", args.target) - storage = Storage(args.target.netloc, args.target.path, minio_client) - - with storage: - for packet in receivers.create(args.source): - data = dict(packet) - storage.write_line(json.dumps(data, cls=StingrayJsonEncoder)) - - logger.info("End of packet stream. Shutting down.") - - -if __name__ == "__main__": - main() diff --git a/lofar_stingray/streams/__init__.py b/lofar_stingray/streams/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..2e339ef85f924898300f0ee0843ba11a65d798fa --- /dev/null +++ b/lofar_stingray/streams/__init__.py @@ -0,0 +1,20 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""Different types of senders/receivers for statistics""" + +from ._create import create +from ._file import FileStream +from ._stream import Stream +from ._tcp import TCPStream +from ._udp import UDPStream +from ._zmq import ZeroMQReceiver + +__all__ = [ + "create", + "FileStream", + "TCPStream", + "UDPStream", + "Stream", + "ZeroMQReceiver", +] diff --git a/lofar_stingray/streams/_create.py b/lofar_stingray/streams/_create.py new file mode 100644 index 0000000000000000000000000000000000000000..d4816e276d4b7a0700f4a8db61cc7d929f59cdf3 --- /dev/null +++ b/lofar_stingray/streams/_create.py @@ -0,0 +1,39 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""Create receiver based on uri""" + +import os +from typing import Optional +from urllib.parse import urlsplit + +from minio import Minio + +from ._file import FileStream +from ._tcp import TCPStream +from ._udp import UDPStream +from ._zmq import ZeroMQReceiver +from ._s3 import StorageStream + + +def create(uri, writer=False, minio_client: Optional[Minio] = None): + """Create a Stream based on the given URI""" + parsed = urlsplit(uri) + if parsed.scheme == "tcp": + return TCPStream(parsed.hostname, parsed.port) + if parsed.scheme == "udp": + return UDPStream(parsed.hostname, parsed.port, writer) + if parsed.scheme == "file": + return FileStream( + parsed.path, os.O_WRONLY | os.O_CREAT if writer else os.O_RDONLY + ) + if parsed.scheme == "s3": + return StorageStream(parsed.netloc, parsed.path, minio_client) + if parsed.scheme.startswith("zmq"): + if writer: + raise ValueError(f"Provided uri '{uri}' is not supported for writing") + return ZeroMQReceiver( + f"{parsed.scheme[4:]}://{parsed.netloc}", [parsed.path[1:]] + ) + + raise ValueError(f"Provided uri '{uri}' is not supported") diff --git a/lofar_stingray/streams/_file.py b/lofar_stingray/streams/_file.py new file mode 100644 index 0000000000000000000000000000000000000000..c7a49d8636f0bf9e82d4910e024624d664f535f1 --- /dev/null +++ b/lofar_stingray/streams/_file.py @@ -0,0 +1,30 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""FileStream""" + +import os + +from ._stream import Stream + + +class FileStream(Stream): + """File receiver""" + + def __init__(self, filename, mode=os.O_RDONLY): + self.filename = filename + self.fileno = None + self.mode = mode + super().__init__() + + def open(self): + self.fileno = os.open(self.filename, self.mode) + + def close(self): + if self.fileno: + os.close(self.fileno) + self.fileno = None + + @property + def fdesc(self): + return self.fileno diff --git a/lofar_stingray/streams/_s3.py b/lofar_stingray/streams/_s3.py new file mode 100644 index 0000000000000000000000000000000000000000..115c680cfdb44c12bf74a1f72c37066bb916cab9 --- /dev/null +++ b/lofar_stingray/streams/_s3.py @@ -0,0 +1,24 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""StorageStream""" + +import json + +from lofar_station_client.statistics.packets import StatisticsPacket + +from lofar_stingray.utils import StingrayJsonEncoder +from lofar_stingray.writer import Storage + + +class StorageStream(Storage): + """File receiver""" + + def put_packet(self, packet: StatisticsPacket): + """Write a packet to the stream, encoded as a line of JSON.""" + data = dict(packet) + self.put_json(data) + + def put_json(self, data: dict): + """Write a line of text to the stream.""" + self.write_line(json.dumps(data, cls=StingrayJsonEncoder)) diff --git a/lofar_stingray/streams/_socket.py b/lofar_stingray/streams/_socket.py new file mode 100644 index 0000000000000000000000000000000000000000..d028b7ac21b3b98fa1822f61b039bb6438493383 --- /dev/null +++ b/lofar_stingray/streams/_socket.py @@ -0,0 +1,47 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""UDP Stream""" +import socket +import logging + +from lofar_station_client.statistics.packets import StatisticsPacket + +from ._stream import Stream + +logger = logging.getLogger() + + +class SocketStream(Stream): + """Abstract Stream modelling a socket.""" + + def __init__(self): + self._fdesc: int = None + self.sock: socket.socket = None + super().__init__() + + def close(self): + if self.sock: + self.sock.close() + self.sock = None + self._fdesc = None + + def open(self): + # subclasses should set self.sock + self._fdesc = self.sock.fileno() + + def put_packet(self, packet: StatisticsPacket): + # Caller should make sure not to spam this too fast + # for the receiver to handle. + self.sock.send(packet.raw) + self.num_bytes_written += len(packet.raw) + + def reconnect(self): + """Reconnect to socket""" + self.close() + self.open() + return True + + @property + def fdesc(self): + return self._fdesc diff --git a/lofar_stingray/streams/_stream.py b/lofar_stingray/streams/_stream.py new file mode 100644 index 0000000000000000000000000000000000000000..7fd522a11d22a0da981e40732deb66bf1133e906 --- /dev/null +++ b/lofar_stingray/streams/_stream.py @@ -0,0 +1,120 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""Stream base class""" + +import os +from abc import ABC, abstractmethod +import json + +from lofar_station_client.statistics.packets import StatisticsPacket, StatisticsHeader + +from lofar_stingray.utils import StingrayJsonEncoder + + +class Stream(ABC): + """Reads data from a file descriptor.""" + + HEADER_LENGTH = 32 + + def __init__(self): + self.num_bytes_read: int = 0 + self.num_bytes_written: int = 0 + + def __enter__(self): + """Open the stream as part of a context manager.""" + self.open() + return self + + def __exit__(self, type_, value, exc): + """Close the stream as part of a context manager.""" + self.close() + return False + + def __del__(self): + # Make sure we don't leak + self.close() + + def __iter__(self): + """Iterates over all packets in the stream.""" + return self + + def __next__(self) -> StatisticsPacket: + """Return next packet.""" + try: + return self.get_packet() + except EOFError as exc: + raise StopIteration from exc + + @property + @abstractmethod + def fdesc(self): + """Provide the file descriptor for the read function""" + + def open(self): + """Obtain I/O resources. Is reentrant.""" + + def close(self): + """Release I/O resources. Is reentrant.""" + + def get_packet(self) -> StatisticsPacket: + """Read exactly one statistics packet from the stream.""" + + # read only the header, to compute the size of the packet + header_data = self.read_data(self.HEADER_LENGTH) + header = StatisticsHeader(header_data) + + # read the rest of the packet (payload) + payload_length = header.expected_size() - len(header_data) + payload = self.read_data(payload_length) + + # add payload to the header, and return the full packet + return StatisticsPacket(header, payload) + + def get_json(self) -> dict: + """Read exactly one JSON element from the stream. Return as dict.""" + + # Streams are not required to implement this + raise NotImplementedError + + def _read(self, length: int) -> bytes: + """Low-level read function to fetch at most "length" (>1) bytes. Returns + nothing if there is no data left.""" + + data = os.read(self.fdesc, length) + self.num_bytes_read += len(data) + + return data + + def read_data(self, data_length: int) -> bytes: + """Read exactly data_length bytes from the stream.""" + + data = b"" + while len(data) < data_length: + # try to read the remainder. + # NOTE: recv() may return less data than requested, and returns 0 + # if there is nothing left to read (end of stream) + more_data = self._read(data_length - len(data)) + if not more_data: + # connection got dropped + raise EOFError("End of stream") + + data += more_data + + return data + + def write_data(self, data: bytes): + """Write an amount of data to the stream.""" + + os.write(self.fdesc, data) + self.num_bytes_written += len(data) + + def put_packet(self, packet: StatisticsPacket): + """Emit a packet.""" + + # For most streams, this is in binary + self.write_data(packet.raw) + + def put_json(self, data: dict): + """Emit a dict as JSON on the stream.""" + self.write_data(json.dumps(data, cls=StingrayJsonEncoder).encode() + b"\n") diff --git a/lofar_stingray/streams/_tcp.py b/lofar_stingray/streams/_tcp.py new file mode 100644 index 0000000000000000000000000000000000000000..cb5447c34ee1bcead1dfa0fbfe0e19dbb79dbbae --- /dev/null +++ b/lofar_stingray/streams/_tcp.py @@ -0,0 +1,32 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""TCP Stream""" +import socket + +from ._socket import SocketStream + + +class TCPStream(SocketStream): + """TCP Stream""" + + def __init__(self, host, port): + self.host = host + self.port = port + super().__init__() + + def open(self): + self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + + try: + self.sock.connect((self.host, self.port)) + except OSError as ex: + raise ConnectionError( + f"Could not connect to {self.host}:{self.port}" + ) from ex + + super().open() + + def _read(self, length): + # On Windows, we cannot use os.read to read from sockets + return self.sock.recv(length) diff --git a/lofar_stingray/streams/_udp.py b/lofar_stingray/streams/_udp.py new file mode 100644 index 0000000000000000000000000000000000000000..decac9566ca1d6bd4a391f5a126628eb12a4c51b --- /dev/null +++ b/lofar_stingray/streams/_udp.py @@ -0,0 +1,97 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""UDP Stream""" +import socket +import logging + +from lofar_station_client.statistics.packets import StatisticsPacket + +from ._socket import SocketStream + +logger = logging.getLogger() + +# Maximum size of an Ethernet Jumbo frame +MAX_ETH_FRAME_SIZE = 9000 + + +class UDPStream(SocketStream): + """UDP Stream""" + + POLL_TIMEOUT = 0.1 + RECV_BUFFER_SIZE = 16 * 1024 * 1024 + + def __init__( + self, + host, + port, + writer: bool = False, + ): + self.host = host + self.port = port + self.writer = writer + super().__init__() + + def open(self): + self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + + # Allow binding even if there are still lingering packets in the kernel for a + # previous listener that already died. If not, we get an + # "Address already in use". This is stock socket usage. + self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) + + # Increase buffers to prevent data loss when our class isn't listening. + self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_RCVBUF, self.RECV_BUFFER_SIZE) + + # Check whether OS could increase buffer. NB: The kernel typically doubles + # the requested size to account for bookkeeping overhead, + # see https://linux.die.net/man/7/socket + actual_recv_buffer_size = self.sock.getsockopt( + socket.SOL_SOCKET, socket.SO_RCVBUF + ) + + if actual_recv_buffer_size < self.RECV_BUFFER_SIZE: + # Typically this is the host OS not allowing us to allocate buffers + # of this size. Try increasing it using (as root): + # sysctl -w net.core.rmem_max=$((16*1024*1024)) + logger.error( + "OS does not allow requested buffer size. " + "This could result in UDP packet loss. " + "Requested %s bytes, got %s. Verify " + 'if "sysctl net.core.rmem_max" is sufficiently large.', + self.RECV_BUFFER_SIZE, + actual_recv_buffer_size, + ) + + # specify what host and port to listen on + if self.writer: + self.sock.connect((self.host, self.port)) + else: + self.sock.bind((self.host, self.port)) + + # Make sure we can stop receiving packets even if none arrive. + # Without this, the recvmsg() call blocks indefinitely if no packet arrives. + self.sock.settimeout(self.POLL_TIMEOUT) + + super().open() + + def read_data(self, data_length) -> bytes: + # On Windows, we cannot use os.read to read from sockets + (data, _ancdata, _msg_flags, _address) = self.sock.recvmsg(data_length) + self.num_bytes_read += len(data) + + return data + + def read_message(self) -> bytes: + """Read one datagram from UDP and return its payload.""" + + while True: + try: + return self.read_data(MAX_ETH_FRAME_SIZE) + except TimeoutError: + pass + + def get_packet(self) -> StatisticsPacket: + # A packet is equal to one UDP datagram + data = self.read_message() + return StatisticsPacket.parse_packet(data) diff --git a/lofar_stingray/streams/_zmq.py b/lofar_stingray/streams/_zmq.py new file mode 100644 index 0000000000000000000000000000000000000000..f4959377726d5c11ef2e68b4d26c74f1866a8d79 --- /dev/null +++ b/lofar_stingray/streams/_zmq.py @@ -0,0 +1,85 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""ZeroMQ Receiver""" +import datetime +import json +import logging +from typing import Union, Tuple, List + +import zmq + +from lofar_station_client.zeromq.subscriber import ZeroMQSubscriber + +logger = logging.getLogger() + + +class ZeroMQReceiver(ZeroMQSubscriber): + """ZeroMQ Receiver""" + + def __init__( + self, uri: str, topics: List[str], content_type: str = "application/json" + ): + super().__init__(uri, topics) + + # pylint: disable=fixme + # TODO: pull topics from URI to create fully configurable and routable end point + self._topics = topics + self._content_type = content_type + + self.num_bytes_read = 0 + + def open(self): + """Open I/O resources""" + + def __enter__(self): + self.open() + return self + + def __exit__(self, type_, value, exc): + self.close() + return False + + def __iter__(self): + """Iterates over all packets in the stream.""" + return self + + def read_message(self) -> Tuple[str, datetime.datetime, Union[dict, str, bytes]]: + """Read a message, and return it as a (topic, timestamp, message) tuple.""" + while True: + # parse the message according to the format we publish them with + topic, timestamp, msg = self.recv() + self.num_bytes_read += len(msg) + + if self._content_type == "application/json": + return topic, timestamp, json.loads(msg.decode()) + if self._content_type == "text/plain": + return topic, timestamp, msg.decode() + + return topic, timestamp, msg + + def __next__(self) -> Union[str, bytes]: + """Read the next message.""" + try: + _topic, _timestamp, msg = self.read_message() + return msg + except zmq.ZMQError as e: + if e.errno == zmq.ETERM: + raise StopIteration from e + raise + + def get_json(self) -> dict: + """Read a message containing a JSON payload, + returned as a dict, or None if the stream was closed.""" + try: + _topic, _timestamp, msg = self.read_message() + return msg + except zmq.ZMQError as e: + if e.errno == zmq.ETERM: + return None + raise + + @property + def content_type(self): + """Returns the content type of the receiver""" + return self._content_type diff --git a/lofar_stingray/utils/_stringray_json_encoder.py b/lofar_stingray/utils/_stringray_json_encoder.py index 57b3685d8a74d5e3766a9af01ec55cc2cc966a7c..41c11c1dd01bf6c929e9e61119ed9017ead6df8a 100644 --- a/lofar_stingray/utils/_stringray_json_encoder.py +++ b/lofar_stingray/utils/_stringray_json_encoder.py @@ -14,6 +14,10 @@ class StingrayJsonEncoder(JSONEncoder): def default(self, o): if isinstance(o, numpy.ndarray): return o.tolist() + if isinstance(o, numpy.integer): + return int(o) + if isinstance(o, numpy.floating): + return float(o) if isinstance(o, datetime): return o.isoformat() return JSONEncoder.default(self, o) diff --git a/lofar_stingray/writer.py b/lofar_stingray/writer.py index 5204b91ac34ac406b27c646297f8ae7f2ea3060e..daecf92496cddaaa7b987c10659513a81c60b32e 100644 --- a/lofar_stingray/writer.py +++ b/lofar_stingray/writer.py @@ -48,10 +48,12 @@ class Storage: self.current_block: Optional[Block] = None self.prefix = prefix self.duration = duration + self.num_bytes_written = 0 self._init_bucket() def __enter__(self): self.current_block = Block(self.duration) + return self def __exit__(self, *args): if self.current_block: @@ -107,5 +109,7 @@ class Storage: self.current_block = None asyncio.run(self._complete_current_block(block)) self.current_block = Block(self.duration) - self.current_block.write(line.encode()) - self.current_block.write(b"\n") + + data = line.encode() + b"\n" + self.current_block.write(data) + self.num_bytes_written += len(data) diff --git a/requirements.txt b/requirements.txt index de2d558118c7994fef24cd958a304eb72691b15f..872d79b1bf4df5e4aa9869fdfef6fe598753f6c4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,7 @@ numpy minio~=7.1.17 -lofar-station-client>=0.19.2 # Apache 2 +lofar-station-client>=0.20 # Apache 2 setuptools~=68.2.0 logfmter # MIT +prometheus-client # Apache 2 +pyzmq>=24 # LGPL + BSD diff --git a/setup.cfg b/setup.cfg index c6f7625c1dcb6cf78bc03fb50e90c1c9ca6e92c7..d8ef1e48e998664046fe8930eb420617744da12f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,8 +30,9 @@ install_requires = file: requirements.txt [options.entry_points] console_scripts = - l2ss-stingray-record = lofar_stingray.record:main - l2ss-stingray-aggregate = lofar_stingray.aggregate:main + l2ss-stingray-forward = lofar_stingray.forward:main + l2ss-stingray-extract = lofar_stingray.extract:main + l2ss-stingray-publish = lofar_stingray.publish:main [flake8] max-line-length = 88 diff --git a/tests/aggregator/bst.json b/tests/aggregator/bst.json index 068269653e6432434ff298c669fa0ce3a57c4432..7c518b3540cab6c5f268ef0ab286262ab6c949b0 100644 --- a/tests/aggregator/bst.json +++ b/tests/aggregator/bst.json @@ -1,5 +1,2 @@ -{"marker": "B", "marker_raw": 66, "version_id": 5, "observation_id": 0, "station_id": 903, "station_info": {"_raw": 903, "station_id": 903, "antenna_field_index": 0}, "source_info": {"_raw": 4352, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 0, "subband_calibrated_flag": true}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 322860336914062, "timestamp": "2022-05-20T11:08:44.999997+00:00", "f_adc": 200, "data_id": {"beamlet_index": 0, "_raw": 0}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 0, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 976, "payload": [[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0]]} -{"marker": "B", "marker_raw": 66, "version_id": 5, "observation_id": 0, "station_id": 903, "station_info": {"_raw": 903, "station_id": 903, "antenna_field_index": 0}, "source_info": {"_raw": 4352, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": true, "beam_repositioning_flag": false, "gn_index": 0, "subband_calibrated_flag": true}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 322860336914062, "timestamp": "2022-05-20T11:08:44.999997+00:00", "f_adc": 200, "data_id": {"beamlet_index": 0, "_raw": 0}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 0, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 976, "payload": [[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0]]} -{"marker": "B", "marker_raw": 66, "version_id": 5, "observation_id": 0, "station_id": 903, "station_info": {"_raw": 903, "station_id": 903, "antenna_field_index": 0}, "source_info": {"_raw": 4352, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 0, "subband_calibrated_flag": true}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 322860337109375, "timestamp": "2022-05-20T11:08:46+00:00", "f_adc": 200, "data_id": {"beamlet_index": 0, "_raw": 0}, "integration_interval_raw": 195313, "integration_interval": 1.00000256, "nof_signal_inputs": 0, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 976, "payload": [[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0]]} -{"marker": "B", "marker_raw": 66, "version_id": 5, "observation_id": 0, "station_id": 903, "station_info": {"_raw": 903, "station_id": 903, "antenna_field_index": 0}, "source_info": {"_raw": 4352, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 0, "subband_calibrated_flag": true}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 322860337304687, "timestamp": "2022-05-20T11:08:46.999997+00:00", "f_adc": 200, "data_id": {"beamlet_index": 0, "_raw": 0}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 0, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 976, "payload": [[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0]]} -{"marker": "B", "marker_raw": 66, "version_id": 5, "observation_id": 0, "station_id": 903, "station_info": {"_raw": 903, "station_id": 903, "antenna_field_index": 0}, "source_info": {"_raw": 4352, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 0, "subband_calibrated_flag": true}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 322860337500000, "timestamp": "2022-05-20T11:08:48+00:00", "f_adc": 200, "data_id": {"beamlet_index": 0, "_raw": 0}, "integration_interval_raw": 195313, "integration_interval": 1.00000256, "nof_signal_inputs": 0, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 976, "payload": [[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0]]} +{"marker": "B", "marker_raw": 66, "version_id": 5, "observation_id": 0, "station_id": 903, "station_info": {"_raw": 903, "station_id": 903, "antenna_field_index": 0}, "source_info": {"_raw": 4352, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 0, "subband_calibrated_flag": true}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 322860336914062, "timestamp": "2022-05-20T11:08:44.999997+00:00", "f_adc": 200, "data_id": {"beamlet_index": 0, "_raw": 0}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 0, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 976, "payload": [[1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1], [1, 1]]} +{"marker": "B", "marker_raw": 66, "version_id": 5, "observation_id": 0, "station_id": 903, "station_info": {"_raw": 903, "station_id": 903, "antenna_field_index": 0}, "source_info": {"_raw": 4352, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": true, "beam_repositioning_flag": false, "gn_index": 0, "subband_calibrated_flag": true}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 322860336914062, "timestamp": "2022-05-20T11:08:44.999997+00:00", "f_adc": 200, "data_id": {"beamlet_index": 0, "_raw": 0}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 0, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 976, "payload": [[2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2], [2, 2]]} diff --git a/tests/aggregator/sst.json b/tests/aggregator/sst.json index c0ae17148af651711c97e3f41df80c6fee4a7751..c798746a034aea46f0d8b58a8299de67818faaa2 100644 --- a/tests/aggregator/sst.json +++ b/tests/aggregator/sst.json @@ -1,15 +1,3 @@ -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": true, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [116998171589, 4257956, 669546768, 2678914, 2472882, 2341764, 2924101515, 2222861, 2171613, 2133114, 1944388675, 2114814, 2049693, 2044058, 571746331, 2045645, 2044499, 2026597, 2894741843, 2017244, 2031007, 2020720, 603902304, 2015600, 2011692, 2015395, 2380461860, 2061740, 2036307, 2052520, 964725380, 2066505, 2056838, 2091980, 797655669, 2104601, 2113860, 2137842, 2794059828, 2134489, 2148553, 2172013, 1155292646, 2208511, 2222735, 2243212, 4078937510, 2259015, 2286431, 2294252, 1855537962, 2362642, 2315471, 2388580, 2042227919, 2424401, 2430469, 2465534, 8520527951, 2528857, 2520737, 2581825, 1015946356, 2583142, 2611525, 2664332, 6563362496, 2664470, 2685759, 2749736, 3810949243, 2741908, 2746297, 2799991, 4839927188, 2831194, 2838028, 2900115, 7138303172, 2975702, 2980891, 3002672, 3605967289, 3068870, 3019721, 3111187, 13211475701, 3218414, 3146563, 3271343, 38143579221, 3311173, 3479123, 3343356, 81144087944, 3418308, 3383568, 3450772, 12634577373, 3438686, 3449271, 3584766, 225553256588, 3631661, 3752365, 3573051, 46286995797, 3675134, 3691799, 3711460, 24667665355, 3794559, 3731495, 3796163, 75345384251, 3899639, 3828033, 3890364, 12535623339, 3905353, 3823934, 3899626, 20758853030, 3969365, 3984524, 3940922, 16598539496, 3971200, 3966135, 3988195, 12351147371, 4086280, 4097706, 4083578, 38610380599, 4107970, 4156064, 4120577, 5526573866, 4223994, 4240632, 4197606, 6273489441, 4245965, 4247402, 4256936, 7698301411, 4354058, 4332696, 4335061, 5551758651, 4405587, 4393823, 4401163, 1719301883, 4463799, 4442702, 4456721, 5039700029, 4518854, 4479425, 4495280, 1237124252, 4567243, 4567383, 4599361, 4953038250, 4670260, 4650382, 4653096, 1088764163, 4697736, 4678339, 4674760, 5245853946, 4759512, 4736992, 4769103, 10115167136, 4809380, 4781552, 4814288, 5153315271, 4870406, 4853261, 4853189, 1894285455, 4909533, 4905517, 4884501, 4252090416, 4959510, 4867675, 4898071, 670942329, 4929100, 4997328, 4904223, 1065469488, 4946270, 5017702, 4902997, 883799273, 4934302, 262235879, 4891189, 873027821, 4882036, 4932807, 4867257, 7603850091, 4892020, 4852682, 4851006, 809671495, 4826325, 4811386, 4787204, 1545075225, 4819722, 4778443, 4743581, 5387283688, 4739920, 4705242, 4701643, 2049363181, 4701648, 4691939, 4676168, 919976636, 4667798, 4635199, 4636635, 4034108563, 4654453, 4594230, 4581775, 1005393347, 4598499, 4581189, 4568531, 1859627740, 4565414, 4534075, 4540727, 1259509833, 4544600, 4527823, 4528098, 1638480158, 4513465, 4497241, 4494992, 7253714502, 4507936, 4413132, 4472711, 6455651608, 4474253, 4472216, 4467393, 1240165203, 4475989, 4465450, 4462418, 10506030534, 4462364, 4441935, 4454801, 981583709, 4465055, 4436086, 4462955, 2968789574, 4459771, 4441246, 4454585, 1233598928, 4471592, 4429474, 4469228, 7542355258, 4451770, 4451014, 4457044, 23606916079, 4477467, 4432688, 4444464, 12764768000, 4464607, 4454595, 4455613, 9043813566, 4462413, 4470288, 4472122, 37549019539, 4473242, 4467504, 4461019, 95233273286, 4458343, 4492153, 4485939, 250344852180, 4505690, 4425873, 4499171, 37062245886, 4496969, 4494505, 4533255, 88529556140, 4544530, 4510669, 4535247, 158522080711, 4558820, 4528861, 4543676, 6539987832, 4556915, 4554089, 4553482, 8128576867, 4578557, 4592468, 4604833, 7769834618, 4591047, 4574684, 4640960, 628942361, 4629213, 4623187, 4645469, 9156255322, 4676509, 4657364, 4674446, 4090281395, 4684629, 4709322, 4695951, 1845554143, 4719283, 4734638, 4733150, 5001049347, 4754580, 4722223, 4762469, 914388499, 4784975, 4768536, 4819219, 1830515820, 4818181, 4800861, 4810042, 1087823173, 4844672, 4849743, 4860025, 656981028, 4898132, 4873634, 4903916, 3741134221, 4928340, 4894380, 4936678, 2423364416, 4957698, 4966960, 4965287, 1457706901, 4999365, 5009783, 5023528, 1671286136, 5029558, 4952430, 5051391, 770623147, 5070285, 5077880, 5114129, 977924345, 5112136, 5121517, 5134332, 3046454825, 5166924, 5149212, 5156698, 2146109672, 5188613, 5191667, 5244201, 898703945, 5236225, 5218349, 5265465, 1353173534, 5271609, 6123922, 5301858, 719013265, 5315384, 5477734, 5353170, 3629926821, 5349669, 5454854, 5367615, 890222853, 5390446, 5391707, 5371766, 614793492, 5405680, 5417171, 5434309, 4060670514, 5472657, 5453670, 5471078, 951986771, 5500981, 5501265, 5507694, 3925203949, 5525392, 5472793, 5540045, 631063091, 5527990, 5542393, 5543439, 1821978326, 5532690, 5557274, 5553025, 6121128501, 5589728, 5569216, 5576399, 668687696, 5648432, 5548419, 5580806, 4513427181, 5590779, 5588982, 5600938, 3648990203, 5606948, 5515357, 5588955, 3743842129, 5590071, 5564075, 5598111, 787619582, 5603241, 5601792, 5610831, 4977373882, 5594113, 5581115, 5587253, 4515177596, 5599856, 5563809, 5583356, 16941233320, 5583321, 5550794, 5589240, 14008458632, 5560601, 5569112, 5569307, 19800862179, 5590522, 5578307, 5557512, 94483380563, 5565795, 5526716, 5556897, 26094931806, 5560646, 5529082, 5548959, 20926756485, 5547671, 5498725, 5543475, 238754388693, 5559166, 5535917, 5544880, 13307328645, 5543090, 5508499, 5551279, 127772752452, 5547626]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [116998171589, 4257956, 669546768, 2678914, 2472882, 2341764, 2924101515, 2222861, 2171613, 2133114, 1944388675, 2114814, 2049693, 2044058, 571746331, 2045645, 2044499, 2026597, 2894741843, 2017244, 2031007, 2020720, 603902304, 2015600, 2011692, 2015395, 2380461860, 2061740, 2036307, 2052520, 964725380, 2066505, 2056838, 2091980, 797655669, 2104601, 2113860, 2137842, 2794059828, 2134489, 2148553, 2172013, 1155292646, 2208511, 2222735, 2243212, 4078937510, 2259015, 2286431, 2294252, 1855537962, 2362642, 2315471, 2388580, 2042227919, 2424401, 2430469, 2465534, 8520527951, 2528857, 2520737, 2581825, 1015946356, 2583142, 2611525, 2664332, 6563362496, 2664470, 2685759, 2749736, 3810949243, 2741908, 2746297, 2799991, 4839927188, 2831194, 2838028, 2900115, 7138303172, 2975702, 2980891, 3002672, 3605967289, 3068870, 3019721, 3111187, 13211475701, 3218414, 3146563, 3271343, 38143579221, 3311173, 3479123, 3343356, 81144087944, 3418308, 3383568, 3450772, 12634577373, 3438686, 3449271, 3584766, 225553256588, 3631661, 3752365, 3573051, 46286995797, 3675134, 3691799, 3711460, 24667665355, 3794559, 3731495, 3796163, 75345384251, 3899639, 3828033, 3890364, 12535623339, 3905353, 3823934, 3899626, 20758853030, 3969365, 3984524, 3940922, 16598539496, 3971200, 3966135, 3988195, 12351147371, 4086280, 4097706, 4083578, 38610380599, 4107970, 4156064, 4120577, 5526573866, 4223994, 4240632, 4197606, 6273489441, 4245965, 4247402, 4256936, 7698301411, 4354058, 4332696, 4335061, 5551758651, 4405587, 4393823, 4401163, 1719301883, 4463799, 4442702, 4456721, 5039700029, 4518854, 4479425, 4495280, 1237124252, 4567243, 4567383, 4599361, 4953038250, 4670260, 4650382, 4653096, 1088764163, 4697736, 4678339, 4674760, 5245853946, 4759512, 4736992, 4769103, 10115167136, 4809380, 4781552, 4814288, 5153315271, 4870406, 4853261, 4853189, 1894285455, 4909533, 4905517, 4884501, 4252090416, 4959510, 4867675, 4898071, 670942329, 4929100, 4997328, 4904223, 1065469488, 4946270, 5017702, 4902997, 883799273, 4934302, 262235879, 4891189, 873027821, 4882036, 4932807, 4867257, 7603850091, 4892020, 4852682, 4851006, 809671495, 4826325, 4811386, 4787204, 1545075225, 4819722, 4778443, 4743581, 5387283688, 4739920, 4705242, 4701643, 2049363181, 4701648, 4691939, 4676168, 919976636, 4667798, 4635199, 4636635, 4034108563, 4654453, 4594230, 4581775, 1005393347, 4598499, 4581189, 4568531, 1859627740, 4565414, 4534075, 4540727, 1259509833, 4544600, 4527823, 4528098, 1638480158, 4513465, 4497241, 4494992, 7253714502, 4507936, 4413132, 4472711, 6455651608, 4474253, 4472216, 4467393, 1240165203, 4475989, 4465450, 4462418, 10506030534, 4462364, 4441935, 4454801, 981583709, 4465055, 4436086, 4462955, 2968789574, 4459771, 4441246, 4454585, 1233598928, 4471592, 4429474, 4469228, 7542355258, 4451770, 4451014, 4457044, 23606916079, 4477467, 4432688, 4444464, 12764768000, 4464607, 4454595, 4455613, 9043813566, 4462413, 4470288, 4472122, 37549019539, 4473242, 4467504, 4461019, 95233273286, 4458343, 4492153, 4485939, 250344852180, 4505690, 4425873, 4499171, 37062245886, 4496969, 4494505, 4533255, 88529556140, 4544530, 4510669, 4535247, 158522080711, 4558820, 4528861, 4543676, 6539987832, 4556915, 4554089, 4553482, 8128576867, 4578557, 4592468, 4604833, 7769834618, 4591047, 4574684, 4640960, 628942361, 4629213, 4623187, 4645469, 9156255322, 4676509, 4657364, 4674446, 4090281395, 4684629, 4709322, 4695951, 1845554143, 4719283, 4734638, 4733150, 5001049347, 4754580, 4722223, 4762469, 914388499, 4784975, 4768536, 4819219, 1830515820, 4818181, 4800861, 4810042, 1087823173, 4844672, 4849743, 4860025, 656981028, 4898132, 4873634, 4903916, 3741134221, 4928340, 4894380, 4936678, 2423364416, 4957698, 4966960, 4965287, 1457706901, 4999365, 5009783, 5023528, 1671286136, 5029558, 4952430, 5051391, 770623147, 5070285, 5077880, 5114129, 977924345, 5112136, 5121517, 5134332, 3046454825, 5166924, 5149212, 5156698, 2146109672, 5188613, 5191667, 5244201, 898703945, 5236225, 5218349, 5265465, 1353173534, 5271609, 6123922, 5301858, 719013265, 5315384, 5477734, 5353170, 3629926821, 5349669, 5454854, 5367615, 890222853, 5390446, 5391707, 5371766, 614793492, 5405680, 5417171, 5434309, 4060670514, 5472657, 5453670, 5471078, 951986771, 5500981, 5501265, 5507694, 3925203949, 5525392, 5472793, 5540045, 631063091, 5527990, 5542393, 5543439, 1821978326, 5532690, 5557274, 5553025, 6121128501, 5589728, 5569216, 5576399, 668687696, 5648432, 5548419, 5580806, 4513427181, 5590779, 5588982, 5600938, 3648990203, 5606948, 5515357, 5588955, 3743842129, 5590071, 5564075, 5598111, 787619582, 5603241, 5601792, 5610831, 4977373882, 5594113, 5581115, 5587253, 4515177596, 5599856, 5563809, 5583356, 16941233320, 5583321, 5550794, 5589240, 14008458632, 5560601, 5569112, 5569307, 19800862179, 5590522, 5578307, 5557512, 94483380563, 5565795, 5526716, 5556897, 26094931806, 5560646, 5529082, 5548959, 20926756485, 5547671, 5498725, 5543475, 238754388693, 5559166, 5535917, 5544880, 13307328645, 5543090, 5508499, 5551279, 127772752452, 5547626]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [390049355884, 4214585, 1978253233, 2690039, 2462203, 2330220, 2160851348, 2187386, 2138403, 2085639, 1970173706, 2194933, 2031404, 2006079, 2306725051, 2028200, 2044665, 2038611, 2218367972, 2031974, 2053092, 2009907, 1474343124, 1997878, 1999817, 2005454, 1445807704, 2124725, 2040237, 2027777, 1890352422, 2055740, 2017321, 2101327, 1359325651, 2036460, 2055128, 2075349, 2011594996, 1999961, 2028123, 2103656, 4880995414, 1976425, 1979538, 1977314, 1618596162, 1983405, 1996784, 1991370, 1272076643, 2042966, 1990672, 1990225, 3523697934, 2043225, 2017164, 2042315, 4078569551, 2076430, 2044882, 2059866, 4191305015, 1956849, 1998834, 2024906, 4709273889, 1940607, 1969430, 2014384, 2655167089, 1905141, 1910908, 1923031, 5174631909, 1902055, 1889010, 1901202, 4632960389, 1923009, 1920991, 1879227, 4528044856, 1903664, 1878279, 1889597, 20039982023, 1888963, 1868538, 1879601, 12579807342, 1893840, 1909436, 1888012, 9788000826, 1880568, 1880394, 1883738, 451637257317, 1873659, 1865445, 1886890, 112477485896, 1884858, 1881885, 1859564, 11068769442, 1864993, 1864272, 1857016, 95756059192, 1875412, 1859102, 1859012, 80864381895, 1853680, 1844495, 1852699, 8965805433, 1850789, 1841424, 1853293, 2862415780, 1851019, 1841569, 1848644, 1751020657, 1838652, 1818649, 1835867, 4457973352, 1834721, 1836269, 1845436, 4909329626, 1827470, 1848128, 1832371, 1846923042, 1842509, 1828133, 1830586, 4212736595, 1831345, 1829871, 1833227, 1257878688, 1833751, 1828110, 1832289, 3427659967, 1828975, 1829932, 1818673, 2127181668, 1825128, 1823787, 1829601, 5344711818, 1825287, 1814342, 1829094, 1838176343, 1823501, 1816723, 1830269, 1431359797, 1820217, 1822176, 1826214, 3009027406, 1833872, 1824429, 1820495, 1407911545, 1818331, 1818277, 1823474, 2013271897, 1825260, 1812028, 1818268, 2151758275, 1825553, 1823203, 1822172, 1885001183, 1825791, 1817652, 1826448, 1446764918, 1817204, 1811179, 1826384, 1708313019, 1819174, 1851690, 1824714, 2904150748, 1819529, 1900774, 1820310, 1334521946, 1830180, 19514016, 1820086, 1808178052, 1828260, 1856629, 1823847, 3687048721, 1824127, 1822791, 1824122, 1933826316, 1820620, 1826159, 1819804, 1564659292, 1825730, 1808306, 1821617, 1721076455, 1817964, 1815638, 1820959, 1397544357, 1813515, 1832545, 1826728, 2283693884, 1831843, 1824021, 1823035, 1741324415, 1823997, 1822727, 1822201, 1690538372, 1825727, 1825289, 1828475, 1897589209, 1820974, 1814667, 1818527, 1448841655, 1819031, 1817212, 1828539, 2433668893, 1824663, 1819997, 1823869, 3637513778, 1819299, 1790793, 1825213, 2773565824, 1824310, 1818194, 1830002, 2362765734, 1825336, 1818274, 1819766, 10439315686, 1818412, 1813573, 1824064, 5308808129, 1820455, 1818355, 1825984, 2848571292, 1833275, 1823933, 1824059, 2212400222, 1818849, 1818439, 1818812, 9619532935, 1829472, 1821772, 1820640, 4408988335, 1825337, 1810809, 1829982, 2323099463, 1828656, 1819020, 1827465, 2462375249, 1829256, 1814883, 1830493, 19462354387, 1818689, 1822582, 1833428, 20089341539, 1821667, 1818509, 1828234, 3339066251, 1824663, 1796667, 1823908, 1061677486702, 1824068, 1821491, 1828058, 57043373586, 1821793, 1821610, 1826648, 14394968105, 1824563, 1811698, 1823023, 27830678042, 1823162, 1828688, 1815299, 8753236105, 1817108, 1813919, 1822603, 9505606971, 1824881, 1807225, 1823168, 13770252000, 1819977, 1812769, 1824709, 3727367979, 1827995, 1814860, 1829307, 5148685632, 1810239, 1816411, 1819975, 3012799038, 1826417, 1818632, 1820733, 5297096685, 1821122, 1821170, 1825259, 2365179113, 1820197, 1811164, 1831541, 1666365100, 1823313, 1824395, 1817186, 2211363225, 1820424, 1826746, 1829560, 2172035431, 1824408, 1811236, 1815348, 2456464650, 1823409, 1811641, 1820294, 1336229996, 1830113, 1818242, 1825211, 1862821876, 1826328, 1818837, 1823363, 2070613839, 1821809, 1798280, 1819279, 1524276108, 1822102, 1817836, 1824172, 2969067620, 1819925, 1822554, 1816195, 1316678813, 1824731, 1823680, 1812206, 1913999412, 1818746, 1821358, 1813081, 2991080813, 1817316, 1827799, 1822300, 1562184841, 1822632, 1926283, 1816067, 2678903372, 1814268, 1817207, 1813596, 1302050845, 1814822, 1870759, 1811637, 1306577758, 1813481, 1809250, 1816586, 3334087495, 1818159, 1813246, 1813514, 1252976406, 1820340, 1813087, 1815318, 2241436586, 1813932, 1827471, 1812617, 2870421165, 1824950, 1816635, 1817086, 1246585223, 1816870, 1818606, 1815710, 1750321500, 1814634, 1813258, 1814791, 1707108788, 1818527, 1803010, 1821797, 2178605772, 1809407, 1813272, 1813661, 1432515023, 1823082, 1812834, 1818297, 2577583340, 1815877, 1795209, 1816420, 1788637185, 1817184, 1806951, 1825705, 5279489308, 1819209, 1815862, 1809379, 4308462852, 1815757, 1812232, 1817704, 1849692780, 1815861, 1816255, 1813823, 2958482772, 1816149, 1801628, 1810727, 9921915995, 1812862, 1808715, 1812897, 10621676557, 1816020, 1812666, 1814420, 8471265180, 1819888, 1815876, 1818493, 5852927474, 1817500, 1809369, 1814941, 7597988418, 1816310, 1809129, 1820173, 80063936507, 1816805, 1807638, 1816440, 7080751376, 1819222, 1811946, 1819696, 464513040087, 1809530]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [159920345330, 4833856, 376738889, 2885765, 2699333, 2499454, 556137592, 2401737, 2436175, 2323275, 767795728, 2538723, 2330275, 2286159, 845791636, 2341107, 2365824, 2367152, 710984815, 2363337, 2403736, 2347727, 460271937, 2326000, 2342005, 2342716, 342568940, 2527949, 2384143, 2402653, 580423108, 2417110, 2376654, 2506198, 1195078338, 2406656, 2440906, 2473772, 1993746105, 2354321, 2397836, 2528836, 2546116298, 2332688, 2367437, 2328729, 2619685259, 2326537, 2357465, 2368873, 2097552047, 2437076, 2355220, 2364575, 1257523373, 2432491, 2396754, 2441234, 563966030, 2481212, 2448865, 2451379, 353588952, 2288984, 2370479, 2423000, 635061884, 2279888, 2317973, 2384724, 1017973660, 2224524, 2240811, 2269256, 949135850, 2221365, 2210493, 2230145, 443181324, 2252276, 2248629, 2220992, 840587436, 2219064, 2188101, 2201864, 6209287862, 2206015, 2186373, 2214409, 27042997757, 2197071, 2234427, 2225189, 96747461915, 2187527, 2194348, 2197092, 436047983241, 2182486, 2168797, 2214270, 188363648243, 2198960, 2225082, 2172897, 474608742766, 2181736, 2168968, 2180185, 59054243490, 2173048, 2158057, 2168015, 8531717641, 2160107, 2143436, 2176054, 623277238, 2147814, 2145210, 2152192, 729442321, 2169274, 2149788, 2154671, 1383912354, 2133509, 2096862, 2137174, 1189627466, 2142345, 2139821, 2151473, 588021172, 2130245, 2133754, 2137300, 351729986, 2145993, 2140727, 2125484, 855554434, 2116399, 2106271, 2140724, 1900493548, 2131495, 2124502, 2122943, 2944662857, 2119638, 2124990, 2129018, 3468076803, 2116472, 2117272, 2116469, 3256900595, 2121089, 2110909, 2124971, 2457705722, 2115670, 2110690, 2115669, 1471585228, 2122941, 2112520, 2120851, 720025501, 2112745, 2107197, 2118603, 375754541, 2123224, 2109218, 2115266, 365902035, 2116407, 2098180, 2126451, 470210760, 2130021, 2117105, 2110174, 497011926, 2122897, 2121557, 2119401, 411089691, 2121539, 2101584, 2109996, 341906876, 2122628, 2120687, 2125054, 465673632, 2128442, 2187426, 2115705, 859584298, 2122829, 26591027, 2123718, 1425243405, 2111116, 2188875, 2100505, 1921254598, 2126453, 2166271, 2114917, 2112209668, 2110725, 2122794, 2115516, 1900417859, 2122070, 2123348, 2116703, 1397059101, 2113612, 2101444, 2122254, 842733564, 2117335, 2110034, 2112641, 468114331, 2121324, 2116804, 2115225, 346609790, 2117040, 2115340, 2115875, 382527638, 2122314, 2110297, 2124261, 405030973, 2123628, 2120075, 2122476, 353258847, 2128522, 2115882, 2133441, 393382883, 2121124, 2121150, 2126512, 889100455, 2122516, 2044255, 2126495, 2202732047, 2120299, 2117329, 2128486, 4408436163, 2130294, 2129524, 2132421, 7106135293, 2134903, 2116687, 2132597, 9488799901, 2130004, 2113940, 2114240, 10620166514, 2119164, 2121707, 2132020, 9976502653, 2125381, 2121398, 2126595, 7589066919, 2128135, 2128286, 2124370, 4392233675, 2125470, 2099792, 2133919, 1670625825, 2129768, 2132074, 2131272, 422174443, 2125181, 2115502, 2129046, 468753990, 2130268, 2129786, 2123553, 391548350, 2123555, 2108717, 2131029, 164410317115, 2131522, 2091809, 2131193, 174580298851, 2130591, 2123283, 2134789, 83597308542, 2138377, 2135162, 2132429, 63559341965, 2134315, 2101449, 2149032, 49692593903, 2136435, 2128025, 2147264, 36407050234, 2141741, 2134204, 2158049, 24015374571, 2133504, 2118333, 2148870, 13763451116, 2143478, 2135381, 2158437, 6586256930, 2135167, 2126652, 2154003, 2471232377, 2142920, 2140671, 2143814, 750616356, 2136914, 2153648, 2155965, 349958759, 2144756, 2122200, 2143235, 387274039, 2135318, 2142073, 2154684, 396234379, 2154598, 2139798, 2150062, 351213347, 2147857, 2147939, 2154798, 452335127, 2144970, 2131231, 2147765, 855331132, 2146646, 2138737, 2151749, 1492676694, 2150319, 2140770, 2152698, 2110847638, 2162693, 2145176, 2166887, 2407110391, 2144581, 2111335, 2154163, 2240722839, 2162707, 2160636, 2164158, 1687368335, 2159840, 2155058, 2173014, 1019900941, 2171505, 2150509, 2165197, 521223034, 2165235, 2148100, 2164040, 342893892, 2166096, 2161976, 2165520, 427691436, 2160785, 2237614, 2171461, 586179412, 2170663, 2658005, 2164081, 636384521, 2174239, 2134938, 2167287, 528574666, 2161757, 2167248, 2165242, 380716724, 2166832, 2164469, 2169479, 368873249, 2165233, 2184507, 2172397, 597494722, 2175134, 2158861, 2166864, 998675059, 2173768, 2157969, 2170004, 1358208226, 2167573, 2163583, 2180345, 1434746130, 2176785, 2170646, 2179685, 1158569020, 2164381, 2145738, 2182784, 686171176, 2185817, 2172108, 2184902, 360917425, 2163997, 2162778, 2167258, 473839880, 2187297, 2134864, 2176569, 1076544664, 2170696, 2160399, 2176679, 1867864113, 2179738, 2168155, 2185614, 2354648410, 2182165, 2174638, 2169457, 2129193321, 2176802, 2179155, 2175963, 1255766616, 2174332, 2158179, 2171650, 416453115, 2181459, 2167904, 2182259, 778068521, 2179488, 2166865, 2174522, 3518535883, 2180651, 2167011, 2174866, 9242055766, 2177623, 2168479, 2176134, 17543438014, 2176211, 2170917, 2173478, 26817464504, 2178094, 2164878, 2182430, 34916703006, 2186795, 2165231, 2173780, 40019122423, 2166935]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394531250, "timestamp": "2021-09-20T12:17:40+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} {"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394726562, "timestamp": "2021-09-20T12:17:40.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118174500342, 4248876, 679874756, 2671774, 2472221, 2353143, 2880585770, 2218103, 2179900, 2140895, 1937488588, 2094326, 2062040, 2044526, 566106209, 2044021, 2037883, 2025740, 2853688242, 2019429, 2025556, 2025935, 599553972, 2022072, 2014624, 2021447, 2367104921, 2060949, 2043540, 2057062, 954405112, 2063247, 2057351, 2081860, 789546005, 2097215, 2115017, 2127288, 2754282795, 2139859, 2153788, 2178130, 1134911579, 2212874, 2214057, 2251236, 4124644843, 2259401, 2284009, 2307245, 1823810643, 2360663, 2321630, 2382045, 2061270413, 2416093, 2427001, 2465529, 8565519716, 2535321, 2518401, 2584177, 999043908, 2572852, 2611039, 2649067, 6526569149, 2679874, 2680786, 2738077, 3824823814, 2750651, 2748371, 2811226, 4793089692, 2831984, 2844158, 2905572, 7183078481, 2976792, 2978884, 2996620, 3600733906, 3070176, 3015736, 3118135, 13287494421, 3207835, 3144380, 3265002, 38278559017, 3297913, 3479973, 3357216, 81384085587, 3427392, 3388878, 3435274, 12690509301, 3431416, 3447595, 3579386, 225498951524, 3633201, 3753101, 3565896, 46126814637, 3685589, 3682254, 3690570, 24670590868, 3817335, 3737172, 3775902, 75283225868, 3881239, 3827395, 3862924, 12495287604, 3887455, 3826376, 3870671, 20767784595, 3971715, 3969815, 3941562, 16520926368, 3978125, 3963003, 3982080, 12308861552, 4057392, 4089574, 4080860, 38507185607, 4108010, 4161576, 4122846, 5479328477, 4219098, 4258706, 4222560, 6237314872, 4245854, 4256596, 4261338, 7654105409, 4347870, 4327508, 4331527, 5511722324, 4387167, 4370366, 4397115, 1732070375, 4453825, 4438303, 4458930, 5022421915, 4528464, 4481948, 4514447, 1237636898, 4568422, 4546091, 4582637, 4935775082, 4657297, 4619919, 4644294, 1090976752, 4702282, 4670433, 4705138, 5212331452, 4781851, 4736886, 4750857, 10074792840, 4824176, 4772654, 4806227, 5119676587, 4887343, 4873494, 4853891, 1878011231, 4895425, 4876758, 4889340, 4233875857, 4921896, 4857629, 4895787, 667529941, 4957833, 4989911, 4913285, 1071176860, 4958420, 5046256, 4897596, 887490108, 4914688, 261932617, 4916119, 869942468, 4905999, 4953334, 4863985, 7598674067, 4881532, 4862778, 4812451, 807426427, 4813623, 4824810, 4771846, 1540457499, 4793970, 4772177, 4754546, 5355390496, 4737908, 4738922, 4722000, 2043576162, 4710454, 4684893, 4661781, 923000095, 4681481, 4642249, 4621708, 4007798278, 4655676, 4615623, 4604763, 1013240976, 4601591, 4560406, 4555094, 1877084789, 4575314, 4544522, 4539950, 1265046164, 4528814, 4522430, 4514155, 1645984409, 4499018, 4492887, 4497865, 7231169267, 4513534, 4389984, 4489839, 6444419979, 4473382, 4477572, 4479770, 1251604378, 4486033, 4483343, 4452062, 10464007005, 4452001, 4444756, 4454932, 985327401, 4445278, 4424192, 4445589, 2989926169, 4445324, 4456196, 4452835, 1219362567, 4464094, 4437446, 4458942, 7530933221, 4458442, 4460629, 4457773, 23672714752, 4450669, 4423262, 4463641, 12720510431, 4471485, 4461450, 4439001, 9073079615, 4462429, 4466453, 4457911, 37569547229, 4492327, 4459084, 4479888, 95166259433, 4458583, 4466515, 4502594, 250405973965, 4505909, 4417512, 4495983, 37179638458, 4520902, 4516887, 4523328, 88637515055, 4535456, 4528524, 4536936, 158319083608, 4552505, 4516367, 4544387, 6579229180, 4569459, 4554343, 4582901, 8148258175, 4588265, 4592447, 4600069, 7737762862, 4615225, 4572531, 4618298, 634901800, 4634202, 4611924, 4652351, 9174666483, 4660804, 4644040, 4665444, 4065598200, 4700327, 4705258, 4697127, 1846409753, 4711840, 4709234, 4731525, 4975220149, 4737946, 4731129, 4750260, 909210056, 4781338, 4786539, 4796297, 1844311786, 4806189, 4814363, 4815659, 1079985166, 4868557, 4822128, 4865812, 653864243, 4892538, 4865789, 4930900, 3764744837, 4926646, 4903892, 4934157, 2408721746, 4956107, 4962779, 4987135, 1458605202, 4996717, 4989125, 5015673, 1678894731, 5039134, 4982557, 5069935, 765899201, 5086683, 5068715, 5084126, 967145929, 5134532, 5140496, 5120967, 3036539464, 5146587, 5157522, 5160483, 2136412605, 5213785, 5204384, 5216827, 897773029, 5239178, 5230063, 5255777, 1356218568, 5271244, 6114489, 5288724, 725002360, 5301799, 5500031, 5348936, 3664093356, 5354332, 5453532, 5365562, 898069589, 5400353, 5393140, 5407714, 609236104, 5423426, 5420220, 5460135, 4065434661, 5439008, 5442763, 5476087, 946857617, 5476522, 5470531, 5502079, 3895312912, 5518037, 5472161, 5525484, 626998156, 5543609, 5517981, 5524186, 1812787576, 5571763, 5527315, 5571393, 6145750630, 5578282, 5566835, 5577402, 665169382, 5636309, 5574375, 5595941, 4543851253, 5594131, 5595556, 5615715, 3682612744, 5592073, 5541537, 5584642, 3786713441, 5597890, 5576280, 5610751, 783877396, 5590282, 5560452, 5594780, 4996336001, 5601399, 5562581, 5588376, 4491903068, 5607503, 5581687, 5569217, 16894627650, 5585687, 5529752, 5564515, 13943663243, 5575911, 5572019, 5565775, 19810020394, 5546931, 5564690, 5585734, 94433713321, 5558870, 5562965, 5541215, 26175364761, 5543454, 5522297, 5563859, 20972657489, 5544418, 5505652, 5551469, 239086576085, 5554848, 5532776, 5552614, 13297891242, 5534594, 5535017, 5519003, 128035163225, 5514898]} {"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394726562, "timestamp": "2021-09-20T12:17:40.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118174500342, 4248876, 679874756, 2671774, 2472221, 2353143, 2880585770, 2218103, 2179900, 2140895, 1937488588, 2094326, 2062040, 2044526, 566106209, 2044021, 2037883, 2025740, 2853688242, 2019429, 2025556, 2025935, 599553972, 2022072, 2014624, 2021447, 2367104921, 2060949, 2043540, 2057062, 954405112, 2063247, 2057351, 2081860, 789546005, 2097215, 2115017, 2127288, 2754282795, 2139859, 2153788, 2178130, 1134911579, 2212874, 2214057, 2251236, 4124644843, 2259401, 2284009, 2307245, 1823810643, 2360663, 2321630, 2382045, 2061270413, 2416093, 2427001, 2465529, 8565519716, 2535321, 2518401, 2584177, 999043908, 2572852, 2611039, 2649067, 6526569149, 2679874, 2680786, 2738077, 3824823814, 2750651, 2748371, 2811226, 4793089692, 2831984, 2844158, 2905572, 7183078481, 2976792, 2978884, 2996620, 3600733906, 3070176, 3015736, 3118135, 13287494421, 3207835, 3144380, 3265002, 38278559017, 3297913, 3479973, 3357216, 81384085587, 3427392, 3388878, 3435274, 12690509301, 3431416, 3447595, 3579386, 225498951524, 3633201, 3753101, 3565896, 46126814637, 3685589, 3682254, 3690570, 24670590868, 3817335, 3737172, 3775902, 75283225868, 3881239, 3827395, 3862924, 12495287604, 3887455, 3826376, 3870671, 20767784595, 3971715, 3969815, 3941562, 16520926368, 3978125, 3963003, 3982080, 12308861552, 4057392, 4089574, 4080860, 38507185607, 4108010, 4161576, 4122846, 5479328477, 4219098, 4258706, 4222560, 6237314872, 4245854, 4256596, 4261338, 7654105409, 4347870, 4327508, 4331527, 5511722324, 4387167, 4370366, 4397115, 1732070375, 4453825, 4438303, 4458930, 5022421915, 4528464, 4481948, 4514447, 1237636898, 4568422, 4546091, 4582637, 4935775082, 4657297, 4619919, 4644294, 1090976752, 4702282, 4670433, 4705138, 5212331452, 4781851, 4736886, 4750857, 10074792840, 4824176, 4772654, 4806227, 5119676587, 4887343, 4873494, 4853891, 1878011231, 4895425, 4876758, 4889340, 4233875857, 4921896, 4857629, 4895787, 667529941, 4957833, 4989911, 4913285, 1071176860, 4958420, 5046256, 4897596, 887490108, 4914688, 261932617, 4916119, 869942468, 4905999, 4953334, 4863985, 7598674067, 4881532, 4862778, 4812451, 807426427, 4813623, 4824810, 4771846, 1540457499, 4793970, 4772177, 4754546, 5355390496, 4737908, 4738922, 4722000, 2043576162, 4710454, 4684893, 4661781, 923000095, 4681481, 4642249, 4621708, 4007798278, 4655676, 4615623, 4604763, 1013240976, 4601591, 4560406, 4555094, 1877084789, 4575314, 4544522, 4539950, 1265046164, 4528814, 4522430, 4514155, 1645984409, 4499018, 4492887, 4497865, 7231169267, 4513534, 4389984, 4489839, 6444419979, 4473382, 4477572, 4479770, 1251604378, 4486033, 4483343, 4452062, 10464007005, 4452001, 4444756, 4454932, 985327401, 4445278, 4424192, 4445589, 2989926169, 4445324, 4456196, 4452835, 1219362567, 4464094, 4437446, 4458942, 7530933221, 4458442, 4460629, 4457773, 23672714752, 4450669, 4423262, 4463641, 12720510431, 4471485, 4461450, 4439001, 9073079615, 4462429, 4466453, 4457911, 37569547229, 4492327, 4459084, 4479888, 95166259433, 4458583, 4466515, 4502594, 250405973965, 4505909, 4417512, 4495983, 37179638458, 4520902, 4516887, 4523328, 88637515055, 4535456, 4528524, 4536936, 158319083608, 4552505, 4516367, 4544387, 6579229180, 4569459, 4554343, 4582901, 8148258175, 4588265, 4592447, 4600069, 7737762862, 4615225, 4572531, 4618298, 634901800, 4634202, 4611924, 4652351, 9174666483, 4660804, 4644040, 4665444, 4065598200, 4700327, 4705258, 4697127, 1846409753, 4711840, 4709234, 4731525, 4975220149, 4737946, 4731129, 4750260, 909210056, 4781338, 4786539, 4796297, 1844311786, 4806189, 4814363, 4815659, 1079985166, 4868557, 4822128, 4865812, 653864243, 4892538, 4865789, 4930900, 3764744837, 4926646, 4903892, 4934157, 2408721746, 4956107, 4962779, 4987135, 1458605202, 4996717, 4989125, 5015673, 1678894731, 5039134, 4982557, 5069935, 765899201, 5086683, 5068715, 5084126, 967145929, 5134532, 5140496, 5120967, 3036539464, 5146587, 5157522, 5160483, 2136412605, 5213785, 5204384, 5216827, 897773029, 5239178, 5230063, 5255777, 1356218568, 5271244, 6114489, 5288724, 725002360, 5301799, 5500031, 5348936, 3664093356, 5354332, 5453532, 5365562, 898069589, 5400353, 5393140, 5407714, 609236104, 5423426, 5420220, 5460135, 4065434661, 5439008, 5442763, 5476087, 946857617, 5476522, 5470531, 5502079, 3895312912, 5518037, 5472161, 5525484, 626998156, 5543609, 5517981, 5524186, 1812787576, 5571763, 5527315, 5571393, 6145750630, 5578282, 5566835, 5577402, 665169382, 5636309, 5574375, 5595941, 4543851253, 5594131, 5595556, 5615715, 3682612744, 5592073, 5541537, 5584642, 3786713441, 5597890, 5576280, 5610751, 783877396, 5590282, 5560452, 5594780, 4996336001, 5601399, 5562581, 5588376, 4491903068, 5607503, 5581687, 5569217, 16894627650, 5585687, 5529752, 5564515, 13943663243, 5575911, 5572019, 5565775, 19810020394, 5546931, 5564690, 5585734, 94433713321, 5558870, 5562965, 5541215, 26175364761, 5543454, 5522297, 5563859, 20972657489, 5544418, 5505652, 5551469, 239086576085, 5554848, 5532776, 5552614, 13297891242, 5534594, 5535017, 5519003, 128035163225, 5514898]} {"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394726562, "timestamp": "2021-09-20T12:17:40.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [394025176423, 4195996, 1973437085, 2702428, 2476443, 2329713, 2152396159, 2189436, 2138858, 2095616, 1963148608, 2193603, 2033395, 2008289, 2289344009, 2022699, 2060316, 2041555, 2202930018, 2041064, 2041098, 2012488, 1468650256, 1992923, 1999758, 2005930, 1440464880, 2127268, 2038812, 2025179, 1873342123, 2044715, 2030591, 2099224, 1355774492, 2040308, 2053501, 2073833, 1998552985, 1997344, 2025338, 2104182, 4858663760, 1970267, 1966380, 1967101, 1614660432, 1974029, 2001121, 1999469, 1265653701, 2044667, 1991176, 1992012, 3515685954, 2042483, 2013030, 2051214, 4065306846, 2068358, 2038582, 2058424, 4184399796, 1953573, 2001802, 2023746, 4694014962, 1939616, 1960043, 2010969, 2669134509, 1906069, 1918092, 1919632, 5169725426, 1891656, 1888779, 1907514, 4669901290, 1927746, 1915060, 1892364, 4555445390, 1906163, 1880838, 1893519, 20085511190, 1884644, 1868218, 1883482, 12489074486, 1888931, 1906614, 1897516, 9727037936, 1877686, 1877345, 1867206, 452364382505, 1876329, 1869167, 1885293, 112837505878, 1877136, 1893879, 1863934, 10995772030, 1871541, 1869889, 1854018, 95518205171, 1863855, 1851422, 1856582, 81211095523, 1865793, 1844200, 1851263, 8934831708, 1853567, 1839510, 1847856, 2838242141, 1848868, 1843653, 1850578, 1767907209, 1845132, 1816030, 1838816, 4462404706, 1842821, 1833305, 1843242, 4877150872, 1839109, 1850364, 1834901, 1825964038, 1832614, 1830876, 1834161, 4213537610, 1837346, 1829432, 1834027, 1256213045, 1832564, 1820353, 1827382, 3416592763, 1832314, 1826287, 1831810, 2127694195, 1825665, 1823860, 1830911, 5339507821, 1825433, 1818679, 1825888, 1822180474, 1824815, 1820144, 1826507, 1423363762, 1828721, 1821106, 1822947, 3000890343, 1830241, 1819028, 1818961, 1403465164, 1830619, 1819044, 1821634, 2000464785, 1824258, 1813762, 1822624, 2137883946, 1821270, 1830515, 1826131, 1874311655, 1823063, 1821439, 1826561, 1440968282, 1823508, 1809712, 1821067, 1712248658, 1819498, 1850685, 1813301, 2874603032, 1829501, 1915690, 1820480, 1334691721, 1824569, 19565124, 1822866, 1794820428, 1825416, 1855687, 1828128, 3650819566, 1818260, 1828209, 1821448, 1938027993, 1824506, 1823156, 1821187, 1555935383, 1819257, 1817362, 1822322, 1705399524, 1817404, 1809577, 1819886, 1398231765, 1827721, 1825266, 1826497, 2268962435, 1824819, 1821237, 1819555, 1723355393, 1825227, 1823551, 1826754, 1689492638, 1820168, 1812428, 1825400, 1878281482, 1829539, 1818844, 1825120, 1442949579, 1820551, 1825326, 1817283, 2438462460, 1820057, 1818859, 1826111, 3631515768, 1832767, 1794337, 1816189, 2762560043, 1823941, 1820619, 1828084, 2370782397, 1820591, 1817609, 1820287, 10437166055, 1822310, 1816617, 1816348, 5267926240, 1819657, 1815671, 1823247, 2863866906, 1821546, 1810238, 1824438, 2234036525, 1818575, 1830314, 1823407, 9539766396, 1827180, 1822992, 1817817, 4394063815, 1825039, 1813893, 1824511, 2349961080, 1819882, 1824181, 1827125, 2502882776, 1813769, 1821345, 1825039, 19499966533, 1825790, 1820667, 1831049, 20219373119, 1827604, 1805817, 1823819, 3386104309, 1815645, 1790328, 1823150, 1061647288442, 1823199, 1818897, 1821300, 57325234639, 1821139, 1816917, 1816782, 14250274042, 1818431, 1810289, 1822936, 27738845409, 1820004, 1826098, 1825971, 8861945308, 1818223, 1823494, 1822384, 9427996699, 1819473, 1817712, 1832210, 13759744933, 1825097, 1819839, 1824376, 3784004228, 1826607, 1820340, 1824127, 5138869698, 1822271, 1823815, 1821826, 3020911026, 1822713, 1831309, 1833886, 5281909975, 1825045, 1816586, 1820274, 2366196797, 1826972, 1818983, 1825125, 1667024395, 1819631, 1811270, 1816779, 2201033634, 1817596, 1819398, 1825298, 2156707202, 1824125, 1821477, 1813362, 2449695561, 1829272, 1814446, 1818357, 1330393994, 1819214, 1814856, 1819198, 1843169046, 1822245, 1821534, 1821660, 2068973950, 1824558, 1794630, 1823224, 1523069420, 1820800, 1819457, 1819736, 2936869537, 1824605, 1827760, 1825363, 1314684807, 1819997, 1818767, 1820555, 1898375041, 1823475, 1824350, 1816164, 2963472647, 1817946, 1825915, 1814826, 1567850020, 1815205, 1923223, 1814799, 2649957636, 1809771, 1819785, 1816176, 1309666834, 1816033, 1860719, 1821781, 1313474388, 1809042, 1819951, 1812364, 3300040795, 1814955, 1815265, 1820605, 1259972407, 1814436, 1821964, 1819531, 2234519638, 1817302, 1832407, 1826362, 2832838692, 1821560, 1814145, 1817891, 1247424218, 1816050, 1816342, 1819912, 1750457396, 1803608, 1808168, 1815315, 1692766538, 1812594, 1803792, 1817035, 2181166027, 1820094, 1810800, 1812247, 1424049960, 1817959, 1818136, 1815649, 2565415807, 1817186, 1796655, 1815615, 1782973782, 1816324, 1810372, 1816620, 5279050762, 1812495, 1812583, 1816610, 4279851153, 1811829, 1810845, 1816509, 1845569789, 1811732, 1813332, 1815465, 2966585918, 1813160, 1801720, 1821005, 9836916697, 1820957, 1812519, 1817452, 10715266190, 1812747, 1806876, 1810548, 8510467912, 1810526, 1802372, 1815492, 5823639009, 1811324, 1806081, 1814027, 7661999949, 1818053, 1812186, 1810740, 80112545448, 1821331, 1812978, 1808619, 7050095892, 1817538, 1816634, 1814070, 463911144342, 1816894]} @@ -22,123 +10,3 @@ {"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394726562, "timestamp": "2021-09-20T12:17:40.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} {"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394726562, "timestamp": "2021-09-20T12:17:40.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} {"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394726562, "timestamp": "2021-09-20T12:17:40.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [119018102623, 4263732, 669968163, 2676719, 2470158, 2343528, 2929662323, 2214151, 2173779, 2138676, 1947778974, 2101413, 2058277, 2045246, 574537935, 2047953, 2044141, 2031917, 2894725917, 2021316, 2025523, 2012360, 610722300, 2020648, 2008607, 2024258, 2386831315, 2056795, 2044423, 2056696, 973483484, 2069131, 2059121, 2082016, 802949281, 2101417, 2114891, 2138546, 2795872600, 2135770, 2161307, 2180012, 1158745676, 2205586, 2219614, 2247316, 4077705885, 2262671, 2289519, 2308039, 1857731721, 2365916, 2325082, 2380173, 2028740825, 2411407, 2432485, 2464937, 8501663299, 2527377, 2515457, 2584176, 1020401162, 2573651, 2589421, 2661321, 6555716503, 2657276, 2677873, 2737241, 3800674803, 2759723, 2764724, 2802663, 4842838991, 2830410, 2841708, 2900435, 7155972474, 2976479, 2994061, 3011725, 3602406530, 3052887, 3012160, 3118005, 13241186377, 3203894, 3141994, 3261319, 38119875793, 3309113, 3484124, 3360190, 81220666882, 3424244, 3380679, 3445303, 12605534877, 3439546, 3465106, 3589175, 225369828002, 3631112, 3740336, 3573760, 46292137128, 3676808, 3689826, 3712328, 24767385486, 3796573, 3738171, 3789143, 75437182848, 3877194, 3798663, 3895000, 12477178722, 3894429, 3800374, 3877588, 20700576209, 3963605, 3963159, 3948763, 16560915793, 3988939, 3968850, 3994971, 12314265380, 4071932, 4092204, 4067113, 38581643874, 4116540, 4150845, 4133018, 5519608594, 4204073, 4240963, 4201555, 6274685004, 4259306, 4246932, 4263845, 7706216491, 4326173, 4328043, 4324781, 5542102830, 4395494, 4363289, 4396202, 1712483862, 4463390, 4437323, 4443090, 5057032730, 4518030, 4494945, 4541336, 1231774957, 4584100, 4557302, 4574521, 4913527194, 4669191, 4621483, 4632044, 1085955967, 4698417, 4679277, 4692449, 5208159230, 4779307, 4742684, 4752383, 10058277388, 4800202, 4772900, 4804043, 5131515887, 4884105, 4851852, 4868829, 1880421736, 4894233, 4899646, 4897426, 4252377814, 4922410, 4845530, 4899266, 671723706, 4934332, 4969016, 4934818, 1066028715, 4942742, 5021601, 4894228, 882202929, 4936317, 262468421, 4907146, 867564582, 4891586, 4959655, 4874044, 7571807234, 4884357, 4840614, 4820543, 806581574, 4821170, 4810305, 4793680, 1534995321, 4810887, 4780416, 4759253, 5347483327, 4747833, 4722910, 4725474, 2040723953, 4728617, 4680709, 4672468, 925471688, 4665164, 4656332, 4628457, 3999583204, 4647191, 4591914, 4574865, 1016564390, 4604998, 4547366, 4561143, 1878874139, 4581908, 4579690, 4556240, 1272660165, 4531110, 4517461, 4525395, 1647252895, 4523762, 4492357, 4510400, 7231754525, 4503143, 4399615, 4466899, 6441622003, 4467024, 4466694, 4459775, 1249523516, 4476638, 4465629, 4448162, 10453578735, 4445842, 4443086, 4432822, 996006078, 4457845, 4448256, 4462016, 2998002737, 4443450, 4426886, 4450505, 1228998685, 4444097, 4435088, 4458439, 7537698308, 4454742, 4450017, 4450470, 23703653618, 4451043, 4429359, 4440613, 12710360739, 4455385, 4447642, 4472008, 9096429476, 4469630, 4460455, 4467386, 37622390040, 4473693, 4467743, 4474023, 95298540010, 4487991, 4460620, 4484911, 250275895199, 4512148, 4424841, 4503748, 37115356418, 4492323, 4514719, 4524708, 88604625148, 4513639, 4518986, 4533954, 158354063456, 4552975, 4527293, 4579744, 6601134854, 4564977, 4571729, 4570404, 8103685930, 4581795, 4586327, 4594679, 7731579941, 4614319, 4587191, 4612827, 634902577, 4649389, 4618722, 4632739, 9195760069, 4638119, 4660717, 4677635, 4064492709, 4693841, 4683913, 4719682, 1869614323, 4722464, 4718993, 4732743, 4999275697, 4762880, 4720412, 4799459, 912340869, 4757023, 4776382, 4797724, 1824201166, 4796467, 4799514, 4818346, 1093699203, 4861921, 4859725, 4877478, 658159983, 4876381, 4882351, 4895711, 3758781389, 4935715, 4915763, 4935319, 2412537995, 4967429, 4927711, 4975378, 1478905470, 4986399, 5004366, 5014274, 1679611925, 5033688, 4990606, 5063301, 777572959, 5094040, 5079080, 5089499, 979839049, 5157052, 5144520, 5134515, 3066692611, 5175967, 5177809, 5179308, 2135681421, 5215427, 5207660, 5203282, 896358708, 5254053, 5235624, 5260983, 1349303466, 5283254, 6159134, 5288066, 719117631, 5310303, 5482368, 5346488, 3621878055, 5357477, 5441472, 5361255, 900091245, 5370376, 5404606, 5395234, 619735132, 5436918, 5432869, 5430176, 4073861035, 5435147, 5443805, 5464245, 952801691, 5497934, 5473148, 5510263, 3921275502, 5487015, 5468124, 5524981, 637310059, 5520063, 5504346, 5557419, 1814732556, 5553132, 5554319, 5555410, 6119892125, 5575154, 5581321, 5599414, 673988182, 5623140, 5579714, 5583716, 4502600163, 5602455, 5576702, 5609762, 3639334673, 5572348, 5529788, 5600707, 3736174759, 5601762, 5568796, 5615368, 798178651, 5598034, 5591009, 5610286, 4963876668, 5588832, 5597684, 5603739, 4537607578, 5579318, 5584667, 5577237, 16955822081, 5584648, 5538290, 5566499, 14025548515, 5563658, 5585365, 5599560, 19785797166, 5566550, 5555685, 5556313, 94420044758, 5568123, 5534407, 5549360, 26084490894, 5563530, 5556862, 5563396, 20877306056, 5550003, 5515286, 5566229, 238715451415, 5539206, 5551430, 5553115, 13323202674, 5549929, 5536013, 5519713, 127723165196, 5523727]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [119018102623, 4263732, 669968163, 2676719, 2470158, 2343528, 2929662323, 2214151, 2173779, 2138676, 1947778974, 2101413, 2058277, 2045246, 574537935, 2047953, 2044141, 2031917, 2894725917, 2021316, 2025523, 2012360, 610722300, 2020648, 2008607, 2024258, 2386831315, 2056795, 2044423, 2056696, 973483484, 2069131, 2059121, 2082016, 802949281, 2101417, 2114891, 2138546, 2795872600, 2135770, 2161307, 2180012, 1158745676, 2205586, 2219614, 2247316, 4077705885, 2262671, 2289519, 2308039, 1857731721, 2365916, 2325082, 2380173, 2028740825, 2411407, 2432485, 2464937, 8501663299, 2527377, 2515457, 2584176, 1020401162, 2573651, 2589421, 2661321, 6555716503, 2657276, 2677873, 2737241, 3800674803, 2759723, 2764724, 2802663, 4842838991, 2830410, 2841708, 2900435, 7155972474, 2976479, 2994061, 3011725, 3602406530, 3052887, 3012160, 3118005, 13241186377, 3203894, 3141994, 3261319, 38119875793, 3309113, 3484124, 3360190, 81220666882, 3424244, 3380679, 3445303, 12605534877, 3439546, 3465106, 3589175, 225369828002, 3631112, 3740336, 3573760, 46292137128, 3676808, 3689826, 3712328, 24767385486, 3796573, 3738171, 3789143, 75437182848, 3877194, 3798663, 3895000, 12477178722, 3894429, 3800374, 3877588, 20700576209, 3963605, 3963159, 3948763, 16560915793, 3988939, 3968850, 3994971, 12314265380, 4071932, 4092204, 4067113, 38581643874, 4116540, 4150845, 4133018, 5519608594, 4204073, 4240963, 4201555, 6274685004, 4259306, 4246932, 4263845, 7706216491, 4326173, 4328043, 4324781, 5542102830, 4395494, 4363289, 4396202, 1712483862, 4463390, 4437323, 4443090, 5057032730, 4518030, 4494945, 4541336, 1231774957, 4584100, 4557302, 4574521, 4913527194, 4669191, 4621483, 4632044, 1085955967, 4698417, 4679277, 4692449, 5208159230, 4779307, 4742684, 4752383, 10058277388, 4800202, 4772900, 4804043, 5131515887, 4884105, 4851852, 4868829, 1880421736, 4894233, 4899646, 4897426, 4252377814, 4922410, 4845530, 4899266, 671723706, 4934332, 4969016, 4934818, 1066028715, 4942742, 5021601, 4894228, 882202929, 4936317, 262468421, 4907146, 867564582, 4891586, 4959655, 4874044, 7571807234, 4884357, 4840614, 4820543, 806581574, 4821170, 4810305, 4793680, 1534995321, 4810887, 4780416, 4759253, 5347483327, 4747833, 4722910, 4725474, 2040723953, 4728617, 4680709, 4672468, 925471688, 4665164, 4656332, 4628457, 3999583204, 4647191, 4591914, 4574865, 1016564390, 4604998, 4547366, 4561143, 1878874139, 4581908, 4579690, 4556240, 1272660165, 4531110, 4517461, 4525395, 1647252895, 4523762, 4492357, 4510400, 7231754525, 4503143, 4399615, 4466899, 6441622003, 4467024, 4466694, 4459775, 1249523516, 4476638, 4465629, 4448162, 10453578735, 4445842, 4443086, 4432822, 996006078, 4457845, 4448256, 4462016, 2998002737, 4443450, 4426886, 4450505, 1228998685, 4444097, 4435088, 4458439, 7537698308, 4454742, 4450017, 4450470, 23703653618, 4451043, 4429359, 4440613, 12710360739, 4455385, 4447642, 4472008, 9096429476, 4469630, 4460455, 4467386, 37622390040, 4473693, 4467743, 4474023, 95298540010, 4487991, 4460620, 4484911, 250275895199, 4512148, 4424841, 4503748, 37115356418, 4492323, 4514719, 4524708, 88604625148, 4513639, 4518986, 4533954, 158354063456, 4552975, 4527293, 4579744, 6601134854, 4564977, 4571729, 4570404, 8103685930, 4581795, 4586327, 4594679, 7731579941, 4614319, 4587191, 4612827, 634902577, 4649389, 4618722, 4632739, 9195760069, 4638119, 4660717, 4677635, 4064492709, 4693841, 4683913, 4719682, 1869614323, 4722464, 4718993, 4732743, 4999275697, 4762880, 4720412, 4799459, 912340869, 4757023, 4776382, 4797724, 1824201166, 4796467, 4799514, 4818346, 1093699203, 4861921, 4859725, 4877478, 658159983, 4876381, 4882351, 4895711, 3758781389, 4935715, 4915763, 4935319, 2412537995, 4967429, 4927711, 4975378, 1478905470, 4986399, 5004366, 5014274, 1679611925, 5033688, 4990606, 5063301, 777572959, 5094040, 5079080, 5089499, 979839049, 5157052, 5144520, 5134515, 3066692611, 5175967, 5177809, 5179308, 2135681421, 5215427, 5207660, 5203282, 896358708, 5254053, 5235624, 5260983, 1349303466, 5283254, 6159134, 5288066, 719117631, 5310303, 5482368, 5346488, 3621878055, 5357477, 5441472, 5361255, 900091245, 5370376, 5404606, 5395234, 619735132, 5436918, 5432869, 5430176, 4073861035, 5435147, 5443805, 5464245, 952801691, 5497934, 5473148, 5510263, 3921275502, 5487015, 5468124, 5524981, 637310059, 5520063, 5504346, 5557419, 1814732556, 5553132, 5554319, 5555410, 6119892125, 5575154, 5581321, 5599414, 673988182, 5623140, 5579714, 5583716, 4502600163, 5602455, 5576702, 5609762, 3639334673, 5572348, 5529788, 5600707, 3736174759, 5601762, 5568796, 5615368, 798178651, 5598034, 5591009, 5610286, 4963876668, 5588832, 5597684, 5603739, 4537607578, 5579318, 5584667, 5577237, 16955822081, 5584648, 5538290, 5566499, 14025548515, 5563658, 5585365, 5599560, 19785797166, 5566550, 5555685, 5556313, 94420044758, 5568123, 5534407, 5549360, 26084490894, 5563530, 5556862, 5563396, 20877306056, 5550003, 5515286, 5566229, 238715451415, 5539206, 5551430, 5553115, 13323202674, 5549929, 5536013, 5519713, 127723165196, 5523727]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [394127954404, 4214983, 1977286888, 2703320, 2472249, 2327523, 2153191953, 2185167, 2130218, 2087012, 1969497227, 2193427, 2043016, 1993352, 2297724520, 2022427, 2064876, 2045055, 2207055241, 2023829, 2038796, 2013282, 1476192027, 1993894, 2000827, 2001835, 1442663995, 2118013, 2039550, 2032879, 1882317085, 2055457, 2029782, 2094573, 1364277246, 2047769, 2052339, 2074170, 2010788317, 1991185, 2031377, 2100426, 4857305903, 1970939, 1971272, 1978728, 1615026455, 1979175, 1997752, 1993025, 1270247209, 2037685, 1993001, 1991367, 3527677997, 2042361, 2014219, 2033795, 4061819485, 2068401, 2045957, 2054393, 4194682554, 1960606, 2005178, 2030519, 4716239673, 1932940, 1959151, 2010331, 2659386051, 1907053, 1910394, 1920444, 5180064028, 1903706, 1887603, 1911300, 4653403622, 1923209, 1913664, 1889477, 4539641140, 1908005, 1870692, 1893116, 20009984394, 1882578, 1876613, 1881449, 12542015630, 1895631, 1911908, 1891016, 9787678425, 1878175, 1873640, 1867434, 451958313573, 1879209, 1871334, 1892664, 112719387686, 1877756, 1892570, 1852586, 11072134487, 1866466, 1863974, 1861862, 95575123176, 1867414, 1858539, 1852148, 81042439542, 1866968, 1847483, 1861148, 8962674513, 1846945, 1840087, 1847735, 2851909273, 1854321, 1842336, 1845468, 1761975724, 1841919, 1818374, 1837468, 4464342630, 1833909, 1830745, 1835495, 4877645402, 1840571, 1847944, 1836496, 1842744595, 1843136, 1825772, 1831397, 4203434474, 1835799, 1828401, 1829024, 1258372106, 1832876, 1837557, 1824205, 3407624094, 1830696, 1824424, 1831988, 2122709492, 1826464, 1825376, 1834873, 5347568926, 1828845, 1814528, 1829292, 1829839738, 1828718, 1819119, 1821708, 1432494176, 1823239, 1821301, 1829046, 3000946117, 1824398, 1819746, 1827961, 1404302117, 1828865, 1819866, 1821760, 2018392161, 1825776, 1816688, 1828168, 2148511798, 1819172, 1825108, 1827904, 1871845829, 1818859, 1819619, 1827755, 1452319933, 1824112, 1815486, 1816894, 1711310781, 1819605, 1845356, 1822047, 2887859929, 1820539, 1915612, 1819710, 1337098231, 1818819, 19542554, 1814567, 1796805290, 1830225, 1860089, 1816880, 3665421385, 1825858, 1825500, 1822444, 1941747803, 1825634, 1824213, 1820602, 1561300703, 1821130, 1817706, 1822142, 1713523678, 1825920, 1812657, 1817966, 1406050108, 1825531, 1816910, 1818052, 2287070486, 1822251, 1819121, 1823335, 1733546318, 1828495, 1819221, 1821288, 1688573656, 1819727, 1817964, 1819210, 1887684352, 1822087, 1822736, 1824018, 1441928427, 1818201, 1816386, 1823576, 2443907550, 1818411, 1815117, 1819802, 3627114113, 1827704, 1794488, 1819587, 2756148224, 1820089, 1810404, 1823514, 2367286538, 1817623, 1821678, 1821916, 10441093699, 1823549, 1811502, 1826251, 5289074290, 1823143, 1820151, 1829170, 2846827817, 1817732, 1806883, 1825491, 2214506839, 1826532, 1812020, 1817394, 9584947724, 1834810, 1819725, 1818856, 4418497606, 1824760, 1815368, 1821461, 2335636451, 1817657, 1823195, 1819730, 2489393584, 1820610, 1820746, 1820135, 19430961696, 1821669, 1816616, 1824580, 20204814212, 1827658, 1810423, 1826392, 3374439705, 1822450, 1793245, 1824558, 1061623647750, 1823270, 1817070, 1824293, 57280389531, 1824242, 1820642, 1828401, 14355790971, 1822687, 1811699, 1825577, 27726845323, 1826267, 1817586, 1822985, 8796367227, 1824428, 1816308, 1829385, 9492267576, 1823206, 1814310, 1825012, 13762941670, 1827361, 1817195, 1821188, 3735571570, 1825365, 1816544, 1821109, 5131973287, 1823353, 1822375, 1820639, 3011164567, 1828288, 1838544, 1822618, 5301626034, 1821961, 1812295, 1825248, 2359328000, 1819223, 1812750, 1820975, 1665748953, 1822512, 1821643, 1814315, 2206316546, 1828340, 1812946, 1816356, 2159889960, 1819508, 1811397, 1827640, 2462696014, 1825618, 1810063, 1821267, 1331076174, 1825109, 1815283, 1823354, 1859681662, 1821812, 1815841, 1826828, 2077202282, 1818172, 1795727, 1819695, 1524044772, 1814680, 1818906, 1818047, 2960511494, 1821086, 1823854, 1815006, 1317944513, 1819610, 1824292, 1820799, 1900677933, 1818485, 1821288, 1815412, 2983360667, 1821454, 1828731, 1818770, 1562169740, 1823181, 1927577, 1815623, 2658670398, 1816788, 1812653, 1824850, 1303464875, 1822327, 1864717, 1824739, 1313963827, 1821853, 1819730, 1819073, 3320983389, 1812869, 1821158, 1818234, 1258986488, 1818835, 1818814, 1816739, 2243129362, 1817411, 1828589, 1812431, 2853992426, 1817479, 1800445, 1811109, 1248277426, 1819885, 1813636, 1820245, 1760419582, 1815864, 1819865, 1817400, 1696082375, 1821334, 1803449, 1821201, 2174643603, 1809190, 1810813, 1818880, 1428476524, 1822324, 1814496, 1818033, 2561069957, 1818639, 1797978, 1821923, 1794082686, 1822908, 1814288, 1809877, 5253058004, 1816691, 1818659, 1811810, 4293001561, 1822931, 1808636, 1824125, 1861709430, 1814707, 1821070, 1813372, 2966555226, 1815388, 1807994, 1812138, 9878597670, 1827134, 1814897, 1812906, 10674820050, 1812876, 1800813, 1821203, 8501797003, 1816688, 1810036, 1813809, 5856145085, 1809578, 1806110, 1822266, 7647160300, 1806258, 1806006, 1814646, 80086545402, 1814511, 1807510, 1817353, 7081777462, 1815853, 1809628, 1814021, 464041435514, 1812311]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [161183449614, 4843696, 377781184, 2895508, 2694513, 2513839, 556703304, 2400461, 2426724, 2327460, 767613260, 2540567, 2327622, 2294443, 844928367, 2332299, 2365186, 2372782, 710274982, 2371251, 2413603, 2353975, 460030992, 2327443, 2338702, 2361919, 343359480, 2520198, 2398370, 2405610, 581157841, 2435915, 2373592, 2494996, 1194967028, 2409482, 2447596, 2493328, 1991734196, 2350829, 2402439, 2519383, 2542860935, 2335640, 2364812, 2322848, 2615594672, 2336418, 2354077, 2352223, 2093932430, 2433161, 2357409, 2360493, 1255317617, 2425484, 2388328, 2438450, 563548774, 2480824, 2439732, 2456060, 354910675, 2282169, 2358750, 2407082, 636322433, 2275339, 2316925, 2387753, 1019052483, 2232034, 2228367, 2261338, 949413047, 2208341, 2203502, 2213881, 444038075, 2247808, 2251052, 2232462, 843065848, 2220256, 2181399, 2206313, 6216005178, 2195303, 2184236, 2200441, 27052935533, 2182091, 2232104, 2224767, 96755917226, 2196695, 2197591, 2181403, 436047307829, 2194203, 2173538, 2215454, 188284417934, 2204758, 2224597, 2164105, 474667392650, 2186034, 2166988, 2168822, 59077218728, 2184651, 2149393, 2171198, 8542416468, 2165742, 2153439, 2174762, 625211157, 2153988, 2138488, 2144969, 728006005, 2172896, 2141551, 2155227, 1382520081, 2137926, 2088454, 2132991, 1189567660, 2146080, 2151959, 2137338, 589381248, 2133638, 2138529, 2131042, 352948879, 2140512, 2144692, 2123161, 856167555, 2116979, 2110127, 2131729, 1900025630, 2126781, 2127752, 2120447, 2943289827, 2121753, 2121027, 2127052, 3467697032, 2118784, 2112224, 2112098, 3256816806, 2115577, 2106401, 2128992, 2458419199, 2108698, 2109017, 2118502, 1473722151, 2132783, 2113569, 2117363, 722217227, 2116991, 2109449, 2113532, 376460168, 2124643, 2097816, 2124033, 365637707, 2110839, 2106448, 2121825, 469267551, 2115295, 2105944, 2117510, 495927896, 2110679, 2125789, 2123139, 410625331, 2129437, 2098497, 2112713, 342631174, 2115793, 2126581, 2123052, 466961518, 2118932, 2185554, 2111533, 860548597, 2122210, 26806016, 2125261, 1425579601, 2119316, 2179309, 2117402, 1920719103, 2126997, 2173763, 2119056, 2111403068, 2109246, 2125531, 2110132, 1900280001, 2118211, 2122867, 2117855, 1397144670, 2115284, 2101259, 2122657, 843667575, 2120339, 2111057, 2117200, 469516893, 2119947, 2121487, 2130760, 347936186, 2113037, 2105524, 2113883, 382837350, 2120691, 2112212, 2125279, 404774130, 2112384, 2116050, 2118519, 352942762, 2116173, 2118680, 2126955, 394095108, 2115210, 2122748, 2116658, 891512943, 2125879, 2056423, 2129621, 2205974598, 2124367, 2113523, 2132241, 4411931627, 2124481, 2124319, 2141197, 7107222634, 2122933, 2124057, 2135752, 9486951861, 2130033, 2118329, 2125252, 10615295888, 2126566, 2119735, 2135642, 9971875592, 2120248, 2116286, 2130232, 7584010624, 2123385, 2123381, 2126318, 4390069019, 2123660, 2107039, 2117211, 1670549649, 2129837, 2123879, 2128987, 423611911, 2126019, 2125547, 2135475, 469610934, 2126899, 2125544, 2128843, 392985051, 2129122, 2119161, 2138558, 164445853168, 2133505, 2086484, 2127994, 174539831044, 2122907, 2131360, 2145714, 83568399653, 2132039, 2130006, 2134815, 63537657874, 2139529, 2107251, 2151947, 49675690696, 2132071, 2137913, 2145026, 36398237492, 2138685, 2129644, 2155325, 24012971727, 2133287, 2133664, 2138300, 13766553439, 2142013, 2143919, 2149177, 6591394975, 2137012, 2139747, 2144735, 2475028716, 2140174, 2138674, 2145828, 753033223, 2142012, 2154230, 2152226, 350744287, 2150107, 2125893, 2153923, 387741689, 2142811, 2154090, 2148756, 397204065, 2150967, 2136335, 2145799, 352548064, 2135564, 2146732, 2156975, 453244618, 2152195, 2134080, 2148109, 855887358, 2157924, 2140679, 2158608, 1492068903, 2156645, 2140267, 2155469, 2108839200, 2159730, 2159064, 2165521, 2404923680, 2154299, 2109640, 2157041, 2239189104, 2157218, 2154626, 2166120, 1686198236, 2166542, 2166798, 2168533, 1020527897, 2168259, 2149552, 2165843, 521867311, 2167085, 2151622, 2168445, 343011899, 2172595, 2160168, 2167740, 426992417, 2172907, 2228558, 2173267, 584592844, 2157035, 2644578, 2165925, 634661790, 2164500, 2138178, 2161214, 527647942, 2164873, 2172579, 2168990, 381000936, 2162601, 2167470, 2164680, 370141253, 2159741, 2190988, 2173645, 598883472, 2178566, 2153833, 2162428, 999754564, 2170849, 2163289, 2167063, 1358900464, 2171201, 2163546, 2172100, 1434870593, 2171058, 2168587, 2174091, 1158166449, 2166920, 2135879, 2171837, 686307583, 2179332, 2169407, 2166959, 362159871, 2174941, 2164368, 2181092, 475011304, 2177761, 2144305, 2186573, 1076679444, 2173132, 2165936, 2175944, 1866299751, 2173221, 2169274, 2178463, 2351373880, 2182992, 2159654, 2171011, 2125124926, 2175447, 2159471, 2176799, 1252944358, 2174300, 2160497, 2172138, 415860525, 2176352, 2168391, 2179195, 780866040, 2181264, 2175622, 2178541, 3524354451, 2175901, 2171704, 2173002, 9246765585, 2174430, 2158016, 2173534, 17546189340, 2176399, 2165849, 2174719, 26815070385, 2179965, 2166662, 2167143, 34910851424, 2168327, 2165496, 2169793, 40008585379, 2158076]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777394921875, "timestamp": "2021-09-20T12:17:42+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [117776314887, 4252294, 660205974, 2664291, 2468050, 2347461, 2993800941, 2230098, 2171731, 2135217, 1952414844, 2099723, 2060519, 2049993, 585314589, 2041251, 2041638, 2021579, 2940620089, 2015770, 2026435, 2012224, 619000417, 2012815, 2017554, 2016462, 2415217521, 2060087, 2040280, 2059137, 987761684, 2060837, 2055705, 2082338, 818717533, 2109071, 2113333, 2143864, 2845549760, 2138803, 2158969, 2170652, 1187400476, 2211695, 2209112, 2240536, 4009217512, 2265455, 2288101, 2301681, 1906535982, 2364818, 2329058, 2387979, 1996260254, 2419385, 2432951, 2475731, 8442572889, 2528720, 2520553, 2586990, 1040723474, 2579199, 2599433, 2672438, 6588129551, 2664330, 2692386, 2747699, 3793605613, 2744500, 2754867, 2804121, 4882438034, 2839862, 2831742, 2901697, 7093093102, 2977282, 2968170, 3008061, 3635304631, 3059127, 3024440, 3128716, 13146975510, 3205782, 3141584, 3267423, 37902374944, 3308149, 3476110, 3347666, 80938016848, 3409195, 3384430, 3440583, 12529087544, 3422913, 3450870, 3570160, 225383574141, 3636690, 3745423, 3565443, 46460192801, 3678428, 3683397, 3724484, 24813107898, 3810967, 3740235, 3794341, 75487839279, 3904388, 3801150, 3866228, 12497483807, 3880432, 3827287, 3883563, 20688785166, 3965214, 3967801, 3952802, 16639227823, 3982136, 3954185, 3982735, 12368620829, 4076045, 4076774, 4072310, 38752870589, 4107390, 4168865, 4124147, 5587102306, 4214934, 4249533, 4201033, 6335305507, 4245794, 4266276, 4259571, 7780340897, 4340296, 4325074, 4332709, 5590644075, 4373416, 4393265, 4389951, 1697347100, 4460740, 4443010, 4468370, 5078002281, 4510256, 4492285, 4523607, 1233174484, 4570639, 4547464, 4560027, 4931183261, 4654566, 4624396, 4625743, 1091700168, 4692722, 4682793, 4694011, 5236190575, 4780712, 4727920, 4765991, 10111357163, 4804614, 4779871, 4815950, 5165830720, 4877711, 4848966, 4876901, 1902363509, 4889772, 4902765, 4881175, 4284395528, 4943221, 4872909, 4910787, 680170715, 4939963, 4998621, 4918363, 1058718882, 4945240, 5036366, 4918949, 877170380, 4910214, 262242667, 4900253, 868043200, 4877327, 4956131, 4870500, 7577566376, 4877629, 4847255, 4824213, 810900701, 4827390, 4818314, 4795376, 1545069275, 4798800, 4790509, 4758185, 5385549424, 4756914, 4714144, 4705208, 2056723090, 4726203, 4686775, 4677561, 920598178, 4662648, 4643404, 4634737, 4027353343, 4632891, 4611797, 4584780, 1007617990, 4594648, 4566784, 4550982, 1868674644, 4564538, 4537723, 4539864, 1263788853, 4534016, 4526363, 4525369, 1644947410, 4532321, 4510620, 4501368, 7250709672, 4505110, 4418450, 4472847, 6451885456, 4456594, 4472397, 4469833, 1231608745, 4485403, 4466399, 4447714, 10493939550, 4461564, 4457375, 4456324, 995733788, 4467080, 4434039, 4449477, 2969678999, 4458586, 4464448, 4449846, 1243630022, 4446303, 4437519, 4453553, 7556478865, 4471635, 4474761, 4436239, 23663547987, 4452649, 4440989, 4451085, 12725359926, 4448145, 4471686, 4456059, 9074854693, 4455641, 4437225, 4452559, 37669374880, 4466334, 4445971, 4473130, 95381877475, 4483456, 4478365, 4500990, 250037947365, 4491068, 4421167, 4520463, 36993568525, 4519886, 4520984, 4534495, 88467689671, 4534011, 4505862, 4534948, 158543461022, 4534952, 4532279, 4537428, 6575138466, 4572126, 4539710, 4576105, 8066264952, 4593445, 4583360, 4603577, 7753949022, 4610158, 4578904, 4609058, 627382182, 4644751, 4632502, 4655871, 9175061930, 4659172, 4664594, 4672211, 4071808607, 4685577, 4694282, 4704264, 1868373420, 4710843, 4709372, 4732742, 5025606276, 4747061, 4728138, 4752182, 909997965, 4793843, 4785145, 4805142, 1800772310, 4813919, 4806380, 4815096, 1108150417, 4842943, 4848499, 4856812, 660550840, 4898658, 4862328, 4897762, 3731738171, 4921586, 4897899, 4941808, 2424658816, 4945751, 4944034, 4974121, 1479077900, 4989766, 5012566, 5000398, 1672626017, 5021859, 4981634, 5052966, 780978402, 5098762, 5091402, 5088459, 985389653, 5132298, 5131129, 5151363, 3081238971, 5174072, 5165009, 5178799, 2132458257, 5184791, 5190704, 5224651, 890484918, 5244513, 5263203, 5270245, 1336664998, 5274904, 6148696, 5299410, 708944328, 5302717, 5470901, 5332646, 3579349618, 5343141, 5459315, 5364852, 893793165, 5405457, 5395753, 5380549, 627327867, 5434866, 5411550, 5451124, 4066630728, 5441109, 5432525, 5453932, 959614556, 5469808, 5467259, 5511398, 3935564102, 5519011, 5467925, 5522171, 641110188, 5515166, 5555939, 5524903, 1815439639, 5539177, 5570179, 5563832, 6089675372, 5564934, 5585323, 5571819, 676438156, 5636072, 5560959, 5605706, 4459540816, 5605004, 5582504, 5598132, 3604229642, 5624257, 5537062, 5615058, 3683609203, 5587444, 5579249, 5592592, 809216747, 5599555, 5562570, 5601776, 4933817806, 5595857, 5578506, 5601039, 4570102950, 5592123, 5584022, 5589629, 17002390528, 5561957, 5544546, 5593199, 14070779747, 5546243, 5557576, 5566389, 19760418421, 5576893, 5561971, 5559188, 94398354861, 5574869, 5534660, 5544635, 25990800044, 5545892, 5517808, 5535576, 20791822698, 5545566, 5492238, 5557658, 238415609460, 5561356, 5538049, 5544211, 13336274764, 5541110, 5523127, 5544497, 127467751935, 5515781]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [117776314887, 4252294, 660205974, 2664291, 2468050, 2347461, 2993800941, 2230098, 2171731, 2135217, 1952414844, 2099723, 2060519, 2049993, 585314589, 2041251, 2041638, 2021579, 2940620089, 2015770, 2026435, 2012224, 619000417, 2012815, 2017554, 2016462, 2415217521, 2060087, 2040280, 2059137, 987761684, 2060837, 2055705, 2082338, 818717533, 2109071, 2113333, 2143864, 2845549760, 2138803, 2158969, 2170652, 1187400476, 2211695, 2209112, 2240536, 4009217512, 2265455, 2288101, 2301681, 1906535982, 2364818, 2329058, 2387979, 1996260254, 2419385, 2432951, 2475731, 8442572889, 2528720, 2520553, 2586990, 1040723474, 2579199, 2599433, 2672438, 6588129551, 2664330, 2692386, 2747699, 3793605613, 2744500, 2754867, 2804121, 4882438034, 2839862, 2831742, 2901697, 7093093102, 2977282, 2968170, 3008061, 3635304631, 3059127, 3024440, 3128716, 13146975510, 3205782, 3141584, 3267423, 37902374944, 3308149, 3476110, 3347666, 80938016848, 3409195, 3384430, 3440583, 12529087544, 3422913, 3450870, 3570160, 225383574141, 3636690, 3745423, 3565443, 46460192801, 3678428, 3683397, 3724484, 24813107898, 3810967, 3740235, 3794341, 75487839279, 3904388, 3801150, 3866228, 12497483807, 3880432, 3827287, 3883563, 20688785166, 3965214, 3967801, 3952802, 16639227823, 3982136, 3954185, 3982735, 12368620829, 4076045, 4076774, 4072310, 38752870589, 4107390, 4168865, 4124147, 5587102306, 4214934, 4249533, 4201033, 6335305507, 4245794, 4266276, 4259571, 7780340897, 4340296, 4325074, 4332709, 5590644075, 4373416, 4393265, 4389951, 1697347100, 4460740, 4443010, 4468370, 5078002281, 4510256, 4492285, 4523607, 1233174484, 4570639, 4547464, 4560027, 4931183261, 4654566, 4624396, 4625743, 1091700168, 4692722, 4682793, 4694011, 5236190575, 4780712, 4727920, 4765991, 10111357163, 4804614, 4779871, 4815950, 5165830720, 4877711, 4848966, 4876901, 1902363509, 4889772, 4902765, 4881175, 4284395528, 4943221, 4872909, 4910787, 680170715, 4939963, 4998621, 4918363, 1058718882, 4945240, 5036366, 4918949, 877170380, 4910214, 262242667, 4900253, 868043200, 4877327, 4956131, 4870500, 7577566376, 4877629, 4847255, 4824213, 810900701, 4827390, 4818314, 4795376, 1545069275, 4798800, 4790509, 4758185, 5385549424, 4756914, 4714144, 4705208, 2056723090, 4726203, 4686775, 4677561, 920598178, 4662648, 4643404, 4634737, 4027353343, 4632891, 4611797, 4584780, 1007617990, 4594648, 4566784, 4550982, 1868674644, 4564538, 4537723, 4539864, 1263788853, 4534016, 4526363, 4525369, 1644947410, 4532321, 4510620, 4501368, 7250709672, 4505110, 4418450, 4472847, 6451885456, 4456594, 4472397, 4469833, 1231608745, 4485403, 4466399, 4447714, 10493939550, 4461564, 4457375, 4456324, 995733788, 4467080, 4434039, 4449477, 2969678999, 4458586, 4464448, 4449846, 1243630022, 4446303, 4437519, 4453553, 7556478865, 4471635, 4474761, 4436239, 23663547987, 4452649, 4440989, 4451085, 12725359926, 4448145, 4471686, 4456059, 9074854693, 4455641, 4437225, 4452559, 37669374880, 4466334, 4445971, 4473130, 95381877475, 4483456, 4478365, 4500990, 250037947365, 4491068, 4421167, 4520463, 36993568525, 4519886, 4520984, 4534495, 88467689671, 4534011, 4505862, 4534948, 158543461022, 4534952, 4532279, 4537428, 6575138466, 4572126, 4539710, 4576105, 8066264952, 4593445, 4583360, 4603577, 7753949022, 4610158, 4578904, 4609058, 627382182, 4644751, 4632502, 4655871, 9175061930, 4659172, 4664594, 4672211, 4071808607, 4685577, 4694282, 4704264, 1868373420, 4710843, 4709372, 4732742, 5025606276, 4747061, 4728138, 4752182, 909997965, 4793843, 4785145, 4805142, 1800772310, 4813919, 4806380, 4815096, 1108150417, 4842943, 4848499, 4856812, 660550840, 4898658, 4862328, 4897762, 3731738171, 4921586, 4897899, 4941808, 2424658816, 4945751, 4944034, 4974121, 1479077900, 4989766, 5012566, 5000398, 1672626017, 5021859, 4981634, 5052966, 780978402, 5098762, 5091402, 5088459, 985389653, 5132298, 5131129, 5151363, 3081238971, 5174072, 5165009, 5178799, 2132458257, 5184791, 5190704, 5224651, 890484918, 5244513, 5263203, 5270245, 1336664998, 5274904, 6148696, 5299410, 708944328, 5302717, 5470901, 5332646, 3579349618, 5343141, 5459315, 5364852, 893793165, 5405457, 5395753, 5380549, 627327867, 5434866, 5411550, 5451124, 4066630728, 5441109, 5432525, 5453932, 959614556, 5469808, 5467259, 5511398, 3935564102, 5519011, 5467925, 5522171, 641110188, 5515166, 5555939, 5524903, 1815439639, 5539177, 5570179, 5563832, 6089675372, 5564934, 5585323, 5571819, 676438156, 5636072, 5560959, 5605706, 4459540816, 5605004, 5582504, 5598132, 3604229642, 5624257, 5537062, 5615058, 3683609203, 5587444, 5579249, 5592592, 809216747, 5599555, 5562570, 5601776, 4933817806, 5595857, 5578506, 5601039, 4570102950, 5592123, 5584022, 5589629, 17002390528, 5561957, 5544546, 5593199, 14070779747, 5546243, 5557576, 5566389, 19760418421, 5576893, 5561971, 5559188, 94398354861, 5574869, 5534660, 5544635, 25990800044, 5545892, 5517808, 5535576, 20791822698, 5545566, 5492238, 5557658, 238415609460, 5561356, 5538049, 5544211, 13336274764, 5541110, 5523127, 5544497, 127467751935, 5515781]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [392664653340, 4202011, 1980738744, 2691716, 2472159, 2327978, 2150049237, 2182558, 2137836, 2093452, 1987737165, 2182493, 2036586, 2004826, 2311002910, 2028965, 2054319, 2037091, 2221774239, 2035609, 2047626, 2004776, 1466328780, 1997023, 1996616, 2008649, 1456898865, 2121743, 2037358, 2031879, 1896533333, 2043570, 2028721, 2094070, 1355505636, 2034430, 2052383, 2082746, 2038089215, 2002064, 2030626, 2095920, 4863814371, 1973054, 1976914, 1974051, 1601478723, 1977372, 1990134, 1997850, 1278126405, 2054267, 1984571, 1995916, 3540711332, 2049665, 2021566, 2044344, 4024399936, 2076723, 2047133, 2060810, 4206729544, 1962272, 1999274, 2016616, 4748225403, 1941431, 1970904, 2007919, 2643156910, 1911566, 1907984, 1915258, 5191349614, 1902125, 1887871, 1905324, 4626580011, 1926608, 1910110, 1896103, 4539154921, 1906415, 1877661, 1891849, 19980092001, 1882481, 1875916, 1887133, 12521353930, 1892718, 1912411, 1897676, 9837513930, 1875352, 1885654, 1875691, 451775195693, 1878762, 1861749, 1884278, 112787206350, 1877982, 1898107, 1856195, 11133001706, 1868583, 1862480, 1856308, 95420202168, 1872648, 1851299, 1859593, 81029575616, 1853253, 1849226, 1853622, 9023204330, 1847212, 1855985, 1853791, 2834037870, 1860432, 1845180, 1844257, 1767297270, 1842989, 1817568, 1837731, 4482773587, 1846010, 1842274, 1837852, 4830877155, 1836943, 1844058, 1833044, 1856508779, 1835743, 1833198, 1834269, 4171911741, 1833435, 1830465, 1827644, 1257587949, 1830367, 1828475, 1836850, 3408470370, 1833406, 1828140, 1829256, 2103762192, 1833534, 1827561, 1825185, 5363980617, 1831329, 1821841, 1824872, 1851269865, 1826936, 1825217, 1831442, 1433491999, 1826567, 1828849, 1825004, 3012473157, 1831690, 1819925, 1822685, 1419619107, 1820384, 1821600, 1821586, 2011721597, 1826562, 1810900, 1821379, 2169569953, 1823216, 1829336, 1822373, 1898159816, 1824655, 1821923, 1823713, 1440128694, 1829676, 1811403, 1824269, 1702625635, 1822915, 1848275, 1823178, 2898201686, 1825859, 1913077, 1824632, 1336342082, 1826370, 19549363, 1821942, 1801703978, 1816868, 1866024, 1824504, 3691262864, 1818888, 1831525, 1827080, 1927367678, 1818163, 1821718, 1830862, 1561403279, 1833187, 1821742, 1827991, 1741651045, 1816041, 1814734, 1821566, 1399709024, 1822074, 1822232, 1818950, 2298305357, 1813948, 1820449, 1819153, 1755723049, 1823057, 1820252, 1825527, 1699981799, 1825744, 1815421, 1831161, 1900332378, 1821791, 1818372, 1822497, 1451839947, 1819924, 1825332, 1828218, 2445881740, 1818608, 1813795, 1821115, 3599709500, 1825452, 1794469, 1818644, 2765483420, 1832459, 1817493, 1822537, 2389079936, 1822801, 1821989, 1828123, 10414709577, 1825709, 1820098, 1827383, 5261035172, 1827326, 1820253, 1823504, 2838918649, 1820548, 1819541, 1822835, 2207914760, 1823905, 1817421, 1830445, 9563729001, 1822408, 1821634, 1826348, 4449058184, 1826003, 1805916, 1818515, 2328239807, 1817446, 1819492, 1823447, 2499719858, 1820871, 1823191, 1823246, 19345299086, 1816926, 1820414, 1825445, 20247525959, 1819821, 1820165, 1818858, 3396228047, 1824488, 1789105, 1823494, 1061286344570, 1827226, 1819501, 1824109, 57342448714, 1825984, 1820319, 1826959, 14415494093, 1825428, 1810690, 1819663, 27695059507, 1822793, 1821176, 1820688, 8788161644, 1822086, 1817625, 1823498, 9517364890, 1823733, 1813727, 1826545, 13677252387, 1815483, 1816686, 1830121, 3723838283, 1823367, 1810391, 1826716, 5159990320, 1822622, 1818959, 1825394, 2961309000, 1820958, 1829439, 1825265, 5314763944, 1820574, 1810695, 1823379, 2367977875, 1820172, 1819925, 1824878, 1660150014, 1816792, 1819494, 1822976, 2210388514, 1818693, 1809013, 1823101, 2165697322, 1818574, 1821548, 1828218, 2483085271, 1818694, 1805860, 1822965, 1339474374, 1825598, 1821059, 1827404, 1880763780, 1812171, 1813633, 1830010, 2084816499, 1820657, 1797103, 1818624, 1527296567, 1822209, 1820901, 1814561, 2966371150, 1823799, 1825162, 1817989, 1322693786, 1829680, 1826483, 1818981, 1923248909, 1814416, 1817692, 1817300, 2971215648, 1821764, 1824517, 1814634, 1550587962, 1819937, 1930055, 1817370, 2678508530, 1813569, 1809434, 1821228, 1304693847, 1819572, 1871181, 1818424, 1299581535, 1812375, 1811436, 1827228, 3338607035, 1813560, 1817285, 1814344, 1260438893, 1814266, 1810177, 1818213, 2249991579, 1816085, 1827097, 1813729, 2901309572, 1816096, 1800936, 1816500, 1246187256, 1815725, 1811486, 1815705, 1764025213, 1811443, 1810823, 1819251, 1717146747, 1818812, 1804682, 1817106, 2173491453, 1814156, 1815425, 1817628, 1423114308, 1821271, 1819340, 1817001, 2578426822, 1816894, 1786462, 1818236, 1812609748, 1815994, 1812637, 1815254, 5184738018, 1812675, 1810207, 1815799, 4295148675, 1809163, 1810734, 1813353, 1875881515, 1819248, 1815909, 1815863, 2948150966, 1822823, 1804002, 1811997, 9904114342, 1820360, 1807328, 1815693, 10675587442, 1813460, 1807102, 1811493, 8470499040, 1817310, 1807759, 1813000, 5864264476, 1813419, 1802623, 1819608, 7670929006, 1811108, 1801596, 1815028, 80101514950, 1816759, 1811552, 1815066, 7095588986, 1821393, 1815185, 1816483, 464018772810, 1813724]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [161954084874, 4863375, 369504241, 2896366, 2692376, 2506107, 548362263, 2395632, 2430827, 2325928, 760007801, 2536983, 2329553, 2277410, 837884210, 2324695, 2361276, 2369662, 704187931, 2354865, 2411130, 2352782, 454296817, 2323661, 2342984, 2347507, 335847866, 2527969, 2396862, 2401979, 569489402, 2419442, 2384377, 2499066, 1176147890, 2418373, 2439908, 2477499, 1965245188, 2352628, 2389955, 2521845, 2509655055, 2323365, 2358760, 2328514, 2578596679, 2330229, 2349646, 2365562, 2058656353, 2439151, 2363295, 2356016, 1226003666, 2425842, 2386579, 2436242, 544775661, 2472842, 2435631, 2463720, 348186314, 2278368, 2379236, 2412935, 639848025, 2280853, 2324613, 2384406, 1028161868, 2225535, 2227789, 2261290, 957972859, 2214188, 2202256, 2219932, 441757571, 2261873, 2246881, 2217359, 816512115, 2215724, 2176751, 2212777, 6144538945, 2183024, 2184777, 2218357, 26903287190, 2208755, 2215796, 2225054, 96460678096, 2189247, 2191302, 2192575, 435381849865, 2173595, 2175209, 2216104, 188300408503, 2197711, 2226099, 2167885, 475439837694, 2173881, 2170020, 2179741, 59353906335, 2185068, 2148795, 2171418, 8644064799, 2177220, 2145081, 2163896, 638028985, 2147527, 2140556, 2149403, 695637547, 2170933, 2139408, 2166396, 1334036989, 2134097, 2086498, 2141709, 1145246629, 2141992, 2142304, 2147097, 561139931, 2128983, 2144050, 2128028, 346421499, 2133403, 2141760, 2119927, 871154833, 2117332, 2117242, 2136534, 1934319016, 2126407, 2120437, 2124462, 2990984287, 2128918, 2114132, 2125678, 3521423951, 2121046, 2113212, 2126014, 3310963976, 2114820, 2103491, 2129669, 2505981085, 2110418, 2105420, 2112351, 1507328644, 2130016, 2107205, 2117651, 738678433, 2114494, 2108585, 2110985, 376030771, 2124048, 2109372, 2119867, 350249260, 2110334, 2102814, 2120599, 445508160, 2118973, 2112194, 2123108, 470760168, 2118835, 2119843, 2118069, 391070094, 2126596, 2102144, 2115960, 333835912, 2114583, 2123969, 2120575, 471448931, 2114782, 2193430, 2110588, 877712736, 2126416, 26593347, 2126883, 1452895175, 2111648, 2190236, 2116769, 1953411551, 2125546, 2167878, 2116636, 2145451571, 2114770, 2120009, 2115392, 1930905735, 2120583, 2113082, 2117083, 1421033038, 2119037, 2102744, 2118683, 857263808, 2121607, 2116070, 2111868, 471792536, 2124529, 2117954, 2128397, 339488163, 2129528, 2112489, 2119220, 367410781, 2119560, 2108723, 2126464, 387963471, 2120891, 2107540, 2115516, 341342294, 2115701, 2122319, 2125339, 393927879, 2128559, 2124436, 2116844, 907341353, 2119487, 2047762, 2118701, 2239431708, 2111920, 2118511, 2130175, 4459551105, 2129428, 2125328, 2132147, 7164343373, 2119126, 2110417, 2138372, 9548484685, 2128483, 2108831, 2124723, 10672493103, 2123613, 2117426, 2132866, 10020702811, 2127737, 2127253, 2131792, 7622547444, 2124071, 2128811, 2129776, 4413477549, 2122251, 2090204, 2121120, 1679757419, 2129973, 2126366, 2130218, 418851522, 2119308, 2128907, 2131906, 455575104, 2122781, 2130906, 2138007, 387684024, 2126764, 2125524, 2134492, 164630948875, 2134206, 2085365, 2131376, 174341631969, 2121751, 2125026, 2140163, 83439777529, 2135226, 2126189, 2156404, 63439635396, 2139431, 2106515, 2149755, 49603766513, 2137790, 2136294, 2141259, 36351654562, 2145278, 2137715, 2156215, 23987696240, 2140276, 2133047, 2145649, 13755094190, 2143794, 2141865, 2151752, 6587399101, 2142743, 2137910, 2153057, 2472347747, 2146166, 2134628, 2149788, 748518750, 2141999, 2159687, 2150160, 343476642, 2140037, 2127630, 2147140, 378020804, 2144163, 2141312, 2151405, 386799189, 2145240, 2146169, 2149740, 343707938, 2144753, 2142668, 2154208, 447162845, 2144782, 2131974, 2153112, 853071407, 2152739, 2145480, 2165001, 1492887349, 2145194, 2140571, 2149578, 2113011185, 2154381, 2159576, 2156047, 2413014571, 2150236, 2106908, 2158622, 2249497201, 2152358, 2156521, 2158000, 1697291802, 2156712, 2158385, 2157578, 1027872969, 2162188, 2148126, 2152902, 523243212, 2160855, 2155320, 2161588, 336722896, 2164004, 2160344, 2162175, 412372989, 2171393, 2244657, 2172762, 563992393, 2154569, 2636816, 2159278, 611730495, 2167767, 2142674, 2159905, 507238060, 2170843, 2156439, 2165960, 367127083, 2164092, 2171640, 2168474, 365625407, 2162943, 2188317, 2168480, 604328404, 2170981, 2156127, 2168089, 1013269474, 2172586, 2162300, 2173023, 1377862973, 2171821, 2161122, 2171071, 1454660015, 2166182, 2170308, 2168063, 1175055455, 2178942, 2135734, 2174983, 694398749, 2172129, 2173577, 2182432, 357059263, 2170018, 2163686, 2167285, 453398427, 2176925, 2142425, 2169905, 1037802077, 2165715, 2153834, 2164775, 1811618834, 2168965, 2168069, 2169711, 2287630908, 2167725, 2173561, 2177192, 2062575878, 2178471, 2163677, 2180014, 1205352346, 2173021, 2154806, 2173928, 396176709, 2177732, 2163865, 2173049, 799688300, 2173773, 2170884, 2173161, 3587754794, 2184778, 2162803, 2181420, 9356287870, 2169958, 2163470, 2187245, 17697157998, 2174523, 2165980, 2174318, 27001153666, 2180559, 2167310, 2177873, 35116481640, 2175850, 2174360, 2180276, 40227586593, 2170577]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395117187, "timestamp": "2021-09-20T12:17:42.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [119635639469, 4255272, 671716415, 2680131, 2474519, 2352334, 2917920863, 2219737, 2174395, 2136066, 1939077410, 2098185, 2056983, 2051687, 570488694, 2046949, 2042822, 2027607, 2881048467, 2019039, 2031321, 2005743, 603083077, 2018202, 2006345, 2021488, 2381788798, 2060483, 2043842, 2047326, 962386990, 2068334, 2060564, 2083185, 797847096, 2106679, 2112253, 2137336, 2782924136, 2134730, 2159081, 2167633, 1151213469, 2206379, 2220983, 2257536, 4081398592, 2253018, 2287231, 2299588, 1849925494, 2368806, 2327945, 2381975, 2041557267, 2419225, 2433829, 2477125, 8532152950, 2524109, 2522770, 2577877, 1011687996, 2578336, 2603953, 2651475, 6547260475, 2674280, 2679493, 2744927, 3817913489, 2757316, 2747537, 2793971, 4819109232, 2828984, 2838614, 2895148, 7147208538, 2977007, 2979887, 3004688, 3615146696, 3038769, 3019792, 3135756, 13231477286, 3202044, 3135559, 3254708, 38156963305, 3320504, 3471573, 3351698, 81186670886, 3407257, 3385988, 3443198, 12647853379, 3432096, 3443847, 3591863, 225563440531, 3626488, 3744979, 3580795, 46239732212, 3691109, 3694494, 3701982, 24682041301, 3791391, 3739872, 3792376, 75310834466, 3885078, 3818276, 3893269, 12509366057, 3890486, 3828939, 3875131, 20777450432, 3964636, 3976340, 3966968, 16571356963, 3985707, 3969505, 3992643, 12341575311, 4068915, 4073211, 4062690, 38597945788, 4109275, 4152968, 4131186, 5518042363, 4205249, 4258290, 4186958, 6266629157, 4251194, 4266751, 4275830, 7694780919, 4348737, 4321510, 4342775, 5539846542, 4401716, 4389253, 4391052, 1725451069, 4443843, 4446400, 4467581, 5034380934, 4536712, 4500086, 4517073, 1236064822, 4572160, 4592891, 4580659, 4948052386, 4658477, 4644136, 4646397, 1091620929, 4684983, 4686274, 4691040, 5228178805, 4784893, 4734009, 4743946, 10111084173, 4808201, 4767400, 4807248, 5138657797, 4860622, 4855805, 4848596, 1888687179, 4900175, 4898540, 4889140, 4249037895, 4927971, 4830721, 4917007, 667508832, 4957638, 5007777, 4915731, 1066980605, 4949466, 4995160, 4906157, 884438875, 4916590, 262296257, 4902558, 869168062, 4907243, 4971047, 4883795, 7609989890, 4893881, 4872020, 4820669, 806999821, 4822984, 4831804, 4799542, 1542502389, 4793396, 4767107, 4744963, 5379199807, 4736965, 4722579, 4714718, 2048619447, 4718790, 4678714, 4679973, 917224004, 4651715, 4664543, 4638575, 4027240616, 4610553, 4621565, 4595931, 1005367768, 4587649, 4562327, 4551308, 1869747992, 4566385, 4543895, 4544621, 1258231581, 4541071, 4560168, 4521828, 1641189323, 4522372, 4519364, 4493016, 7248112900, 4502231, 4415946, 4461651, 6451234525, 4454905, 4478554, 4474200, 1240240308, 4479603, 4479738, 4444917, 10496440670, 4448117, 4429472, 4461774, 982618619, 4477035, 4412558, 4448575, 2971627581, 4453861, 4447390, 4452200, 1228569356, 4446111, 4448594, 4438398, 7535737706, 4469393, 4441198, 4434316, 23641776198, 4469856, 4411043, 4451041, 12737376385, 4468495, 4475272, 4483158, 9064448539, 4477946, 4439399, 4468952, 37591314058, 4484336, 4478467, 4462411, 95218204478, 4470622, 4480310, 4483328, 250288279757, 4498262, 4411161, 4495423, 37091501971, 4512045, 4525879, 4513687, 88565648472, 4533061, 4512091, 4530134, 158433315204, 4550851, 4507564, 4542520, 6557915919, 4577213, 4571716, 4589344, 8122574362, 4602220, 4575683, 4597628, 7751637273, 4606798, 4572394, 4615101, 630080493, 4636335, 4624591, 4630917, 9169897828, 4658222, 4649234, 4669512, 4074012549, 4700911, 4681653, 4712270, 1847761311, 4721211, 4743815, 4735023, 4986463864, 4742090, 4729082, 4785202, 909909025, 4783195, 4755411, 4810664, 1829189124, 4795333, 4822257, 4830705, 1085136445, 4854822, 4846339, 4869078, 654782906, 4870112, 4867318, 4903489, 3748472646, 4924311, 4904722, 4939579, 2415446045, 4955886, 4949517, 4960174, 1457291658, 4995301, 4996163, 5002704, 1674986313, 5026959, 4970237, 5064173, 767472095, 5100484, 5075941, 5094377, 970142752, 5114115, 5121866, 5148993, 3046626514, 5174041, 5162153, 5171834, 2137016079, 5204044, 5225671, 5214908, 893629756, 5250517, 5242218, 5236433, 1348018875, 5278878, 6102752, 5331054, 719573941, 5315596, 5489618, 5340424, 3641995508, 5350760, 5447340, 5373626, 892362322, 5379887, 5383734, 5409205, 612971831, 5417541, 5430817, 5420229, 4062276194, 5440174, 5453381, 5465152, 950479894, 5474726, 5454903, 5487224, 3903157705, 5506811, 5480067, 5533412, 629138022, 5527806, 5510201, 5550810, 1813149530, 5545186, 5542315, 5557402, 6128381909, 5585782, 5571776, 5587890, 665096331, 5629518, 5591925, 5582964, 4520414580, 5581577, 5589994, 5590810, 3660520955, 5576189, 5540366, 5561288, 3754032791, 5583727, 5589641, 5598431, 787545096, 5594006, 5576145, 5577409, 4983100029, 5609603, 5580912, 5603910, 4505958522, 5584752, 5557097, 5573859, 16923227021, 5586322, 5553117, 5563776, 13967508486, 5565767, 5532603, 5586610, 19809642846, 5564341, 5533362, 5561687, 94431238461, 5568977, 5563157, 5571947, 26121008869, 5547574, 5543271, 5546007, 20935891947, 5545895, 5519016, 5539030, 238901401341, 5540899, 5514558, 5537403, 13308528529, 5550086, 5518032, 5556922, 127887978852, 5518207]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [119635639469, 4255272, 671716415, 2680131, 2474519, 2352334, 2917920863, 2219737, 2174395, 2136066, 1939077410, 2098185, 2056983, 2051687, 570488694, 2046949, 2042822, 2027607, 2881048467, 2019039, 2031321, 2005743, 603083077, 2018202, 2006345, 2021488, 2381788798, 2060483, 2043842, 2047326, 962386990, 2068334, 2060564, 2083185, 797847096, 2106679, 2112253, 2137336, 2782924136, 2134730, 2159081, 2167633, 1151213469, 2206379, 2220983, 2257536, 4081398592, 2253018, 2287231, 2299588, 1849925494, 2368806, 2327945, 2381975, 2041557267, 2419225, 2433829, 2477125, 8532152950, 2524109, 2522770, 2577877, 1011687996, 2578336, 2603953, 2651475, 6547260475, 2674280, 2679493, 2744927, 3817913489, 2757316, 2747537, 2793971, 4819109232, 2828984, 2838614, 2895148, 7147208538, 2977007, 2979887, 3004688, 3615146696, 3038769, 3019792, 3135756, 13231477286, 3202044, 3135559, 3254708, 38156963305, 3320504, 3471573, 3351698, 81186670886, 3407257, 3385988, 3443198, 12647853379, 3432096, 3443847, 3591863, 225563440531, 3626488, 3744979, 3580795, 46239732212, 3691109, 3694494, 3701982, 24682041301, 3791391, 3739872, 3792376, 75310834466, 3885078, 3818276, 3893269, 12509366057, 3890486, 3828939, 3875131, 20777450432, 3964636, 3976340, 3966968, 16571356963, 3985707, 3969505, 3992643, 12341575311, 4068915, 4073211, 4062690, 38597945788, 4109275, 4152968, 4131186, 5518042363, 4205249, 4258290, 4186958, 6266629157, 4251194, 4266751, 4275830, 7694780919, 4348737, 4321510, 4342775, 5539846542, 4401716, 4389253, 4391052, 1725451069, 4443843, 4446400, 4467581, 5034380934, 4536712, 4500086, 4517073, 1236064822, 4572160, 4592891, 4580659, 4948052386, 4658477, 4644136, 4646397, 1091620929, 4684983, 4686274, 4691040, 5228178805, 4784893, 4734009, 4743946, 10111084173, 4808201, 4767400, 4807248, 5138657797, 4860622, 4855805, 4848596, 1888687179, 4900175, 4898540, 4889140, 4249037895, 4927971, 4830721, 4917007, 667508832, 4957638, 5007777, 4915731, 1066980605, 4949466, 4995160, 4906157, 884438875, 4916590, 262296257, 4902558, 869168062, 4907243, 4971047, 4883795, 7609989890, 4893881, 4872020, 4820669, 806999821, 4822984, 4831804, 4799542, 1542502389, 4793396, 4767107, 4744963, 5379199807, 4736965, 4722579, 4714718, 2048619447, 4718790, 4678714, 4679973, 917224004, 4651715, 4664543, 4638575, 4027240616, 4610553, 4621565, 4595931, 1005367768, 4587649, 4562327, 4551308, 1869747992, 4566385, 4543895, 4544621, 1258231581, 4541071, 4560168, 4521828, 1641189323, 4522372, 4519364, 4493016, 7248112900, 4502231, 4415946, 4461651, 6451234525, 4454905, 4478554, 4474200, 1240240308, 4479603, 4479738, 4444917, 10496440670, 4448117, 4429472, 4461774, 982618619, 4477035, 4412558, 4448575, 2971627581, 4453861, 4447390, 4452200, 1228569356, 4446111, 4448594, 4438398, 7535737706, 4469393, 4441198, 4434316, 23641776198, 4469856, 4411043, 4451041, 12737376385, 4468495, 4475272, 4483158, 9064448539, 4477946, 4439399, 4468952, 37591314058, 4484336, 4478467, 4462411, 95218204478, 4470622, 4480310, 4483328, 250288279757, 4498262, 4411161, 4495423, 37091501971, 4512045, 4525879, 4513687, 88565648472, 4533061, 4512091, 4530134, 158433315204, 4550851, 4507564, 4542520, 6557915919, 4577213, 4571716, 4589344, 8122574362, 4602220, 4575683, 4597628, 7751637273, 4606798, 4572394, 4615101, 630080493, 4636335, 4624591, 4630917, 9169897828, 4658222, 4649234, 4669512, 4074012549, 4700911, 4681653, 4712270, 1847761311, 4721211, 4743815, 4735023, 4986463864, 4742090, 4729082, 4785202, 909909025, 4783195, 4755411, 4810664, 1829189124, 4795333, 4822257, 4830705, 1085136445, 4854822, 4846339, 4869078, 654782906, 4870112, 4867318, 4903489, 3748472646, 4924311, 4904722, 4939579, 2415446045, 4955886, 4949517, 4960174, 1457291658, 4995301, 4996163, 5002704, 1674986313, 5026959, 4970237, 5064173, 767472095, 5100484, 5075941, 5094377, 970142752, 5114115, 5121866, 5148993, 3046626514, 5174041, 5162153, 5171834, 2137016079, 5204044, 5225671, 5214908, 893629756, 5250517, 5242218, 5236433, 1348018875, 5278878, 6102752, 5331054, 719573941, 5315596, 5489618, 5340424, 3641995508, 5350760, 5447340, 5373626, 892362322, 5379887, 5383734, 5409205, 612971831, 5417541, 5430817, 5420229, 4062276194, 5440174, 5453381, 5465152, 950479894, 5474726, 5454903, 5487224, 3903157705, 5506811, 5480067, 5533412, 629138022, 5527806, 5510201, 5550810, 1813149530, 5545186, 5542315, 5557402, 6128381909, 5585782, 5571776, 5587890, 665096331, 5629518, 5591925, 5582964, 4520414580, 5581577, 5589994, 5590810, 3660520955, 5576189, 5540366, 5561288, 3754032791, 5583727, 5589641, 5598431, 787545096, 5594006, 5576145, 5577409, 4983100029, 5609603, 5580912, 5603910, 4505958522, 5584752, 5557097, 5573859, 16923227021, 5586322, 5553117, 5563776, 13967508486, 5565767, 5532603, 5586610, 19809642846, 5564341, 5533362, 5561687, 94431238461, 5568977, 5563157, 5571947, 26121008869, 5547574, 5543271, 5546007, 20935891947, 5545895, 5519016, 5539030, 238901401341, 5540899, 5514558, 5537403, 13308528529, 5550086, 5518032, 5556922, 127887978852, 5518207]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [394471473937, 4222049, 1973394760, 2701312, 2471480, 2321889, 2147458534, 2176197, 2136220, 2097034, 1970485086, 2200218, 2032860, 2006626, 2306646646, 2033011, 2059308, 2045896, 2204130752, 2038702, 2043978, 2003477, 1470760753, 1997490, 2001205, 2010698, 1450737404, 2123066, 2038933, 2028633, 1877031297, 2047415, 2026399, 2098832, 1360023714, 2039818, 2063838, 2077618, 2019233502, 2005641, 2030664, 2101978, 4854321776, 1961914, 1970706, 1971452, 1615401102, 1973462, 1996898, 1989010, 1273935635, 2042395, 1992663, 1987302, 3513571735, 2037067, 2013735, 2035779, 4062938557, 2075926, 2036086, 2057759, 4186341234, 1956054, 1997371, 2019746, 4704769255, 1941337, 1970125, 2018493, 2657985242, 1907330, 1913512, 1914947, 5168972539, 1894759, 1893592, 1899283, 4647824029, 1923224, 1907394, 1888433, 4550565714, 1916048, 1864614, 1885752, 20067858161, 1882696, 1875494, 1885891, 12528712545, 1889749, 1911745, 1895643, 9774736320, 1877241, 1884387, 1873123, 452066812174, 1877765, 1868914, 1891693, 112752472161, 1876385, 1898362, 1863263, 11047829608, 1869869, 1858654, 1856035, 95532911260, 1869412, 1852727, 1854834, 81103187618, 1866091, 1842663, 1853493, 8973913626, 1850318, 1839601, 1844325, 2843889671, 1860786, 1845545, 1845059, 1763344058, 1839846, 1817448, 1839623, 4472452987, 1840837, 1840469, 1837027, 4879309995, 1833851, 1842864, 1828054, 1839848802, 1841650, 1826311, 1830277, 4200373594, 1831703, 1826410, 1834432, 1257989031, 1830987, 1826841, 1835227, 3411025178, 1833672, 1826836, 1817782, 2120246690, 1828378, 1825923, 1827467, 5334552311, 1830618, 1816544, 1829664, 1833711551, 1826086, 1829260, 1831092, 1429575555, 1827666, 1823014, 1826255, 3000758440, 1831923, 1826265, 1830801, 1408368293, 1830516, 1822807, 1826065, 2005707854, 1824993, 1808149, 1824331, 2151237847, 1823104, 1830166, 1831752, 1887176642, 1820350, 1824891, 1825382, 1442849013, 1823097, 1815701, 1824411, 1703076657, 1818138, 1846420, 1824064, 2880423340, 1825654, 1917816, 1821443, 1334804721, 1824609, 19551271, 1815625, 1803196559, 1824426, 1856341, 1818409, 3663080646, 1831064, 1834233, 1833440, 1934269139, 1812052, 1820662, 1824055, 1558476615, 1823761, 1814765, 1817369, 1715800549, 1816211, 1814219, 1829839, 1404572296, 1820637, 1821593, 1830034, 2274213740, 1817458, 1824370, 1814587, 1737926341, 1821858, 1824401, 1825186, 1700472862, 1828140, 1819575, 1826636, 1883996266, 1820657, 1809158, 1832452, 1447538644, 1820348, 1821188, 1823102, 2440683668, 1823703, 1823999, 1826729, 3609676156, 1827333, 1791547, 1820297, 2771498279, 1821629, 1818057, 1823572, 2374778142, 1821580, 1819418, 1816753, 10405246034, 1828596, 1812285, 1827647, 5275178423, 1822163, 1819872, 1815545, 2853083617, 1825131, 1816423, 1828316, 2227113214, 1825493, 1825621, 1824360, 9570716380, 1814138, 1824607, 1821811, 4412818436, 1821634, 1805476, 1831320, 2339413463, 1823018, 1820931, 1824886, 2502870335, 1825366, 1813614, 1825434, 19455980866, 1822742, 1822199, 1817495, 20196439523, 1817866, 1815225, 1824777, 3387463439, 1829518, 1785332, 1823321, 1061461684812, 1821279, 1819942, 1828818, 57267123001, 1818361, 1821869, 1831902, 14333951359, 1819059, 1809051, 1830670, 27756794201, 1826600, 1819589, 1828302, 8824511560, 1828887, 1815590, 1825323, 9469526608, 1811397, 1809928, 1823360, 13733340615, 1822749, 1816295, 1823402, 3762070563, 1828879, 1817533, 1829311, 5150605789, 1829218, 1819954, 1826486, 2997891872, 1825625, 1832958, 1826164, 5283445715, 1825747, 1811184, 1821924, 2365435432, 1823521, 1820174, 1818138, 1667789519, 1829425, 1822574, 1825144, 2201079677, 1819043, 1817791, 1828696, 2161718576, 1822411, 1814351, 1823032, 2459661364, 1822961, 1805698, 1813184, 1336918118, 1827442, 1819200, 1817158, 1855440509, 1812948, 1821320, 1827005, 2078334927, 1827657, 1804118, 1826196, 1524105162, 1817976, 1817936, 1820060, 2944577211, 1827507, 1821393, 1825100, 1325216924, 1823098, 1819340, 1820494, 1903509248, 1819198, 1819726, 1821102, 2964227452, 1826736, 1829408, 1816163, 1564917630, 1815488, 1936034, 1818389, 2660136713, 1818465, 1820719, 1816537, 1304250721, 1819056, 1868561, 1815464, 1311516850, 1817671, 1816910, 1814541, 3306756495, 1823963, 1824042, 1814912, 1258600849, 1820026, 1819537, 1820581, 2245812969, 1815631, 1824352, 1821309, 2853493468, 1818037, 1799586, 1806249, 1251974292, 1814088, 1817241, 1822117, 1751273260, 1820632, 1817463, 1821745, 1700446229, 1816745, 1802402, 1818266, 2179808960, 1815798, 1816001, 1823544, 1424179010, 1820188, 1821900, 1820409, 2569577030, 1821636, 1798478, 1814354, 1793768437, 1819392, 1807997, 1817728, 5248118626, 1813455, 1807261, 1816854, 4294467811, 1814286, 1804653, 1820023, 1854380464, 1814723, 1814019, 1815005, 2955624065, 1816707, 1806322, 1807577, 9884650443, 1818698, 1817001, 1810314, 10679592948, 1816792, 1816629, 1808631, 8477633519, 1813392, 1808577, 1811756, 5841322193, 1810665, 1810598, 1824840, 7651147850, 1809855, 1805976, 1818470, 80101592786, 1820176, 1807715, 1813547, 7080852105, 1817565, 1806501, 1816400, 464136885858, 1807467]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [163614739643, 4855646, 370306655, 2899238, 2699588, 2512776, 549823757, 2390317, 2431519, 2326500, 762275991, 2538808, 2335574, 2283662, 840847332, 2330565, 2372254, 2374654, 706881687, 2362153, 2404317, 2343049, 455417424, 2325627, 2340836, 2354007, 336007296, 2526208, 2383497, 2397232, 570297396, 2425980, 2381435, 2493911, 1179862158, 2408730, 2441632, 2482396, 1973247167, 2359351, 2402555, 2526426, 2520759695, 2326128, 2367851, 2323093, 2591778786, 2336462, 2346125, 2363669, 2071018684, 2424640, 2363890, 2356403, 1234926040, 2440502, 2391404, 2432982, 549085721, 2478383, 2446314, 2454967, 347893364, 2293396, 2359686, 2409243, 637117174, 2274130, 2316226, 2389500, 1025648705, 2221717, 2231930, 2260215, 956548574, 2222703, 2207950, 2225656, 442860608, 2248676, 2254230, 2219323, 821545797, 2224816, 2184184, 2209368, 6157384539, 2194407, 2189342, 2204896, 26932237928, 2199197, 2220979, 2224825, 96526561875, 2199289, 2198984, 2194078, 435559579448, 2186419, 2162002, 2219754, 188296908020, 2212259, 2217061, 2164384, 475162249177, 2183618, 2167567, 2180402, 59251547890, 2180438, 2154340, 2163966, 8602988521, 2174629, 2154180, 2178250, 630123020, 2147457, 2129686, 2149664, 704318270, 2169913, 2144798, 2162689, 1348153773, 2139664, 2096319, 2139586, 1156500237, 2146095, 2138871, 2144138, 568016333, 2130002, 2148782, 2137798, 348177381, 2134084, 2143138, 2132783, 869246743, 2124142, 2110822, 2134771, 1929658758, 2135039, 2110627, 2124027, 2983222783, 2120026, 2124181, 2125797, 3511802450, 2114602, 2111904, 2114749, 3298897113, 2120035, 2102673, 2130048, 2493568394, 2122679, 2108975, 2122007, 1496451725, 2124189, 2111891, 2120719, 731315118, 2115868, 2110423, 2111591, 373426438, 2127745, 2102600, 2118958, 352816512, 2110333, 2102615, 2124029, 450931142, 2125472, 2107248, 2120167, 476636758, 2122141, 2120951, 2117706, 395035712, 2115904, 2102133, 2112192, 334408756, 2123796, 2127187, 2122050, 468751868, 2119011, 2200078, 2113259, 873189483, 2123341, 26624475, 2117486, 1447472497, 2123906, 2168292, 2122273, 1948424130, 2115868, 2167216, 2122377, 2141041528, 2111150, 2117992, 2117192, 1926426578, 2121842, 2120201, 2109299, 1416966359, 2106491, 2097130, 2122246, 854215419, 2120386, 2121145, 2110779, 470235967, 2112703, 2110270, 2118102, 340194199, 2121659, 2114717, 2115837, 370034730, 2116443, 2106239, 2123631, 391282434, 2115280, 2112909, 2124484, 342983773, 2122176, 2126809, 2132305, 391128135, 2124116, 2120873, 2121871, 898597205, 2112638, 2060050, 2123499, 2225235013, 2122339, 2124722, 2130824, 4443227766, 2124476, 2124570, 2133867, 7148118287, 2126324, 2118067, 2127945, 9535113396, 2124388, 2115156, 2134466, 10664048380, 2119011, 2120353, 2128961, 10016142302, 2120586, 2116539, 2121224, 7620107921, 2118183, 2122690, 2128852, 4412260945, 2126771, 2099219, 2123627, 1678962202, 2140750, 2131562, 2133391, 418993369, 2122922, 2122523, 2127385, 457967352, 2128981, 2131549, 2124743, 387207206, 2122237, 2112197, 2132735, 164541042649, 2134237, 2091004, 2137972, 174441102712, 2125907, 2127826, 2146240, 83508141675, 2133966, 2137563, 2141267, 63489250476, 2130138, 2113140, 2151887, 49638967833, 2137638, 2134311, 2139580, 36372524082, 2136453, 2133468, 2156169, 23993878624, 2127190, 2116030, 2148912, 13752512755, 2138350, 2148304, 2146626, 6581291366, 2143598, 2132116, 2154910, 2467502726, 2145453, 2136070, 2145526, 746378959, 2139086, 2163590, 2147712, 343599579, 2147733, 2130288, 2151849, 379592573, 2145422, 2137578, 2156943, 388309170, 2149085, 2136622, 2156239, 344562317, 2151637, 2146834, 2156420, 447789500, 2139618, 2133016, 2159011, 854310908, 2150651, 2145285, 2161287, 1494551930, 2149539, 2145329, 2161845, 2115247571, 2161859, 2151772, 2165735, 2414814099, 2149374, 2109014, 2159978, 2249189627, 2161076, 2153998, 2157771, 1694843522, 2158965, 2153038, 2169049, 1024647973, 2163054, 2154509, 2162850, 520676764, 2160316, 2145845, 2164868, 336232262, 2164081, 2162646, 2150445, 414980224, 2162149, 2226551, 2175094, 569128814, 2156578, 2631572, 2166833, 617702316, 2170509, 2142795, 2164012, 511974495, 2159919, 2154978, 2164853, 369394732, 2161684, 2166372, 2165278, 364726503, 2161929, 2186091, 2164373, 601289008, 2172532, 2157918, 2165431, 1009914507, 2163686, 2155888, 2158443, 1374301149, 2171938, 2158953, 2166182, 1452265094, 2171730, 2168833, 2178759, 1173455425, 2172814, 2133696, 2177899, 694033901, 2167488, 2171677, 2172786, 358476135, 2176400, 2162796, 2170942, 458065030, 2167223, 2140248, 2168592, 1047085245, 2180375, 2152122, 2177378, 1826378294, 2177232, 2163434, 2171527, 2306550795, 2187457, 2166444, 2180000, 2082122821, 2178522, 2169886, 2178843, 1219415906, 2174398, 2154346, 2180392, 400273482, 2175010, 2171627, 2180687, 790513641, 2172929, 2170712, 2173779, 3565256453, 2174236, 2168628, 2170395, 9322298033, 2176052, 2165715, 2184256, 17658121438, 2188779, 2168700, 2169693, 26958841769, 2175740, 2168195, 2184681, 35075566790, 2173320, 2165876, 2172720, 40186997567, 2178048]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395312500, "timestamp": "2021-09-20T12:17:44+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118937943479, 4256226, 666013777, 2660475, 2479094, 2344496, 2960543052, 2219041, 2177663, 2129720, 1946405431, 2098003, 2060799, 2055253, 579486779, 2043138, 2034581, 2023201, 2913207370, 2017508, 2028332, 2021978, 613128211, 2025769, 2010831, 2028314, 2404388263, 2072525, 2044810, 2045672, 979183201, 2065680, 2054295, 2074574, 810887054, 2098586, 2113424, 2134808, 2817128726, 2129083, 2156254, 2187904, 1171523408, 2212149, 2206165, 2244294, 4040484831, 2251065, 2278240, 2297937, 1881666621, 2360461, 2330862, 2383466, 2012608604, 2413868, 2436560, 2472637, 8478620792, 2529200, 2522333, 2579601, 1028800681, 2575581, 2606293, 2661742, 6566684045, 2668834, 2688694, 2740391, 3806172498, 2746826, 2755083, 2787742, 4854129676, 2843181, 2832906, 2902116, 7115931701, 2979985, 2980375, 3002085, 3629026038, 3052543, 3011592, 3108111, 13195840125, 3207503, 3143328, 3250623, 38004124652, 3311064, 3473172, 3363420, 81081903829, 3414075, 3378012, 3434094, 12575576033, 3441149, 3447222, 3580009, 225325572335, 3631468, 3747445, 3583036, 46351865013, 3675862, 3686974, 3710876, 24776417782, 3803198, 3745968, 3797633, 75418532917, 3872097, 3809667, 3890451, 12487874779, 3878441, 3817017, 3864773, 20707130034, 3963156, 3987088, 3957964, 16601354905, 3973028, 3952717, 4009614, 12347134191, 4078305, 4090531, 4058097, 38692321335, 4114502, 4185438, 4121260, 5558579493, 4214246, 4256963, 4218313, 6304500237, 4246512, 4247051, 4269741, 7748949303, 4353524, 4310902, 4348152, 5561940125, 4406368, 4390407, 4379762, 1707635325, 4454386, 4451209, 4451311, 5059428546, 4527491, 4477235, 4528882, 1235483594, 4581172, 4579358, 4552854, 4929377537, 4684298, 4641813, 4652174, 1091585945, 4685972, 4672409, 4694771, 5222031669, 4785369, 4734381, 4756829, 10097940565, 4824919, 4770847, 4807977, 5151948987, 4867903, 4846770, 4852589, 1893848253, 4881427, 4883011, 4886865, 4273270658, 4927924, 4862389, 4912430, 676767894, 4923627, 4967584, 4916250, 1061557485, 4939808, 5017740, 4899015, 878442862, 4946418, 262257174, 4898649, 867032528, 4884749, 4960499, 4866649, 7583504985, 4885910, 4822738, 4844444, 809886146, 4800216, 4826424, 4794922, 1544546292, 4815191, 4776217, 4757349, 5375072964, 4731181, 4715945, 4708488, 2053814262, 4713822, 4690142, 4669192, 921100978, 4658807, 4636164, 4643595, 4020826632, 4636244, 4616390, 4591934, 1008438398, 4585388, 4569695, 4574646, 1874271923, 4552831, 4540567, 4525623, 1261668679, 4538415, 4526476, 4512661, 1646546217, 4521702, 4510948, 4507483, 7241380094, 4505364, 4401782, 4493291, 6445012404, 4471386, 4464266, 4476398, 1236651052, 4493998, 4477634, 4456566, 10479789766, 4450791, 4445446, 4438324, 992929297, 4468379, 4436428, 4448144, 2976194910, 4458933, 4445015, 4448563, 1236439548, 4450055, 4450655, 4442156, 7549831922, 4454311, 4453166, 4465203, 23676947621, 4465388, 4424605, 4449150, 12718624035, 4492493, 4456314, 4466813, 9079320409, 4460358, 4462374, 4471116, 37646895713, 4489868, 4466107, 4461065, 95304436991, 4470184, 4473018, 4503040, 250122725080, 4514498, 4416024, 4496767, 37058078386, 4502350, 4505903, 4537261, 88532518345, 4540065, 4510611, 4540487, 158458767792, 4539891, 4499988, 4538362, 6579941900, 4569552, 4566266, 4577971, 8088401348, 4585995, 4601421, 4591256, 7746025493, 4627137, 4576779, 4608856, 632061849, 4629152, 4621147, 4649721, 9174573429, 4649944, 4661275, 4670348, 4066642846, 4672508, 4691390, 4705693, 1862034496, 4723114, 4719661, 4725458, 5011706651, 4773885, 4725753, 4766909, 908548266, 4769133, 4754887, 4796515, 1815282273, 4807471, 4820108, 4830181, 1100939893, 4864007, 4833471, 4875128, 659378814, 4902670, 4859599, 4894499, 3742454149, 4952206, 4916184, 4951959, 2418146413, 4968099, 4940957, 4970556, 1474033900, 5011168, 5007308, 5020942, 1674616454, 5023190, 4961630, 5045410, 777306151, 5095583, 5086102, 5088074, 981229440, 5117817, 5145571, 5113815, 3068759684, 5198729, 5169294, 5179484, 2132635569, 5210168, 5213564, 5233397, 893092731, 5244726, 5256018, 5250543, 1341816175, 5306776, 6144699, 5328560, 713627592, 5321507, 5512650, 5315134, 3605824070, 5369569, 5467695, 5358746, 894971220, 5380214, 5419992, 5413519, 622841241, 5419502, 5418866, 5440003, 4065227159, 5446260, 5436110, 5476486, 955421806, 5500234, 5463856, 5496848, 3921209555, 5520835, 5488328, 5511828, 638364003, 5527426, 5501390, 5543750, 1813439320, 5557631, 5578384, 5573934, 6114052300, 5529858, 5562499, 5569923, 674396907, 5625854, 5582630, 5578792, 4486670114, 5583676, 5566978, 5603043, 3632486618, 5610538, 5542347, 5583419, 3710939068, 5599092, 5595093, 5601312, 801796531, 5592711, 5575125, 5621967, 4950184851, 5591873, 5583212, 5592686, 4550388507, 5608874, 5547396, 5591039, 16971141267, 5589324, 5553230, 5581905, 14033936112, 5568772, 5590519, 5552323, 19771080619, 5545833, 5539510, 5562934, 94397921646, 5558780, 5563841, 5562997, 26038272075, 5545342, 5522388, 5520778, 20839057286, 5548871, 5519191, 5571939, 238644506106, 5560183, 5523463, 5556846, 13321398264, 5547296, 5528607, 5544728, 127653003396, 5521513]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118937943479, 4256226, 666013777, 2660475, 2479094, 2344496, 2960543052, 2219041, 2177663, 2129720, 1946405431, 2098003, 2060799, 2055253, 579486779, 2043138, 2034581, 2023201, 2913207370, 2017508, 2028332, 2021978, 613128211, 2025769, 2010831, 2028314, 2404388263, 2072525, 2044810, 2045672, 979183201, 2065680, 2054295, 2074574, 810887054, 2098586, 2113424, 2134808, 2817128726, 2129083, 2156254, 2187904, 1171523408, 2212149, 2206165, 2244294, 4040484831, 2251065, 2278240, 2297937, 1881666621, 2360461, 2330862, 2383466, 2012608604, 2413868, 2436560, 2472637, 8478620792, 2529200, 2522333, 2579601, 1028800681, 2575581, 2606293, 2661742, 6566684045, 2668834, 2688694, 2740391, 3806172498, 2746826, 2755083, 2787742, 4854129676, 2843181, 2832906, 2902116, 7115931701, 2979985, 2980375, 3002085, 3629026038, 3052543, 3011592, 3108111, 13195840125, 3207503, 3143328, 3250623, 38004124652, 3311064, 3473172, 3363420, 81081903829, 3414075, 3378012, 3434094, 12575576033, 3441149, 3447222, 3580009, 225325572335, 3631468, 3747445, 3583036, 46351865013, 3675862, 3686974, 3710876, 24776417782, 3803198, 3745968, 3797633, 75418532917, 3872097, 3809667, 3890451, 12487874779, 3878441, 3817017, 3864773, 20707130034, 3963156, 3987088, 3957964, 16601354905, 3973028, 3952717, 4009614, 12347134191, 4078305, 4090531, 4058097, 38692321335, 4114502, 4185438, 4121260, 5558579493, 4214246, 4256963, 4218313, 6304500237, 4246512, 4247051, 4269741, 7748949303, 4353524, 4310902, 4348152, 5561940125, 4406368, 4390407, 4379762, 1707635325, 4454386, 4451209, 4451311, 5059428546, 4527491, 4477235, 4528882, 1235483594, 4581172, 4579358, 4552854, 4929377537, 4684298, 4641813, 4652174, 1091585945, 4685972, 4672409, 4694771, 5222031669, 4785369, 4734381, 4756829, 10097940565, 4824919, 4770847, 4807977, 5151948987, 4867903, 4846770, 4852589, 1893848253, 4881427, 4883011, 4886865, 4273270658, 4927924, 4862389, 4912430, 676767894, 4923627, 4967584, 4916250, 1061557485, 4939808, 5017740, 4899015, 878442862, 4946418, 262257174, 4898649, 867032528, 4884749, 4960499, 4866649, 7583504985, 4885910, 4822738, 4844444, 809886146, 4800216, 4826424, 4794922, 1544546292, 4815191, 4776217, 4757349, 5375072964, 4731181, 4715945, 4708488, 2053814262, 4713822, 4690142, 4669192, 921100978, 4658807, 4636164, 4643595, 4020826632, 4636244, 4616390, 4591934, 1008438398, 4585388, 4569695, 4574646, 1874271923, 4552831, 4540567, 4525623, 1261668679, 4538415, 4526476, 4512661, 1646546217, 4521702, 4510948, 4507483, 7241380094, 4505364, 4401782, 4493291, 6445012404, 4471386, 4464266, 4476398, 1236651052, 4493998, 4477634, 4456566, 10479789766, 4450791, 4445446, 4438324, 992929297, 4468379, 4436428, 4448144, 2976194910, 4458933, 4445015, 4448563, 1236439548, 4450055, 4450655, 4442156, 7549831922, 4454311, 4453166, 4465203, 23676947621, 4465388, 4424605, 4449150, 12718624035, 4492493, 4456314, 4466813, 9079320409, 4460358, 4462374, 4471116, 37646895713, 4489868, 4466107, 4461065, 95304436991, 4470184, 4473018, 4503040, 250122725080, 4514498, 4416024, 4496767, 37058078386, 4502350, 4505903, 4537261, 88532518345, 4540065, 4510611, 4540487, 158458767792, 4539891, 4499988, 4538362, 6579941900, 4569552, 4566266, 4577971, 8088401348, 4585995, 4601421, 4591256, 7746025493, 4627137, 4576779, 4608856, 632061849, 4629152, 4621147, 4649721, 9174573429, 4649944, 4661275, 4670348, 4066642846, 4672508, 4691390, 4705693, 1862034496, 4723114, 4719661, 4725458, 5011706651, 4773885, 4725753, 4766909, 908548266, 4769133, 4754887, 4796515, 1815282273, 4807471, 4820108, 4830181, 1100939893, 4864007, 4833471, 4875128, 659378814, 4902670, 4859599, 4894499, 3742454149, 4952206, 4916184, 4951959, 2418146413, 4968099, 4940957, 4970556, 1474033900, 5011168, 5007308, 5020942, 1674616454, 5023190, 4961630, 5045410, 777306151, 5095583, 5086102, 5088074, 981229440, 5117817, 5145571, 5113815, 3068759684, 5198729, 5169294, 5179484, 2132635569, 5210168, 5213564, 5233397, 893092731, 5244726, 5256018, 5250543, 1341816175, 5306776, 6144699, 5328560, 713627592, 5321507, 5512650, 5315134, 3605824070, 5369569, 5467695, 5358746, 894971220, 5380214, 5419992, 5413519, 622841241, 5419502, 5418866, 5440003, 4065227159, 5446260, 5436110, 5476486, 955421806, 5500234, 5463856, 5496848, 3921209555, 5520835, 5488328, 5511828, 638364003, 5527426, 5501390, 5543750, 1813439320, 5557631, 5578384, 5573934, 6114052300, 5529858, 5562499, 5569923, 674396907, 5625854, 5582630, 5578792, 4486670114, 5583676, 5566978, 5603043, 3632486618, 5610538, 5542347, 5583419, 3710939068, 5599092, 5595093, 5601312, 801796531, 5592711, 5575125, 5621967, 4950184851, 5591873, 5583212, 5592686, 4550388507, 5608874, 5547396, 5591039, 16971141267, 5589324, 5553230, 5581905, 14033936112, 5568772, 5590519, 5552323, 19771080619, 5545833, 5539510, 5562934, 94397921646, 5558780, 5563841, 5562997, 26038272075, 5545342, 5522388, 5520778, 20839057286, 5548871, 5519191, 5571939, 238644506106, 5560183, 5523463, 5556846, 13321398264, 5547296, 5528607, 5544728, 127653003396, 5521513]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [396359561469, 4201264, 1978468563, 2698729, 2462220, 2331399, 2133215993, 2181227, 2138520, 2091968, 1984314385, 2199328, 2033336, 2008062, 2305879374, 2027886, 2055892, 2038940, 2194087894, 2037941, 2057520, 2011772, 1471228440, 1995213, 1995101, 2019686, 1456014085, 2131758, 2045717, 2028317, 1878333997, 2049188, 2020943, 2098694, 1361866258, 2032158, 2059473, 2074070, 2044669115, 2001728, 2032970, 2107047, 4850847726, 1973496, 1975737, 1976153, 1609825728, 1974977, 1992710, 1993430, 1287084287, 2040799, 1988172, 1989436, 3533332957, 2039793, 2014172, 2039013, 4027009932, 2071578, 2038904, 2054607, 4224189350, 1955129, 1999872, 2016626, 4745043558, 1931795, 1967960, 2011866, 2642945838, 1906420, 1917330, 1921973, 5191371188, 1899475, 1895025, 1899348, 4635997066, 1922321, 1915289, 1891542, 4542369579, 1901952, 1880259, 1895105, 19990950203, 1882112, 1878779, 1889458, 12415529854, 1889270, 1911469, 1892927, 9786535137, 1877013, 1882894, 1876560, 452231692271, 1881668, 1864248, 1889461, 113056741431, 1891062, 1890430, 1862504, 11061488035, 1867503, 1862816, 1858336, 95213197502, 1873373, 1848818, 1861160, 81267944221, 1862289, 1846989, 1850939, 9003267897, 1844376, 1849803, 1842587, 2804119128, 1856656, 1842168, 1849957, 1772032733, 1840823, 1820140, 1840855, 4487912378, 1841152, 1841922, 1841696, 4791543384, 1842031, 1846012, 1829999, 1847744001, 1843276, 1824277, 1827417, 4167340838, 1832570, 1827606, 1829809, 1257469541, 1831931, 1830873, 1832841, 3404358418, 1825507, 1820466, 1825851, 2103795106, 1826625, 1823892, 1835259, 5380787845, 1829349, 1818734, 1829484, 1854488071, 1831156, 1827185, 1824322, 1429833800, 1832754, 1829526, 1824999, 3011938407, 1825320, 1824795, 1824805, 1421181450, 1829211, 1811876, 1823246, 2006908021, 1820460, 1813394, 1824369, 2156092931, 1821500, 1819566, 1826147, 1893871178, 1832936, 1817852, 1828387, 1438996045, 1822467, 1813200, 1825986, 1695334900, 1827551, 1849489, 1820088, 2878478326, 1827785, 1918539, 1825920, 1336384551, 1823506, 19494883, 1829381, 1788760314, 1816681, 1862056, 1827651, 3669250642, 1825659, 1820764, 1819272, 1933331091, 1830714, 1823366, 1829098, 1547021255, 1820668, 1821235, 1821470, 1730088577, 1814549, 1809873, 1823489, 1403440605, 1823443, 1826184, 1824864, 2289391919, 1827519, 1820332, 1824377, 1750233153, 1817190, 1818299, 1825244, 1702813186, 1826584, 1820115, 1828872, 1880296455, 1827795, 1807236, 1827442, 1456884434, 1820236, 1821207, 1828751, 2461504897, 1821264, 1811174, 1824412, 3589773143, 1815658, 1791237, 1820369, 2777742466, 1829148, 1828368, 1825883, 2403727471, 1823683, 1824897, 1820614, 10407310821, 1824265, 1817429, 1823499, 5240483345, 1822929, 1821947, 1819716, 2852028972, 1817523, 1813880, 1818458, 2214293071, 1821558, 1817114, 1820017, 9502050902, 1822334, 1823992, 1827777, 4462432103, 1824560, 1812502, 1816483, 2336164866, 1824024, 1817780, 1820676, 2523504494, 1823114, 1824774, 1823288, 19335510822, 1821343, 1825705, 1828769, 20361269001, 1829844, 1818232, 1824051, 3417650745, 1830314, 1788390, 1833159, 1061389331027, 1829144, 1814074, 1820371, 57586137496, 1831702, 1818544, 1817766, 14303115901, 1825317, 1815935, 1827889, 27635138920, 1815478, 1817820, 1829075, 8867390800, 1822123, 1816139, 1829261, 9460490672, 1822570, 1806586, 1824120, 13633111123, 1816350, 1825282, 1827143, 3752952341, 1824815, 1816673, 1826771, 5161865742, 1824922, 1816299, 1825221, 2957870161, 1821135, 1826865, 1828447, 5307653278, 1821449, 1816025, 1827714, 2367498869, 1817795, 1813721, 1826920, 1676314379, 1824304, 1819483, 1817716, 2205740227, 1821837, 1815687, 1822199, 2156917248, 1821751, 1816741, 1829120, 2495600785, 1821573, 1815414, 1814761, 1337711154, 1829303, 1818419, 1826499, 1864901301, 1815744, 1818266, 1826750, 2094754449, 1829021, 1794918, 1820909, 1532104722, 1822559, 1814007, 1819521, 2942020107, 1819144, 1828300, 1823357, 1326333350, 1824684, 1827708, 1814519, 1903682559, 1819675, 1820594, 1818504, 2953633676, 1819235, 1826419, 1819754, 1554303294, 1820346, 1931959, 1809867, 2656168465, 1809944, 1821560, 1821798, 1303352762, 1816584, 1865924, 1820256, 1305038805, 1817675, 1819199, 1819446, 3310743739, 1816782, 1822000, 1816919, 1259181989, 1821664, 1810477, 1816943, 2255375758, 1820148, 1830117, 1816144, 2871563814, 1813276, 1801482, 1819525, 1248219732, 1820750, 1815251, 1822521, 1769203365, 1817615, 1814969, 1817758, 1709026944, 1811069, 1802378, 1819053, 2178244524, 1820940, 1819844, 1818549, 1425187791, 1814030, 1819949, 1815093, 2578534971, 1812601, 1790764, 1818527, 1806523711, 1817658, 1812709, 1824123, 5176308107, 1818944, 1818226, 1821763, 4289688801, 1809712, 1816394, 1808037, 1875670503, 1814007, 1815959, 1818979, 2941294284, 1807612, 1796085, 1809274, 9865913748, 1811946, 1807228, 1811992, 10761931834, 1811242, 1805578, 1810364, 8482513585, 1822147, 1805620, 1817045, 5826508298, 1810698, 1812764, 1808859, 7731271083, 1805723, 1810107, 1814315, 80177255110, 1812387, 1816604, 1816936, 7060167007, 1810943, 1816090, 1800584, 463425750223, 1816601]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [164168672528, 4852494, 369238072, 2902855, 2692452, 2515314, 548486758, 2395005, 2434859, 2329058, 760357950, 2538162, 2332213, 2278455, 839080674, 2319245, 2360450, 2365280, 705454877, 2357742, 2407811, 2353357, 455229214, 2326792, 2345513, 2356125, 337145151, 2523271, 2386677, 2396468, 572191133, 2415786, 2379829, 2484694, 1181134204, 2413084, 2452004, 2477432, 1973261565, 2352917, 2400543, 2514766, 2519558682, 2317401, 2365070, 2335778, 2589364230, 2316277, 2355866, 2360223, 2068476877, 2442587, 2356116, 2352480, 1233757764, 2423718, 2382550, 2434999, 548870998, 2476153, 2435723, 2455205, 348121316, 2295672, 2362172, 2402094, 637241330, 2277249, 2318018, 2387486, 1024704193, 2222167, 2221446, 2265873, 954947592, 2219394, 2207969, 2224141, 442681704, 2249814, 2247213, 2219126, 825110320, 2215921, 2178264, 2208725, 6166802239, 2192577, 2188308, 2200557, 26949866518, 2197254, 2229375, 2223075, 96548433340, 2190967, 2193171, 2185021, 435581629886, 2196055, 2172830, 2212210, 188290621181, 2196410, 2216611, 2172468, 475182709603, 2189162, 2166850, 2168182, 59263682709, 2180914, 2152806, 2172207, 8610449746, 2167193, 2147299, 2169666, 633701135, 2140656, 2139914, 2145951, 705646239, 2171825, 2145524, 2160732, 1349245307, 2137255, 2098378, 2144583, 1159077102, 2142670, 2139772, 2140615, 570776879, 2128819, 2140284, 2133845, 349762134, 2138162, 2132232, 2120308, 869244063, 2124579, 2116578, 2137660, 1926320547, 2133541, 2114598, 2115441, 2978926675, 2126928, 2118764, 2129182, 3507831789, 2120258, 2114130, 2130557, 3296424743, 2119490, 2104931, 2124848, 2492820432, 2112622, 2103320, 2112559, 1498371732, 2132809, 2111253, 2117379, 734470171, 2127542, 2107563, 2113094, 376633203, 2125695, 2105641, 2117528, 355824937, 2119408, 2101063, 2117148, 453564664, 2126449, 2110191, 2117370, 479413777, 2121727, 2116064, 2124903, 398170520, 2121649, 2096598, 2119756, 337487934, 2113165, 2133460, 2117516, 471350740, 2130057, 2190102, 2110017, 873994272, 2124686, 26578653, 2123643, 1446442047, 2116873, 2177949, 2114634, 1945844008, 2125330, 2164346, 2113962, 2137329694, 2115489, 2119187, 2125017, 1923983860, 2119913, 2121462, 2111580, 1415584999, 2118820, 2104173, 2128344, 853978691, 2124222, 2113409, 2117839, 470947014, 2120659, 2122427, 2118764, 341833984, 2118696, 2116601, 2126116, 371564729, 2119940, 2112947, 2125505, 392788754, 2127602, 2116226, 2116964, 344622310, 2118820, 2119599, 2134933, 393613208, 2118802, 2115841, 2123370, 901566843, 2118718, 2051606, 2128744, 2228473254, 2120638, 2117924, 2125219, 4444370659, 2119375, 2126072, 2140556, 7146028626, 2117394, 2112768, 2131472, 9529529596, 2131029, 2115426, 2132037, 10656688000, 2123880, 2126811, 2142238, 10006415119, 2128097, 2120498, 2125461, 7610971568, 2130158, 2137458, 2133013, 4406277915, 2123132, 2092349, 2125039, 1675565502, 2133362, 2121971, 2134152, 418343893, 2125101, 2120806, 2135404, 457626844, 2134340, 2119991, 2143668, 386728760, 2127021, 2115671, 2140014, 164568221084, 2136705, 2093084, 2136656, 174407647525, 2139283, 2129956, 2133831, 83483109128, 2134762, 2127314, 2133777, 63470490574, 2139709, 2106128, 2155970, 49626147785, 2130845, 2129031, 2150566, 36367773009, 2141610, 2130659, 2149565, 23995098185, 2139475, 2134530, 2153036, 13757203828, 2145545, 2142773, 2155175, 6586734119, 2141906, 2140410, 2148205, 2471182386, 2139591, 2135339, 2150823, 748334981, 2148843, 2168798, 2154700, 343867227, 2142749, 2119636, 2159234, 379110124, 2146099, 2142506, 2160535, 387407005, 2140174, 2142744, 2152400, 343905701, 2153595, 2142246, 2158991, 446747288, 2156683, 2135289, 2155166, 852018627, 2153025, 2152221, 2162024, 1491637648, 2146176, 2138206, 2153234, 2111037263, 2151705, 2154187, 2161310, 2410542944, 2148773, 2105697, 2157325, 2246556720, 2165583, 2154325, 2165826, 1693843326, 2161822, 2156285, 2170489, 1025083198, 2165295, 2147957, 2162034, 522269428, 2156521, 2147979, 2166100, 338155032, 2166633, 2165182, 2162745, 416314121, 2166955, 2235024, 2162030, 569621149, 2160754, 2656359, 2169120, 618267425, 2160780, 2139800, 2165461, 512625094, 2163035, 2170455, 2164122, 370030034, 2175017, 2168288, 2169988, 365602644, 2167735, 2181416, 2171580, 601712979, 2169154, 2150967, 2169858, 1008985937, 2169914, 2161116, 2175553, 1372540240, 2174756, 2155338, 2173073, 1450321386, 2175373, 2176972, 2179890, 1171925588, 2165630, 2142357, 2173598, 693930759, 2169833, 2169227, 2171131, 360131066, 2171131, 2156000, 2172420, 461216185, 2169601, 2141095, 2178770, 1050697700, 2168537, 2162613, 2176034, 1829433189, 2176570, 2171800, 2177496, 2307983024, 2171946, 2165177, 2179199, 2082714822, 2178213, 2167886, 2180094, 1220359893, 2167776, 2158772, 2167658, 402558376, 2170828, 2163879, 2188242, 793972825, 2183068, 2166688, 2171113, 3568090408, 2180631, 2172878, 2174054, 9323516794, 2180995, 2157552, 2184554, 17653391240, 2171224, 2172483, 2171655, 26948112037, 2177609, 2164395, 2169370, 35058721705, 2169082, 2170138, 2168893, 40161933788, 2162244]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395507812, "timestamp": "2021-09-20T12:17:44.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118605624526, 4240021, 658199403, 2660791, 2484676, 2351531, 3015627449, 2214068, 2180475, 2139893, 1967952685, 2099953, 2052088, 2046479, 589976711, 2047141, 2043351, 2029454, 2970507729, 2016379, 2025742, 2012003, 628020090, 2013088, 2016493, 2020426, 2420511801, 2066646, 2050699, 2051316, 1002765051, 2065476, 2059174, 2079109, 825424700, 2105572, 2114492, 2129408, 2872133248, 2144659, 2162572, 2169757, 1200418971, 2215210, 2211427, 2247320, 4004239016, 2254686, 2279003, 2300046, 1921005054, 2361012, 2327806, 2384121, 1979590762, 2414234, 2435061, 2470514, 8403219390, 2534070, 2526874, 2590511, 1054563023, 2581578, 2596687, 2649290, 6607781328, 2667064, 2684482, 2738463, 3756666015, 2748233, 2749979, 2800176, 4929584066, 2835326, 2838005, 2906220, 7107160185, 2967004, 2993496, 3013396, 3608449559, 3061542, 3008837, 3116067, 13155324106, 3212639, 3148412, 3265683, 37866559810, 3312084, 3482423, 3355114, 80939473164, 3417589, 3390846, 3445785, 12473005022, 3432972, 3449475, 3574001, 225194396611, 3633461, 3747092, 3577993, 46571285944, 3668068, 3709266, 3701796, 24913000800, 3817263, 3739614, 3791907, 75673198225, 3899632, 3800943, 3879474, 12454402162, 3887158, 3809854, 3874169, 20598362046, 3978491, 3966404, 3952984, 16637831321, 3974622, 3951310, 3986595, 12326934837, 4083558, 4065473, 4082567, 38709771596, 4112793, 4166860, 4135983, 5586654062, 4216766, 4231999, 4214527, 6339415753, 4239597, 4248091, 4273167, 7789393103, 4355492, 4324818, 4328289, 5598131016, 4377016, 4379913, 4392153, 1683035486, 4471728, 4452239, 4469680, 5109782838, 4512935, 4478125, 4536666, 1221912946, 4567632, 4570305, 4569739, 4882008148, 4670053, 4651783, 4633215, 1075944565, 4688684, 4695323, 4683060, 5208186192, 4760545, 4726296, 4775521, 10042921838, 4809126, 4788453, 4796046, 5153848623, 4866432, 4849536, 4856173, 1891276396, 4881282, 4919041, 4888538, 4277400161, 4923263, 4855651, 4878007, 680698629, 4943323, 4987460, 4897809, 1058059921, 4928534, 5002889, 4903098, 871855644, 4923385, 261980339, 4888394, 863341802, 4890859, 4951381, 4855598, 7534494138, 4887592, 4846624, 4815977, 802118525, 4815350, 4839990, 4795707, 1529078811, 4801031, 4777267, 4739179, 5336754102, 4752272, 4719721, 4720007, 2034253421, 4721475, 4673818, 4664648, 927800986, 4660736, 4638905, 4632136, 3990988853, 4643655, 4586625, 4585067, 1020969288, 4589368, 4578438, 4576464, 1877879784, 4571803, 4531569, 4547273, 1277964041, 4549235, 4533957, 4535605, 1645687767, 4522774, 4486484, 4490273, 7240652774, 4490221, 4415007, 4472655, 6435541134, 4472544, 4460822, 4474319, 1244083977, 4469940, 4458462, 4460695, 10445838220, 4459087, 4432282, 4455960, 1008619621, 4459241, 4447309, 4434186, 3005948080, 4452194, 4445122, 4430004, 1239845588, 4454328, 4450302, 4453006, 7548295158, 4438723, 4455744, 4464047, 23746623639, 4464006, 4429457, 4456778, 12693531964, 4450945, 4447636, 4457813, 9123766001, 4450409, 4459127, 4470972, 37706208503, 4486389, 4494309, 4491664, 95504494703, 4479581, 4461745, 4494037, 250038191334, 4518917, 4434136, 4501817, 36991656958, 4503290, 4516654, 4526566, 88536997907, 4538751, 4533695, 4533992, 158437761346, 4533084, 4525918, 4558533, 6618784200, 4572408, 4541686, 4581190, 8038557496, 4591255, 4606765, 4603003, 7718644899, 4599740, 4573685, 4625952, 628940704, 4622769, 4620372, 4632148, 9225642575, 4651161, 4650151, 4665099, 4064793023, 4671350, 4693105, 4702053, 1898665005, 4710997, 4725137, 4729579, 5039348724, 4755987, 4743727, 4753873, 914290378, 4789761, 4783845, 4801339, 1790131104, 4796631, 4807192, 4821752, 1114890396, 4835410, 4849291, 4876708, 663303234, 4873954, 4861026, 4905083, 3748642021, 4927242, 4919600, 4922741, 2422265265, 4970568, 4950039, 4992359, 1505396167, 5002060, 4983655, 5007728, 1683840942, 5039483, 4964292, 5051242, 791697859, 5089501, 5093567, 5099366, 998834949, 5132937, 5133496, 5148911, 3114641044, 5174128, 5165759, 5176729, 2139557043, 5189771, 5190270, 5212885, 893113004, 5255364, 5245041, 5259127, 1339798010, 5284784, 6160173, 5308821, 707156694, 5316254, 5483594, 5333581, 3560106285, 5341740, 5434983, 5389216, 903608059, 5377211, 5412736, 5398906, 637771894, 5438144, 5409357, 5414578, 4097212239, 5452880, 5469093, 5472849, 965026241, 5498000, 5483632, 5476000, 3968850645, 5492902, 5487350, 5525450, 653112329, 5524728, 5524119, 5524430, 1819407624, 5519634, 5527657, 5585407, 6072316065, 5551692, 5593203, 5593435, 686996743, 5642593, 5592510, 5587245, 4437262950, 5611687, 5567643, 5565764, 3570475909, 5637455, 5534712, 5599530, 3659290961, 5581708, 5549888, 5610597, 824666075, 5596314, 5577579, 5599870, 4919951753, 5605621, 5565874, 5583701, 4614310764, 5578106, 5569622, 5600631, 17056777094, 5572385, 5533620, 5574570, 14162091310, 5582547, 5554416, 5568672, 19747745310, 5573717, 5568188, 5566600, 94406630421, 5545686, 5526735, 5561221, 25930689152, 5567112, 5518337, 5553092, 20726243274, 5532608, 5516879, 5556822, 238123071637, 5530535, 5544221, 5539578, 13358712228, 5561505, 5526838, 5551562, 127224347649, 5554017]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118605624526, 4240021, 658199403, 2660791, 2484676, 2351531, 3015627449, 2214068, 2180475, 2139893, 1967952685, 2099953, 2052088, 2046479, 589976711, 2047141, 2043351, 2029454, 2970507729, 2016379, 2025742, 2012003, 628020090, 2013088, 2016493, 2020426, 2420511801, 2066646, 2050699, 2051316, 1002765051, 2065476, 2059174, 2079109, 825424700, 2105572, 2114492, 2129408, 2872133248, 2144659, 2162572, 2169757, 1200418971, 2215210, 2211427, 2247320, 4004239016, 2254686, 2279003, 2300046, 1921005054, 2361012, 2327806, 2384121, 1979590762, 2414234, 2435061, 2470514, 8403219390, 2534070, 2526874, 2590511, 1054563023, 2581578, 2596687, 2649290, 6607781328, 2667064, 2684482, 2738463, 3756666015, 2748233, 2749979, 2800176, 4929584066, 2835326, 2838005, 2906220, 7107160185, 2967004, 2993496, 3013396, 3608449559, 3061542, 3008837, 3116067, 13155324106, 3212639, 3148412, 3265683, 37866559810, 3312084, 3482423, 3355114, 80939473164, 3417589, 3390846, 3445785, 12473005022, 3432972, 3449475, 3574001, 225194396611, 3633461, 3747092, 3577993, 46571285944, 3668068, 3709266, 3701796, 24913000800, 3817263, 3739614, 3791907, 75673198225, 3899632, 3800943, 3879474, 12454402162, 3887158, 3809854, 3874169, 20598362046, 3978491, 3966404, 3952984, 16637831321, 3974622, 3951310, 3986595, 12326934837, 4083558, 4065473, 4082567, 38709771596, 4112793, 4166860, 4135983, 5586654062, 4216766, 4231999, 4214527, 6339415753, 4239597, 4248091, 4273167, 7789393103, 4355492, 4324818, 4328289, 5598131016, 4377016, 4379913, 4392153, 1683035486, 4471728, 4452239, 4469680, 5109782838, 4512935, 4478125, 4536666, 1221912946, 4567632, 4570305, 4569739, 4882008148, 4670053, 4651783, 4633215, 1075944565, 4688684, 4695323, 4683060, 5208186192, 4760545, 4726296, 4775521, 10042921838, 4809126, 4788453, 4796046, 5153848623, 4866432, 4849536, 4856173, 1891276396, 4881282, 4919041, 4888538, 4277400161, 4923263, 4855651, 4878007, 680698629, 4943323, 4987460, 4897809, 1058059921, 4928534, 5002889, 4903098, 871855644, 4923385, 261980339, 4888394, 863341802, 4890859, 4951381, 4855598, 7534494138, 4887592, 4846624, 4815977, 802118525, 4815350, 4839990, 4795707, 1529078811, 4801031, 4777267, 4739179, 5336754102, 4752272, 4719721, 4720007, 2034253421, 4721475, 4673818, 4664648, 927800986, 4660736, 4638905, 4632136, 3990988853, 4643655, 4586625, 4585067, 1020969288, 4589368, 4578438, 4576464, 1877879784, 4571803, 4531569, 4547273, 1277964041, 4549235, 4533957, 4535605, 1645687767, 4522774, 4486484, 4490273, 7240652774, 4490221, 4415007, 4472655, 6435541134, 4472544, 4460822, 4474319, 1244083977, 4469940, 4458462, 4460695, 10445838220, 4459087, 4432282, 4455960, 1008619621, 4459241, 4447309, 4434186, 3005948080, 4452194, 4445122, 4430004, 1239845588, 4454328, 4450302, 4453006, 7548295158, 4438723, 4455744, 4464047, 23746623639, 4464006, 4429457, 4456778, 12693531964, 4450945, 4447636, 4457813, 9123766001, 4450409, 4459127, 4470972, 37706208503, 4486389, 4494309, 4491664, 95504494703, 4479581, 4461745, 4494037, 250038191334, 4518917, 4434136, 4501817, 36991656958, 4503290, 4516654, 4526566, 88536997907, 4538751, 4533695, 4533992, 158437761346, 4533084, 4525918, 4558533, 6618784200, 4572408, 4541686, 4581190, 8038557496, 4591255, 4606765, 4603003, 7718644899, 4599740, 4573685, 4625952, 628940704, 4622769, 4620372, 4632148, 9225642575, 4651161, 4650151, 4665099, 4064793023, 4671350, 4693105, 4702053, 1898665005, 4710997, 4725137, 4729579, 5039348724, 4755987, 4743727, 4753873, 914290378, 4789761, 4783845, 4801339, 1790131104, 4796631, 4807192, 4821752, 1114890396, 4835410, 4849291, 4876708, 663303234, 4873954, 4861026, 4905083, 3748642021, 4927242, 4919600, 4922741, 2422265265, 4970568, 4950039, 4992359, 1505396167, 5002060, 4983655, 5007728, 1683840942, 5039483, 4964292, 5051242, 791697859, 5089501, 5093567, 5099366, 998834949, 5132937, 5133496, 5148911, 3114641044, 5174128, 5165759, 5176729, 2139557043, 5189771, 5190270, 5212885, 893113004, 5255364, 5245041, 5259127, 1339798010, 5284784, 6160173, 5308821, 707156694, 5316254, 5483594, 5333581, 3560106285, 5341740, 5434983, 5389216, 903608059, 5377211, 5412736, 5398906, 637771894, 5438144, 5409357, 5414578, 4097212239, 5452880, 5469093, 5472849, 965026241, 5498000, 5483632, 5476000, 3968850645, 5492902, 5487350, 5525450, 653112329, 5524728, 5524119, 5524430, 1819407624, 5519634, 5527657, 5585407, 6072316065, 5551692, 5593203, 5593435, 686996743, 5642593, 5592510, 5587245, 4437262950, 5611687, 5567643, 5565764, 3570475909, 5637455, 5534712, 5599530, 3659290961, 5581708, 5549888, 5610597, 824666075, 5596314, 5577579, 5599870, 4919951753, 5605621, 5565874, 5583701, 4614310764, 5578106, 5569622, 5600631, 17056777094, 5572385, 5533620, 5574570, 14162091310, 5582547, 5554416, 5568672, 19747745310, 5573717, 5568188, 5566600, 94406630421, 5545686, 5526735, 5561221, 25930689152, 5567112, 5518337, 5553092, 20726243274, 5532608, 5516879, 5556822, 238123071637, 5530535, 5544221, 5539578, 13358712228, 5561505, 5526838, 5551562, 127224347649, 5554017]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [394724316851, 4224210, 1973419242, 2708139, 2468574, 2326011, 2155049238, 2176926, 2134171, 2090754, 1979305349, 2198537, 2036728, 2004454, 2296160384, 2031240, 2057978, 2034951, 2228197690, 2039287, 2053450, 2008355, 1475714654, 1995420, 1998736, 2014197, 1446436641, 2118076, 2040299, 2023305, 1909522573, 2048070, 2024270, 2109230, 1365749648, 2037331, 2057310, 2074006, 2037689278, 2002721, 2029710, 2110915, 4889264559, 1979237, 1974982, 1970579, 1595455498, 1982830, 1989525, 1992438, 1276143900, 2046353, 1979738, 1988523, 3561954863, 2044844, 2019997, 2036308, 4000438701, 2076665, 2042532, 2065719, 4200355142, 1955129, 2011005, 2013194, 4767082496, 1932184, 1965047, 2019709, 2641269097, 1897341, 1909464, 1916380, 5202942395, 1896394, 1888079, 1904985, 4618688901, 1918603, 1920960, 1891298, 4527453469, 1909151, 1870345, 1889317, 19979458129, 1883879, 1876682, 1881752, 12538358424, 1895223, 1916877, 1893191, 9863713582, 1875882, 1880029, 1868131, 451899900111, 1869475, 1859990, 1884571, 112779543484, 1882791, 1898506, 1862328, 11154781984, 1871603, 1870426, 1867789, 95398276269, 1865219, 1854141, 1868780, 81062109570, 1862067, 1851368, 1864682, 9031894986, 1850745, 1841366, 1846870, 2840291398, 1859412, 1842068, 1841505, 1781906578, 1848701, 1811755, 1846241, 4510999399, 1837881, 1841924, 1840419, 4835555889, 1836364, 1838133, 1834357, 1850083827, 1835068, 1830043, 1826900, 4150890528, 1829372, 1822270, 1832523, 1257728739, 1835636, 1824980, 1828260, 3423649975, 1818794, 1823902, 1831986, 2095279530, 1827058, 1825388, 1835243, 5382990657, 1827378, 1816168, 1833636, 1840485055, 1824203, 1821006, 1827959, 1432301581, 1832823, 1820499, 1833706, 3027167540, 1828844, 1822673, 1825398, 1404617783, 1827653, 1821495, 1822793, 2033017647, 1818501, 1807862, 1824743, 2178521123, 1827577, 1829703, 1823072, 1877645473, 1822884, 1820131, 1826451, 1448621357, 1816648, 1814278, 1822311, 1715670147, 1818554, 1846756, 1820295, 2889485919, 1826816, 1904073, 1826285, 1343283223, 1826353, 19560332, 1821356, 1801804603, 1820112, 1862738, 1829089, 3672506927, 1819911, 1825818, 1827310, 1923164715, 1819198, 1823933, 1817098, 1559732325, 1824202, 1817235, 1824123, 1728313540, 1816517, 1815983, 1826929, 1395891017, 1820036, 1818507, 1827765, 2301083510, 1819851, 1821521, 1822014, 1746414785, 1821198, 1823268, 1822734, 1714337604, 1818645, 1824376, 1827632, 1906555514, 1824404, 1816083, 1824894, 1446570960, 1821996, 1820047, 1820183, 2473839744, 1822211, 1815459, 1822802, 3633814854, 1826797, 1794679, 1817605, 2749905450, 1828097, 1817180, 1822579, 2389033610, 1837376, 1827397, 1823630, 10461945821, 1825497, 1820957, 1826729, 5243177933, 1827996, 1817971, 1820514, 2828147597, 1823176, 1816242, 1823326, 2189473989, 1817707, 1814909, 1821806, 9519471392, 1820285, 1820422, 1820017, 4445053221, 1824001, 1815458, 1823657, 2309994504, 1826555, 1825399, 1828907, 2518440539, 1831707, 1825703, 1821381, 19376912703, 1815797, 1823748, 1828553, 20223404993, 1817597, 1810375, 1820009, 3411857564, 1826696, 1789256, 1823028, 1060982003169, 1826409, 1827115, 1825362, 57355036340, 1813133, 1815921, 1824943, 14398761587, 1826302, 1810432, 1827039, 27627634927, 1828199, 1816944, 1824622, 8772982345, 1822207, 1820448, 1829550, 9533987923, 1825704, 1809194, 1823317, 13707544895, 1822475, 1816497, 1825933, 3720879458, 1821260, 1815672, 1824106, 5143747252, 1814945, 1823202, 1821358, 2980044893, 1826905, 1824506, 1821535, 5365100313, 1826987, 1813889, 1822160, 2365454800, 1819585, 1817774, 1820976, 1661156308, 1829432, 1823674, 1821783, 2221612235, 1816237, 1814181, 1823686, 2151178799, 1826512, 1812026, 1824598, 2484903164, 1829893, 1809698, 1821777, 1337371505, 1821638, 1822609, 1820988, 1879795778, 1817393, 1818183, 1826429, 2085268570, 1820320, 1798467, 1827320, 1512316127, 1824721, 1820674, 1823903, 2967845226, 1814746, 1828511, 1818884, 1323551223, 1828783, 1821978, 1815668, 1915000959, 1817099, 1824642, 1822204, 2994129224, 1816958, 1832770, 1818251, 1564304254, 1824296, 1933493, 1820486, 2661703803, 1818592, 1815495, 1810406, 1297696324, 1814221, 1862087, 1815326, 1308696664, 1810599, 1814352, 1813287, 3342666299, 1816515, 1819952, 1819301, 1255406500, 1823611, 1825407, 1822603, 2245339339, 1821484, 1823951, 1826521, 2881138271, 1822232, 1805642, 1817508, 1248963549, 1813572, 1821440, 1819136, 1761310473, 1818432, 1815051, 1821919, 1704803299, 1814421, 1809192, 1820639, 2203049871, 1820825, 1812638, 1811731, 1431821614, 1819649, 1821528, 1813656, 2564799396, 1820038, 1793778, 1813808, 1831727913, 1822254, 1811273, 1815466, 5209587014, 1814238, 1813778, 1818604, 4288325044, 1808220, 1810829, 1815077, 1897000341, 1813212, 1814330, 1814476, 2964336593, 1816324, 1802281, 1819743, 9869847561, 1809727, 1814817, 1821112, 10683612820, 1811283, 1815029, 1819152, 8482024377, 1816672, 1815379, 1819330, 5863764358, 1814794, 1811279, 1818672, 7654819534, 1815853, 1802711, 1813884, 79994341480, 1814027, 1816266, 1815052, 7085194195, 1809145, 1809301, 1814423, 464161293738, 1813808]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [163314872749, 4855604, 373118492, 2892610, 2694436, 2507582, 551240116, 2395948, 2429962, 2333913, 762205776, 2536970, 2332647, 2280112, 839035719, 2339258, 2370190, 2366258, 705371222, 2370463, 2403434, 2350003, 455422611, 2322898, 2336318, 2354366, 337896684, 2515371, 2396958, 2395368, 572633872, 2421194, 2383345, 2496581, 1180552012, 2414313, 2432408, 2472255, 1970213798, 2356657, 2404756, 2516026, 2515008261, 2327082, 2368206, 2328233, 2583900852, 2337476, 2361448, 2357401, 2063731292, 2433608, 2363891, 2361675, 1231247974, 2431285, 2399117, 2437488, 549249833, 2476879, 2448839, 2476895, 350758072, 2290811, 2367108, 2403790, 640659663, 2266989, 2318055, 2389933, 1027762422, 2217578, 2224114, 2257495, 957129161, 2215528, 2202703, 2227912, 444189873, 2253876, 2247071, 2219165, 827435815, 2224156, 2181769, 2209284, 6170634050, 2200417, 2180647, 2213592, 26954007725, 2202544, 2222908, 2222858, 96550416887, 2196434, 2200604, 2186903, 435556826884, 2188489, 2184645, 2210885, 188269276173, 2208779, 2219464, 2174226, 475266429942, 2175070, 2165083, 2179460, 59296629266, 2189953, 2148626, 2169744, 8623694027, 2165019, 2145512, 2176096, 635001260, 2151574, 2143161, 2144816, 702186010, 2157301, 2152503, 2153434, 1345531748, 2140027, 2094060, 2141567, 1157218368, 2133953, 2143345, 2131050, 570810589, 2124896, 2130501, 2123172, 350730558, 2134466, 2140585, 2122286, 869501877, 2128859, 2103310, 2142243, 1926641091, 2130862, 2115686, 2128750, 2978775737, 2115013, 2119820, 2122062, 3507610388, 2123023, 2110856, 2117051, 3297332716, 2115847, 2100496, 2133519, 2495079272, 2118192, 2115805, 2120605, 1499962808, 2132214, 2110231, 2131581, 735354013, 2113510, 2104280, 2103337, 376118045, 2119670, 2104522, 2127809, 353169950, 2111852, 2102815, 2126012, 449546867, 2124205, 2111986, 2110408, 475691612, 2123671, 2120745, 2119726, 395363940, 2125356, 2096547, 2099054, 336392106, 2122555, 2118985, 2124842, 471846614, 2112126, 2195029, 2116800, 874903279, 2121457, 26598526, 2120757, 1446964493, 2116208, 2177674, 2116024, 1945666156, 2126792, 2166409, 2126325, 2136939155, 2118237, 2123645, 2105133, 1924202997, 2125167, 2111735, 2110760, 1416261515, 2109978, 2104678, 2119134, 855658276, 2124918, 2106693, 2111236, 473229986, 2115580, 2119360, 2128258, 343125373, 2116579, 2108936, 2122095, 371729183, 2117632, 2114427, 2129747, 391434294, 2120889, 2121136, 2118993, 343665626, 2121707, 2118002, 2128164, 393700685, 2113585, 2114347, 2120772, 903903275, 2122440, 2058790, 2122994, 2231685938, 2117867, 2124397, 2119838, 4447985732, 2134656, 2128144, 2140666, 7149362805, 2117478, 2124217, 2131651, 9530080840, 2119477, 2115241, 2131549, 10654073873, 2130428, 2128654, 2140639, 10003017916, 2120146, 2120595, 2122307, 7608124346, 2133162, 2129576, 2128504, 4406407992, 2122568, 2109609, 2129415, 1678250972, 2132587, 2126583, 2122110, 422019697, 2125501, 2115241, 2130808, 460891436, 2130023, 2133631, 2138781, 390441734, 2125157, 2112538, 2141363, 164611514494, 2138600, 2086400, 2138918, 174361519001, 2133469, 2134833, 2144629, 83455654344, 2138494, 2129967, 2139984, 63450267417, 2129514, 2107976, 2153854, 49610854923, 2136943, 2136169, 2145443, 36358888945, 2142105, 2139579, 2164111, 23991905446, 2144242, 2122575, 2147048, 13759729302, 2139758, 2141042, 2156767, 6591594868, 2139238, 2138926, 2148797, 2475624790, 2145827, 2145138, 2156790, 751347276, 2135092, 2156967, 2156969, 345976320, 2144121, 2114496, 2145897, 381300836, 2145283, 2139429, 2151282, 390816647, 2136325, 2137433, 2143741, 347552900, 2150754, 2139868, 2153573, 450376917, 2148657, 2139260, 2160561, 854550788, 2158814, 2145830, 2154925, 1492448485, 2158351, 2143613, 2166413, 2110535220, 2157323, 2155024, 2164676, 2408440630, 2159056, 2102999, 2154503, 2244892853, 2164495, 2151096, 2169079, 1693270133, 2159818, 2160774, 2165451, 1025673070, 2166911, 2158774, 2167238, 522815335, 2154125, 2152067, 2171293, 337805766, 2164578, 2159105, 2168883, 414633407, 2162605, 2225035, 2172750, 567575227, 2158324, 2648164, 2167038, 615922512, 2159411, 2132453, 2168890, 511410279, 2163340, 2170062, 2157532, 370780673, 2165119, 2172478, 2169338, 367894245, 2170290, 2197354, 2164010, 604709952, 2170512, 2157352, 2160964, 1011874552, 2161237, 2164533, 2170174, 1374016678, 2167494, 2159925, 2176829, 1450552651, 2173061, 2168469, 2170992, 1171763790, 2170951, 2146310, 2177913, 693927273, 2178918, 2176422, 2166494, 360358228, 2185035, 2161432, 2173119, 460990326, 2169566, 2146586, 2176230, 1048688339, 2176095, 2159449, 2174484, 1824732278, 2176061, 2169165, 2171938, 2301154771, 2175866, 2165124, 2174946, 2074645734, 2180912, 2173379, 2178149, 1213926920, 2171391, 2153184, 2184456, 399606334, 2180374, 2165072, 2179339, 795771694, 2176432, 2169154, 2175643, 3574268058, 2185282, 2160676, 2180087, 9331635847, 2172494, 2157587, 2173324, 17659888651, 2182038, 2165401, 2180557, 26950150334, 2182690, 2164126, 2177261, 35059390232, 2170109, 2164566, 2171927, 40160064447, 2176227]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395703125, "timestamp": "2021-09-20T12:17:46+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118090573111, 4253865, 646100265, 2665107, 2470970, 2351598, 3086953215, 2221663, 2185044, 2130611, 1975371447, 2097873, 2064650, 2054758, 599565952, 2041122, 2050579, 2029206, 3024355000, 2015276, 2030887, 2006730, 637128979, 2016249, 2011050, 2018828, 2449819765, 2058906, 2043227, 2057341, 1018700398, 2064181, 2061440, 2081035, 842756964, 2110604, 2105819, 2126509, 2929605782, 2139106, 2149817, 2174903, 1232605045, 2206740, 2214800, 2248530, 3925722284, 2255671, 2286965, 2300780, 1974471375, 2372850, 2325979, 2385846, 1944074686, 2402728, 2430154, 2461689, 8330357425, 2515652, 2525425, 2585158, 1079710540, 2580314, 2604657, 2648179, 6650204172, 2675005, 2689324, 2741970, 3744774098, 2749291, 2759494, 2817053, 4985072800, 2836937, 2837156, 2898062, 7035845528, 2987550, 2995687, 3006101, 3638211615, 3063140, 3005559, 3122458, 13043996295, 3217374, 3139576, 3280538, 37621959570, 3315410, 3479316, 3366858, 80595454397, 3409907, 3395639, 3447481, 12378493749, 3429801, 3450175, 3578383, 225205568016, 3643468, 3736519, 3569941, 46784458693, 3671183, 3669323, 3714872, 24958830149, 3796395, 3722318, 3797459, 75759075963, 3893967, 3803279, 3907731, 12482913652, 3880332, 3825680, 3876888, 20576521802, 3980860, 3961699, 3965442, 16745452806, 3971509, 3970696, 3997082, 12386637041, 4064722, 4076801, 4068794, 38907081123, 4095632, 4162044, 4123405, 5669273613, 4217854, 4242111, 4198379, 6408008019, 4272530, 4253196, 4267883, 7879745287, 4334204, 4326843, 4343991, 5657458724, 4397322, 4380201, 4409576, 1663287948, 4451401, 4432023, 4466932, 5140957620, 4510624, 4482696, 4534501, 1223828993, 4559722, 4554326, 4583834, 4904934777, 4662605, 4637616, 4626703, 1081078688, 4697831, 4681311, 4689576, 5244472414, 4784045, 4730523, 4763160, 10102260430, 4793916, 4768737, 4813188, 5200562047, 4875506, 4859620, 4849221, 1916015395, 4900768, 4900146, 4880760, 4319963212, 4925126, 4852146, 4910298, 690546365, 4931941, 4982539, 4891704, 1048530757, 4928177, 4997902, 4905388, 865948615, 4956537, 261991516, 4903159, 866647400, 4900467, 4960554, 4870003, 7538175217, 4870396, 4843088, 4838973, 809518242, 4825833, 4830471, 4792483, 1540129572, 4812651, 4769258, 4742226, 5382788836, 4743425, 4721468, 4712784, 2051045485, 4719060, 4695192, 4674649, 921976069, 4682153, 4653594, 4612867, 4026126321, 4639532, 4602692, 4596097, 1012633391, 4592578, 4584460, 4577813, 1860918526, 4559188, 4536858, 4535338, 1267946019, 4557432, 4536031, 4507494, 1639918223, 4526583, 4507026, 4492055, 7263006050, 4515266, 4406754, 4471745, 6445510343, 4486039, 4473113, 4471620, 1227395124, 4475773, 4460902, 4448036, 10496081124, 4453224, 4446190, 4461409, 1009624149, 4442766, 4420885, 4454763, 2973301169, 4444202, 4442217, 4429494, 1258068073, 4443447, 4442201, 4457259, 7568219124, 4435766, 4442060, 4436387, 23674383455, 4461230, 4412871, 4462564, 12730854079, 4471397, 4460081, 4445351, 9090819805, 4466555, 4457210, 4466390, 37722654640, 4496839, 4478810, 4491313, 95583405481, 4468587, 4480318, 4487548, 249817370603, 4520448, 4409970, 4490563, 36846800491, 4499753, 4506640, 4518807, 88371127021, 4526078, 4527072, 4542090, 158706685233, 4544517, 4523538, 4566228, 6572509280, 4573316, 4569176, 4559771, 8002744682, 4573981, 4588271, 4598118, 7756975711, 4599084, 4580040, 4609114, 620708253, 4647018, 4650232, 4647126, 9194739974, 4648145, 4645214, 4649264, 4084461874, 4696369, 4690363, 4701348, 1896521980, 4716262, 4744951, 4736355, 5075930158, 4782888, 4722068, 4768629, 916769535, 4789984, 4764554, 4798191, 1766050175, 4806864, 4793526, 4851643, 1132998567, 4854320, 4821174, 4883675, 667705564, 4872602, 4876160, 4880859, 3711773731, 4923762, 4915722, 4946330, 2442213984, 4974503, 4957172, 4993003, 1504150125, 5002985, 5004880, 5018187, 1670958054, 5048791, 4976122, 5052214, 796372363, 5066453, 5077652, 5101316, 1009354747, 5131167, 5162821, 5146503, 3130945725, 5182974, 5150994, 5177698, 2143983737, 5205378, 5202494, 5201265, 890678535, 5232488, 5231056, 5246804, 1330709711, 5278401, 6127397, 5296412, 696975455, 5302637, 5487127, 5328002, 3504788398, 5371311, 5456386, 5356533, 893591392, 5368877, 5378336, 5388213, 646505750, 5423687, 5432849, 5442178, 4085933579, 5442894, 5441112, 5480323, 973605513, 5472018, 5469721, 5496012, 3999634217, 5499116, 5484827, 5514489, 658268272, 5543508, 5507811, 5521588, 1825478410, 5555176, 5545407, 5567048, 6040244734, 5556204, 5586701, 5564197, 693036492, 5633143, 5590356, 5590658, 4386078001, 5591346, 5580662, 5599628, 3524304244, 5574609, 5530655, 5594757, 3590750502, 5577497, 5550046, 5593841, 837315722, 5592716, 5600961, 5590484, 4879120034, 5604276, 5562520, 5590218, 4658039889, 5601151, 5565178, 5582494, 17125923495, 5573935, 5552845, 5578403, 14240911688, 5566224, 5556545, 5575714, 19723667872, 5582275, 5537962, 5561501, 94424064853, 5547528, 5567345, 5542530, 25806286021, 5565884, 5522305, 5553866, 20623644864, 5547184, 5500014, 5546821, 237676103896, 5542297, 5517332, 5555802, 13379539126, 5537206, 5514648, 5539211, 126848929362, 5551916]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118090573111, 4253865, 646100265, 2665107, 2470970, 2351598, 3086953215, 2221663, 2185044, 2130611, 1975371447, 2097873, 2064650, 2054758, 599565952, 2041122, 2050579, 2029206, 3024355000, 2015276, 2030887, 2006730, 637128979, 2016249, 2011050, 2018828, 2449819765, 2058906, 2043227, 2057341, 1018700398, 2064181, 2061440, 2081035, 842756964, 2110604, 2105819, 2126509, 2929605782, 2139106, 2149817, 2174903, 1232605045, 2206740, 2214800, 2248530, 3925722284, 2255671, 2286965, 2300780, 1974471375, 2372850, 2325979, 2385846, 1944074686, 2402728, 2430154, 2461689, 8330357425, 2515652, 2525425, 2585158, 1079710540, 2580314, 2604657, 2648179, 6650204172, 2675005, 2689324, 2741970, 3744774098, 2749291, 2759494, 2817053, 4985072800, 2836937, 2837156, 2898062, 7035845528, 2987550, 2995687, 3006101, 3638211615, 3063140, 3005559, 3122458, 13043996295, 3217374, 3139576, 3280538, 37621959570, 3315410, 3479316, 3366858, 80595454397, 3409907, 3395639, 3447481, 12378493749, 3429801, 3450175, 3578383, 225205568016, 3643468, 3736519, 3569941, 46784458693, 3671183, 3669323, 3714872, 24958830149, 3796395, 3722318, 3797459, 75759075963, 3893967, 3803279, 3907731, 12482913652, 3880332, 3825680, 3876888, 20576521802, 3980860, 3961699, 3965442, 16745452806, 3971509, 3970696, 3997082, 12386637041, 4064722, 4076801, 4068794, 38907081123, 4095632, 4162044, 4123405, 5669273613, 4217854, 4242111, 4198379, 6408008019, 4272530, 4253196, 4267883, 7879745287, 4334204, 4326843, 4343991, 5657458724, 4397322, 4380201, 4409576, 1663287948, 4451401, 4432023, 4466932, 5140957620, 4510624, 4482696, 4534501, 1223828993, 4559722, 4554326, 4583834, 4904934777, 4662605, 4637616, 4626703, 1081078688, 4697831, 4681311, 4689576, 5244472414, 4784045, 4730523, 4763160, 10102260430, 4793916, 4768737, 4813188, 5200562047, 4875506, 4859620, 4849221, 1916015395, 4900768, 4900146, 4880760, 4319963212, 4925126, 4852146, 4910298, 690546365, 4931941, 4982539, 4891704, 1048530757, 4928177, 4997902, 4905388, 865948615, 4956537, 261991516, 4903159, 866647400, 4900467, 4960554, 4870003, 7538175217, 4870396, 4843088, 4838973, 809518242, 4825833, 4830471, 4792483, 1540129572, 4812651, 4769258, 4742226, 5382788836, 4743425, 4721468, 4712784, 2051045485, 4719060, 4695192, 4674649, 921976069, 4682153, 4653594, 4612867, 4026126321, 4639532, 4602692, 4596097, 1012633391, 4592578, 4584460, 4577813, 1860918526, 4559188, 4536858, 4535338, 1267946019, 4557432, 4536031, 4507494, 1639918223, 4526583, 4507026, 4492055, 7263006050, 4515266, 4406754, 4471745, 6445510343, 4486039, 4473113, 4471620, 1227395124, 4475773, 4460902, 4448036, 10496081124, 4453224, 4446190, 4461409, 1009624149, 4442766, 4420885, 4454763, 2973301169, 4444202, 4442217, 4429494, 1258068073, 4443447, 4442201, 4457259, 7568219124, 4435766, 4442060, 4436387, 23674383455, 4461230, 4412871, 4462564, 12730854079, 4471397, 4460081, 4445351, 9090819805, 4466555, 4457210, 4466390, 37722654640, 4496839, 4478810, 4491313, 95583405481, 4468587, 4480318, 4487548, 249817370603, 4520448, 4409970, 4490563, 36846800491, 4499753, 4506640, 4518807, 88371127021, 4526078, 4527072, 4542090, 158706685233, 4544517, 4523538, 4566228, 6572509280, 4573316, 4569176, 4559771, 8002744682, 4573981, 4588271, 4598118, 7756975711, 4599084, 4580040, 4609114, 620708253, 4647018, 4650232, 4647126, 9194739974, 4648145, 4645214, 4649264, 4084461874, 4696369, 4690363, 4701348, 1896521980, 4716262, 4744951, 4736355, 5075930158, 4782888, 4722068, 4768629, 916769535, 4789984, 4764554, 4798191, 1766050175, 4806864, 4793526, 4851643, 1132998567, 4854320, 4821174, 4883675, 667705564, 4872602, 4876160, 4880859, 3711773731, 4923762, 4915722, 4946330, 2442213984, 4974503, 4957172, 4993003, 1504150125, 5002985, 5004880, 5018187, 1670958054, 5048791, 4976122, 5052214, 796372363, 5066453, 5077652, 5101316, 1009354747, 5131167, 5162821, 5146503, 3130945725, 5182974, 5150994, 5177698, 2143983737, 5205378, 5202494, 5201265, 890678535, 5232488, 5231056, 5246804, 1330709711, 5278401, 6127397, 5296412, 696975455, 5302637, 5487127, 5328002, 3504788398, 5371311, 5456386, 5356533, 893591392, 5368877, 5378336, 5388213, 646505750, 5423687, 5432849, 5442178, 4085933579, 5442894, 5441112, 5480323, 973605513, 5472018, 5469721, 5496012, 3999634217, 5499116, 5484827, 5514489, 658268272, 5543508, 5507811, 5521588, 1825478410, 5555176, 5545407, 5567048, 6040244734, 5556204, 5586701, 5564197, 693036492, 5633143, 5590356, 5590658, 4386078001, 5591346, 5580662, 5599628, 3524304244, 5574609, 5530655, 5594757, 3590750502, 5577497, 5550046, 5593841, 837315722, 5592716, 5600961, 5590484, 4879120034, 5604276, 5562520, 5590218, 4658039889, 5601151, 5565178, 5582494, 17125923495, 5573935, 5552845, 5578403, 14240911688, 5566224, 5556545, 5575714, 19723667872, 5582275, 5537962, 5561501, 94424064853, 5547528, 5567345, 5542530, 25806286021, 5565884, 5522305, 5553866, 20623644864, 5547184, 5500014, 5546821, 237676103896, 5542297, 5517332, 5555802, 13379539126, 5537206, 5514648, 5539211, 126848929362, 5551916]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [395951155272, 4191794, 1978762736, 2709217, 2463970, 2330319, 2162063710, 2185021, 2135218, 2089858, 1997933399, 2188489, 2035177, 2016553, 2321159202, 2026659, 2049566, 2039610, 2248095235, 2037098, 2035607, 2003918, 1479125066, 1993326, 2003479, 2009083, 1471345719, 2121827, 2036253, 2023852, 1927027743, 2049347, 2027010, 2089859, 1370956254, 2035534, 2049654, 2068734, 2063235009, 2004432, 2031754, 2106804, 4890629884, 1973062, 1982105, 1979219, 1588158547, 1972421, 1997279, 1993653, 1285793820, 2049854, 1985634, 1992036, 3569092289, 2031319, 2019315, 2044197, 3980475657, 2073136, 2040723, 2060075, 4220196651, 1955393, 2006270, 2015902, 4813360568, 1941134, 1972837, 2017651, 2615782462, 1913693, 1915517, 1924224, 5223791355, 1896293, 1899475, 1903136, 4580034561, 1937387, 1926684, 1892117, 4504244202, 1917132, 1880603, 1894879, 19903030227, 1890710, 1874365, 1889906, 12608611721, 1894845, 1905541, 1895750, 9920021506, 1874603, 1883783, 1867824, 451199211651, 1887122, 1869905, 1881077, 112544209813, 1887782, 1888007, 1851049, 11231122121, 1866768, 1860279, 1862578, 95507484416, 1868971, 1846823, 1858443, 80766590201, 1856710, 1843010, 1854767, 9092292902, 1851395, 1840860, 1844834, 2860238714, 1860175, 1843383, 1849253, 1769959026, 1851532, 1817082, 1838769, 4512066580, 1833194, 1836315, 1841385, 4846683223, 1832828, 1839657, 1840089, 1873182589, 1844360, 1824694, 1831203, 4119199469, 1834440, 1826740, 1835334, 1270596543, 1824355, 1828657, 1840864, 3430316346, 1834480, 1824805, 1829499, 2069226815, 1826840, 1829553, 1824211, 5396344914, 1827617, 1816148, 1828784, 1870026100, 1830700, 1814095, 1833078, 1440448489, 1833844, 1825915, 1825882, 3029850773, 1821905, 1825087, 1834081, 1425820289, 1824629, 1826384, 1825531, 2041668609, 1829790, 1805597, 1829592, 2205935898, 1826020, 1820256, 1824708, 1912385123, 1818974, 1813792, 1819273, 1452649371, 1825363, 1812430, 1819718, 1711817848, 1825493, 1854984, 1823747, 2907794434, 1819866, 1906701, 1829476, 1348808821, 1816575, 19494913, 1823113, 1816070205, 1818977, 1858098, 1820356, 3699988489, 1830631, 1825162, 1822866, 1916372327, 1827368, 1823923, 1823923, 1575253109, 1826317, 1825858, 1821141, 1762868738, 1825892, 1817707, 1820743, 1403092195, 1825470, 1819700, 1827740, 2330088396, 1820014, 1824731, 1825329, 1773395590, 1819161, 1816702, 1823727, 1719413691, 1821547, 1827559, 1821855, 1928341514, 1830479, 1820717, 1821920, 1457593562, 1818625, 1817407, 1823873, 2466404786, 1823325, 1825083, 1827103, 3604073869, 1821903, 1795688, 1820598, 2772915529, 1825699, 1824058, 1830418, 2402684458, 1828732, 1824849, 1826608, 10434225268, 1830686, 1808077, 1832155, 5255993130, 1821635, 1816708, 1822446, 2823475867, 1823446, 1811455, 1831955, 2166810795, 1819899, 1820478, 1824528, 9564287014, 1825459, 1816687, 1826956, 4476094416, 1818189, 1819036, 1823423, 2288747168, 1818754, 1807338, 1822347, 2485567884, 1823814, 1817855, 1823942, 19287324786, 1820235, 1817623, 1823640, 20157742959, 1826627, 1824010, 1821432, 3384935986, 1817201, 1793366, 1829970, 1060808102211, 1822945, 1814894, 1828203, 57177283439, 1827251, 1821861, 1826648, 14542061158, 1828424, 1800291, 1821078, 27671532564, 1825510, 1823153, 1834212, 8678241180, 1826807, 1819271, 1826616, 9599758531, 1823898, 1805429, 1830241, 13664704397, 1819699, 1820209, 1819597, 3664003806, 1821804, 1827237, 1826715, 5184161999, 1829601, 1814317, 1819399, 2947015551, 1828779, 1827894, 1821485, 5378511392, 1821793, 1809316, 1818551, 2369813443, 1816400, 1819772, 1818637, 1670071572, 1823802, 1820482, 1823378, 2225585816, 1820949, 1817108, 1821335, 2148213026, 1819710, 1823257, 1820731, 2508950603, 1817212, 1815008, 1816363, 1350307127, 1815454, 1819899, 1820183, 1903471627, 1819215, 1817434, 1823157, 2108186761, 1822141, 1800856, 1810833, 1524642803, 1825136, 1814777, 1822171, 2992548509, 1822763, 1818679, 1821264, 1339040635, 1828455, 1825674, 1816556, 1939911245, 1820092, 1826768, 1821326, 3000264552, 1815781, 1828223, 1821024, 1552327889, 1820455, 1935393, 1822221, 2688199577, 1819369, 1814842, 1817562, 1300037562, 1823940, 1859689, 1814006, 1302537697, 1819026, 1823119, 1821497, 3373510157, 1813810, 1823805, 1813356, 1258416088, 1814951, 1815353, 1817981, 2270303298, 1820295, 1816894, 1817128, 2935292968, 1818649, 1801450, 1816934, 1249919767, 1813085, 1816843, 1821022, 1782597938, 1819873, 1809676, 1819389, 1718933049, 1813694, 1796031, 1814841, 2199269756, 1815247, 1820094, 1808685, 1437066761, 1820578, 1819973, 1812362, 2579095372, 1813626, 1803897, 1810093, 1838349528, 1819837, 1805617, 1818017, 5153727335, 1817969, 1809015, 1811002, 4324475843, 1818263, 1805893, 1814995, 1910151698, 1817908, 1812176, 1807196, 2943678579, 1817350, 1805399, 1818617, 9969393968, 1817041, 1815174, 1814284, 10610242611, 1817455, 1810677, 1813154, 8436008020, 1813178, 1813676, 1816169, 5885184129, 1813397, 1803149, 1813780, 7630260937, 1818926, 1799373, 1818684, 79937446708, 1815492, 1810043, 1815807, 7111649819, 1816196, 1812062, 1813759, 464627071868, 1804388]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [162843440714, 4860206, 371540934, 2887120, 2678829, 2509730, 550184809, 2391804, 2423357, 2333998, 761488667, 2539003, 2330201, 2290997, 839409394, 2332167, 2361344, 2373018, 705493694, 2358159, 2410383, 2346819, 454771222, 2318192, 2331743, 2351238, 336626626, 2513358, 2388011, 2401717, 571081410, 2412997, 2390936, 2494661, 1179280076, 2407134, 2437041, 2472215, 1970182478, 2364438, 2406677, 2527246, 2516342574, 2322663, 2361656, 2338127, 2585902268, 2327386, 2355444, 2355241, 2066372464, 2444998, 2368618, 2353015, 1232176625, 2426263, 2384632, 2430277, 548767151, 2474693, 2444262, 2465196, 349417223, 2296794, 2370009, 2410781, 639397105, 2279527, 2320573, 2385897, 1027107277, 2214366, 2227591, 2257404, 956650018, 2208923, 2205679, 2240027, 442753906, 2246674, 2242709, 2220195, 822797507, 2227102, 2185828, 2202033, 6160476699, 2196678, 2193371, 2219008, 26936472202, 2197182, 2231949, 2230969, 96524311750, 2191244, 2193243, 2183831, 435530712553, 2189446, 2170421, 2219060, 188354030247, 2197628, 2210727, 2165624, 475249771053, 2183982, 2166598, 2173484, 59290749230, 2172505, 2148367, 2166192, 8620723799, 2170654, 2153894, 2175249, 634436102, 2151181, 2140593, 2146317, 702454362, 2164574, 2141145, 2161409, 1344417251, 2132225, 2094682, 2145527, 1155048792, 2132698, 2133457, 2143795, 567816781, 2122587, 2138708, 2139526, 348608504, 2134595, 2137957, 2124471, 869152784, 2113751, 2111293, 2136048, 1927987553, 2136315, 2125488, 2113986, 2981828659, 2111885, 2117953, 2122537, 3511261973, 2129083, 2116180, 2116649, 3299697166, 2118493, 2099894, 2122688, 2495988408, 2110496, 2111691, 2119381, 1500209253, 2118715, 2110458, 2117477, 735275616, 2115528, 2106369, 2111756, 375743259, 2129681, 2111015, 2129608, 353123535, 2110713, 2096110, 2109876, 449921064, 2115733, 2101889, 2111212, 475608774, 2111216, 2122440, 2116007, 394957731, 2126308, 2098946, 2102739, 335581983, 2128094, 2125540, 2116346, 470572875, 2124306, 2192843, 2118474, 874761814, 2121883, 26547452, 2116393, 1447413220, 2122501, 2185505, 2118713, 1947580772, 2118230, 2160749, 2128431, 2139458025, 2117032, 2122736, 2116440, 1925533679, 2124941, 2130742, 2123390, 1417270829, 2113564, 2100553, 2122456, 855552798, 2118051, 2116877, 2112267, 471855137, 2112476, 2114132, 2116472, 341513102, 2109660, 2119581, 2114228, 370789688, 2119005, 2113534, 2122646, 391278705, 2122536, 2111217, 2119512, 343418591, 2123661, 2132711, 2125861, 393160959, 2112823, 2122829, 2122985, 903250092, 2122337, 2068327, 2132922, 2231389038, 2113835, 2120098, 2133729, 4448602763, 2119093, 2118799, 2129894, 7152096955, 2118527, 2107936, 2135070, 9534711560, 2129500, 2111361, 2129516, 10659748469, 2122608, 2125336, 2138227, 10010429680, 2131361, 2114572, 2128886, 7614875120, 2116615, 2121092, 2137121, 4409302889, 2128079, 2106296, 2131416, 1678331185, 2125792, 2118840, 2129341, 420276066, 2126730, 2116135, 2128092, 458850243, 2138774, 2121449, 2130262, 388862908, 2129465, 2125431, 2136645, 164594248219, 2133001, 2082702, 2141216, 174388844421, 2134603, 2131842, 2149985, 83471469907, 2127416, 2123249, 2144426, 63461399159, 2127867, 2112365, 2143644, 49621155928, 2136940, 2135373, 2147313, 36364482777, 2135906, 2128434, 2149924, 23992374562, 2137973, 2131533, 2148437, 13756692751, 2141897, 2137128, 2153542, 6588300015, 2141630, 2133693, 2157415, 2471677821, 2142921, 2141819, 2154442, 749027579, 2145915, 2158725, 2147910, 344664054, 2148842, 2117904, 2159624, 380260757, 2149464, 2134381, 2150693, 389270098, 2153688, 2140168, 2154510, 345930286, 2141423, 2149035, 2156428, 449062516, 2143386, 2125046, 2155715, 854108974, 2156813, 2143064, 2160833, 1492971995, 2156518, 2139195, 2158691, 2112524912, 2156379, 2145958, 2159908, 2411472765, 2152532, 2115986, 2160386, 2247290827, 2169261, 2155110, 2155419, 1694090524, 2161044, 2155372, 2168049, 1025679658, 2158443, 2157092, 2161138, 522095014, 2171227, 2148771, 2169431, 337013714, 2162924, 2167538, 2162457, 414416828, 2168230, 2247913, 2168861, 567664872, 2159913, 2635018, 2159402, 616082181, 2169767, 2143266, 2171145, 511413055, 2155284, 2160366, 2161967, 369954740, 2159119, 2174441, 2172028, 366663464, 2171522, 2189230, 2172204, 603413854, 2165538, 2158973, 2156503, 1010928924, 2169240, 2155138, 2173488, 1374069413, 2174939, 2162230, 2167629, 1451594404, 2168556, 2170385, 2169638, 1172160768, 2168458, 2134131, 2166355, 693306599, 2178209, 2170000, 2169824, 358750671, 2168221, 2168810, 2173225, 458261242, 2171849, 2148455, 2175982, 1046035452, 2166378, 2167610, 2173961, 1823151334, 2179516, 2167759, 2178490, 2300754207, 2165852, 2162661, 2174906, 2075831370, 2172780, 2162930, 2173731, 1214345097, 2167626, 2144023, 2179459, 399791037, 2168547, 2162987, 2169032, 795596652, 2171758, 2168729, 2179936, 3573993784, 2182485, 2164251, 2170279, 9332826821, 2177749, 2155404, 2172401, 17665060939, 2176856, 2156717, 2171169, 26962488979, 2176542, 2160497, 2173331, 35074842019, 2180996, 2169425, 2169010, 40180938617, 2171784]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777395898437, "timestamp": "2021-09-20T12:17:46.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [117421158463, 4258675, 635973236, 2678906, 2473202, 2341130, 3124430745, 2211228, 2173716, 2133349, 1977756448, 2098560, 2055675, 2051256, 600343638, 2041696, 2040879, 2020721, 3057314759, 2018788, 2025025, 2012962, 635154349, 2008609, 2011334, 2023429, 2453532831, 2059947, 2044982, 2056502, 1019683597, 2064428, 2056831, 2087267, 845464528, 2112736, 2108495, 2136112, 2964434232, 2133609, 2146253, 2176260, 1247912783, 2198686, 2217137, 2248967, 3887067843, 2260679, 2282169, 2303977, 2002644069, 2357811, 2318181, 2377182, 1932640182, 2414331, 2429972, 2469516, 8299423911, 2535209, 2513900, 2586824, 1092036970, 2570620, 2596676, 2651309, 6678816314, 2671653, 2693918, 2733999, 3727696915, 2744919, 2754042, 2812223, 5020528449, 2833778, 2841248, 2898720, 7001365066, 2965206, 2989145, 2987149, 3642474197, 3084511, 3019606, 3104273, 12961051584, 3207150, 3137059, 3253706, 37526318817, 3309739, 3480451, 3356569, 80333762816, 3419221, 3391498, 3430485, 12344645807, 3428000, 3448186, 3585302, 225250934916, 3636628, 3739934, 3565055, 46939081524, 3689099, 3692127, 3696007, 24924841025, 3802365, 3722039, 3790466, 75780732076, 3879671, 3794175, 3874234, 12529341533, 3877893, 3823822, 3879804, 20611968754, 3978651, 3976908, 3944975, 16819549841, 3982921, 3958250, 3983109, 12437731900, 4082244, 4088073, 4062285, 38981827389, 4101908, 4166718, 4130472, 5708438742, 4221184, 4255929, 4202397, 6432930641, 4247585, 4243745, 4280553, 7907189589, 4335391, 4340411, 4319172, 5703383736, 4391380, 4392314, 4389057, 1657665674, 4441373, 4439267, 4479901, 5157370164, 4530556, 4483334, 4513258, 1222673588, 4593576, 4548270, 4561811, 4928697852, 4643904, 4654144, 4661502, 1079058116, 4698668, 4691702, 4680621, 5281642872, 4784164, 4731391, 4761158, 10159699619, 4791841, 4750829, 4806053, 5235732537, 4854856, 4835791, 4875552, 1936007964, 4890115, 4917760, 4883699, 4332653692, 4929649, 4843204, 4899233, 691537941, 4939914, 4984434, 4910014, 1045151478, 4945482, 5017078, 4926988, 863136654, 4921515, 262117646, 4892667, 870818267, 4924025, 4951027, 4862331, 7561084568, 4901802, 4859058, 4844329, 809073397, 4818403, 4826532, 4792500, 1544228735, 4815765, 4762641, 4746874, 5421114186, 4742513, 4719923, 4697303, 2054792101, 4707982, 4662986, 4680382, 916088445, 4657301, 4650983, 4630246, 4059501763, 4616426, 4603224, 4594480, 1005567428, 4594020, 4565933, 4582345, 1841097631, 4575868, 4522376, 4532550, 1259901965, 4542251, 4545484, 4516777, 1629789749, 4498338, 4509137, 4492732, 7294500646, 4496294, 4410799, 4464323, 6464088258, 4467798, 4473577, 4468089, 1218018545, 4480959, 4457954, 4472102, 10557965979, 4467188, 4458349, 4473857, 1002844312, 4470535, 4446172, 4441647, 2948580656, 4445290, 4447914, 4449851, 1269808440, 4458833, 4440135, 4425960, 7574003480, 4458179, 4430830, 4459955, 23579167806, 4454964, 4435222, 4472446, 12783322548, 4444955, 4464315, 4465484, 9060932007, 4465461, 4467047, 4475699, 37692704096, 4477025, 4452600, 4492657, 95637049868, 4485328, 4463078, 4491618, 249782792509, 4504488, 4422679, 4497514, 36720272016, 4516850, 4500132, 4550438, 88245526609, 4524626, 4520030, 4545692, 158930714944, 4531620, 4516972, 4574007, 6517513235, 4570566, 4549885, 4560207, 7991517811, 4593780, 4582961, 4591059, 7793058152, 4605223, 4587194, 4621964, 610921948, 4643051, 4606744, 4632719, 9184749649, 4672838, 4641547, 4675416, 4114412882, 4666928, 4690192, 4691691, 1892786082, 4719383, 4744796, 4748513, 5084273431, 4748072, 4731877, 4755577, 922749528, 4792938, 4777035, 4790986, 1748945276, 4804472, 4811672, 4821862, 1133302545, 4842313, 4835853, 4871157, 669367221, 4909287, 4882793, 4884913, 3691305029, 4904665, 4898517, 4922991, 2461422230, 4959898, 4975075, 4967624, 1498882513, 4988405, 4994534, 5008858, 1661274706, 5048461, 4994070, 5043403, 795088364, 5075398, 5074292, 5112096, 1010868976, 5108013, 5152668, 5126971, 3133329008, 5172320, 5160177, 5188104, 2152831354, 5217765, 5217354, 5213358, 888245321, 5245858, 5235580, 5271939, 1324860513, 5286148, 6131321, 5310530, 693097102, 5302250, 5487640, 5339775, 3478132915, 5370814, 5455423, 5365448, 884234495, 5379687, 5398467, 5399882, 648654039, 5380481, 5413689, 5432822, 4080465412, 5452472, 5450370, 5481267, 977938786, 5479938, 5446905, 5480214, 4022947402, 5523058, 5479458, 5510683, 653143574, 5531457, 5534074, 5520205, 1828478705, 5552732, 5566285, 5572887, 6009701714, 5585426, 5569691, 5560091, 688311226, 5634559, 5586846, 5589218, 4362869725, 5600307, 5578519, 5614282, 3491462426, 5585865, 5557557, 5605959, 3560954022, 5590209, 5593502, 5608894, 837318496, 5622283, 5585547, 5613422, 4872400839, 5596119, 5575584, 5612892, 4658135814, 5566090, 5582377, 5565289, 17164510281, 5597977, 5545997, 5579551, 14269749925, 5583618, 5556064, 5580434, 19738693629, 5565096, 5555819, 5556979, 94475005656, 5530929, 5545632, 5562840, 25757521738, 5532495, 5528693, 5545778, 20614120935, 5561930, 5539358, 5541317, 237397556270, 5561874, 5544849, 5536366, 13395584418, 5558654, 5526404, 5531838, 126640734838, 5532973]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [117421158463, 4258675, 635973236, 2678906, 2473202, 2341130, 3124430745, 2211228, 2173716, 2133349, 1977756448, 2098560, 2055675, 2051256, 600343638, 2041696, 2040879, 2020721, 3057314759, 2018788, 2025025, 2012962, 635154349, 2008609, 2011334, 2023429, 2453532831, 2059947, 2044982, 2056502, 1019683597, 2064428, 2056831, 2087267, 845464528, 2112736, 2108495, 2136112, 2964434232, 2133609, 2146253, 2176260, 1247912783, 2198686, 2217137, 2248967, 3887067843, 2260679, 2282169, 2303977, 2002644069, 2357811, 2318181, 2377182, 1932640182, 2414331, 2429972, 2469516, 8299423911, 2535209, 2513900, 2586824, 1092036970, 2570620, 2596676, 2651309, 6678816314, 2671653, 2693918, 2733999, 3727696915, 2744919, 2754042, 2812223, 5020528449, 2833778, 2841248, 2898720, 7001365066, 2965206, 2989145, 2987149, 3642474197, 3084511, 3019606, 3104273, 12961051584, 3207150, 3137059, 3253706, 37526318817, 3309739, 3480451, 3356569, 80333762816, 3419221, 3391498, 3430485, 12344645807, 3428000, 3448186, 3585302, 225250934916, 3636628, 3739934, 3565055, 46939081524, 3689099, 3692127, 3696007, 24924841025, 3802365, 3722039, 3790466, 75780732076, 3879671, 3794175, 3874234, 12529341533, 3877893, 3823822, 3879804, 20611968754, 3978651, 3976908, 3944975, 16819549841, 3982921, 3958250, 3983109, 12437731900, 4082244, 4088073, 4062285, 38981827389, 4101908, 4166718, 4130472, 5708438742, 4221184, 4255929, 4202397, 6432930641, 4247585, 4243745, 4280553, 7907189589, 4335391, 4340411, 4319172, 5703383736, 4391380, 4392314, 4389057, 1657665674, 4441373, 4439267, 4479901, 5157370164, 4530556, 4483334, 4513258, 1222673588, 4593576, 4548270, 4561811, 4928697852, 4643904, 4654144, 4661502, 1079058116, 4698668, 4691702, 4680621, 5281642872, 4784164, 4731391, 4761158, 10159699619, 4791841, 4750829, 4806053, 5235732537, 4854856, 4835791, 4875552, 1936007964, 4890115, 4917760, 4883699, 4332653692, 4929649, 4843204, 4899233, 691537941, 4939914, 4984434, 4910014, 1045151478, 4945482, 5017078, 4926988, 863136654, 4921515, 262117646, 4892667, 870818267, 4924025, 4951027, 4862331, 7561084568, 4901802, 4859058, 4844329, 809073397, 4818403, 4826532, 4792500, 1544228735, 4815765, 4762641, 4746874, 5421114186, 4742513, 4719923, 4697303, 2054792101, 4707982, 4662986, 4680382, 916088445, 4657301, 4650983, 4630246, 4059501763, 4616426, 4603224, 4594480, 1005567428, 4594020, 4565933, 4582345, 1841097631, 4575868, 4522376, 4532550, 1259901965, 4542251, 4545484, 4516777, 1629789749, 4498338, 4509137, 4492732, 7294500646, 4496294, 4410799, 4464323, 6464088258, 4467798, 4473577, 4468089, 1218018545, 4480959, 4457954, 4472102, 10557965979, 4467188, 4458349, 4473857, 1002844312, 4470535, 4446172, 4441647, 2948580656, 4445290, 4447914, 4449851, 1269808440, 4458833, 4440135, 4425960, 7574003480, 4458179, 4430830, 4459955, 23579167806, 4454964, 4435222, 4472446, 12783322548, 4444955, 4464315, 4465484, 9060932007, 4465461, 4467047, 4475699, 37692704096, 4477025, 4452600, 4492657, 95637049868, 4485328, 4463078, 4491618, 249782792509, 4504488, 4422679, 4497514, 36720272016, 4516850, 4500132, 4550438, 88245526609, 4524626, 4520030, 4545692, 158930714944, 4531620, 4516972, 4574007, 6517513235, 4570566, 4549885, 4560207, 7991517811, 4593780, 4582961, 4591059, 7793058152, 4605223, 4587194, 4621964, 610921948, 4643051, 4606744, 4632719, 9184749649, 4672838, 4641547, 4675416, 4114412882, 4666928, 4690192, 4691691, 1892786082, 4719383, 4744796, 4748513, 5084273431, 4748072, 4731877, 4755577, 922749528, 4792938, 4777035, 4790986, 1748945276, 4804472, 4811672, 4821862, 1133302545, 4842313, 4835853, 4871157, 669367221, 4909287, 4882793, 4884913, 3691305029, 4904665, 4898517, 4922991, 2461422230, 4959898, 4975075, 4967624, 1498882513, 4988405, 4994534, 5008858, 1661274706, 5048461, 4994070, 5043403, 795088364, 5075398, 5074292, 5112096, 1010868976, 5108013, 5152668, 5126971, 3133329008, 5172320, 5160177, 5188104, 2152831354, 5217765, 5217354, 5213358, 888245321, 5245858, 5235580, 5271939, 1324860513, 5286148, 6131321, 5310530, 693097102, 5302250, 5487640, 5339775, 3478132915, 5370814, 5455423, 5365448, 884234495, 5379687, 5398467, 5399882, 648654039, 5380481, 5413689, 5432822, 4080465412, 5452472, 5450370, 5481267, 977938786, 5479938, 5446905, 5480214, 4022947402, 5523058, 5479458, 5510683, 653143574, 5531457, 5534074, 5520205, 1828478705, 5552732, 5566285, 5572887, 6009701714, 5585426, 5569691, 5560091, 688311226, 5634559, 5586846, 5589218, 4362869725, 5600307, 5578519, 5614282, 3491462426, 5585865, 5557557, 5605959, 3560954022, 5590209, 5593502, 5608894, 837318496, 5622283, 5585547, 5613422, 4872400839, 5596119, 5575584, 5612892, 4658135814, 5566090, 5582377, 5565289, 17164510281, 5597977, 5545997, 5579551, 14269749925, 5583618, 5556064, 5580434, 19738693629, 5565096, 5555819, 5556979, 94475005656, 5530929, 5545632, 5562840, 25757521738, 5532495, 5528693, 5545778, 20614120935, 5561930, 5539358, 5541317, 237397556270, 5561874, 5544849, 5536366, 13395584418, 5558654, 5526404, 5531838, 126640734838, 5532973]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [393744186385, 4209401, 1978585871, 2697242, 2458089, 2335755, 2174227011, 2186452, 2137220, 2087970, 2009500340, 2193480, 2030465, 2003799, 2335780219, 2029510, 2058750, 2044768, 2266361846, 2031801, 2050319, 2013974, 1472132369, 1997870, 2001615, 2013319, 1475904854, 2119694, 2032779, 2034830, 1942019304, 2050115, 2026451, 2103469, 1364619501, 2037693, 2051242, 2070591, 2079652383, 1995798, 2028902, 2109762, 4903086563, 1979107, 1970454, 1974392, 1584942290, 1983188, 1991657, 1993774, 1291740176, 2054135, 1994377, 2005551, 3562830603, 2040250, 2017116, 2031974, 4002509617, 2079232, 2038279, 2067851, 4217178764, 1946145, 2000668, 2019458, 4816650052, 1935114, 1965588, 2006859, 2606227164, 1908793, 1911389, 1925552, 5231756777, 1901786, 1888778, 1908569, 4544024896, 1915353, 1914773, 1893072, 4503757804, 1911003, 1872783, 1896989, 19896927890, 1888349, 1873212, 1883438, 12738840285, 1891602, 1906245, 1894112, 9973304191, 1883030, 1877492, 1871424, 450393525362, 1881330, 1868349, 1884440, 112124360034, 1878641, 1882128, 1860581, 11300729035, 1869712, 1861955, 1856848, 95817035221, 1871821, 1854451, 1862823, 80396448156, 1860817, 1851478, 1857519, 9138213927, 1851328, 1843087, 1839960, 2891061538, 1856413, 1847404, 1851301, 1746587698, 1845368, 1811266, 1840895, 4508523165, 1840936, 1844540, 1834543, 4909831444, 1827535, 1846724, 1839773, 1886437798, 1838376, 1829384, 1828766, 4137470575, 1832922, 1826880, 1832278, 1271518201, 1831509, 1825253, 1830648, 3445785739, 1840867, 1814323, 1833544, 2068284922, 1829287, 1821911, 1832135, 5375963078, 1826612, 1812950, 1826754, 1885155625, 1829439, 1824913, 1829709, 1446462081, 1824649, 1827521, 1828522, 3024798817, 1834258, 1827763, 1824643, 1434526527, 1816811, 1825026, 1824811, 2041345786, 1827174, 1813352, 1819914, 2222241257, 1820208, 1826282, 1829723, 1930841594, 1823634, 1820745, 1821733, 1456380185, 1825991, 1810984, 1825093, 1711100075, 1821297, 1841534, 1813239, 2916718539, 1827718, 1910747, 1827583, 1354415939, 1818192, 19546308, 1817314, 1834781230, 1825223, 1866371, 1821607, 3718291251, 1823169, 1819880, 1820594, 1913430853, 1826552, 1820724, 1820823, 1587842468, 1822584, 1820590, 1822125, 1771123069, 1819760, 1815999, 1824821, 1401052633, 1830442, 1820583, 1818445, 2347585457, 1825472, 1825731, 1818326, 1786695114, 1826070, 1816206, 1820880, 1723381248, 1828004, 1818321, 1817425, 1953281961, 1828552, 1814633, 1828218, 1456728772, 1828890, 1816607, 1820943, 2450026411, 1813739, 1821216, 1825746, 3599021596, 1824036, 1791976, 1821982, 2788597570, 1823113, 1827364, 1827626, 2400787107, 1820669, 1813739, 1831401, 10423670473, 1826705, 1815314, 1822989, 5283712326, 1825872, 1822453, 1822138, 2827461373, 1823614, 1819904, 1825177, 2157107783, 1820869, 1823008, 1823951, 9663098277, 1825415, 1820038, 1826607, 4472962149, 1824509, 1807832, 1822419, 2266707657, 1821865, 1819006, 1823161, 2438766302, 1820688, 1825872, 1825698, 19277905774, 1820310, 1818661, 1828871, 19983754807, 1820450, 1817064, 1826859, 3339806663, 1833994, 1790940, 1823456, 1060709390029, 1825015, 1824542, 1823814, 56794952150, 1826821, 1814111, 1818281, 14700926305, 1824195, 1806887, 1824116, 27811754250, 1819954, 1823207, 1823647, 8565002386, 1826084, 1821523, 1822651, 9666046304, 1816250, 1807966, 1824412, 13702060362, 1824788, 1817662, 1825539, 3617203243, 1818859, 1820900, 1825188, 5217686868, 1821888, 1815465, 1815371, 2937988141, 1825465, 1829428, 1814314, 5377163575, 1826126, 1820921, 1826910, 2377634463, 1825222, 1822807, 1818779, 1666937104, 1823789, 1816216, 1822949, 2228161591, 1814569, 1822164, 1819519, 2164819013, 1817115, 1817961, 1817114, 2506435561, 1825854, 1807554, 1817289, 1359938469, 1823017, 1813544, 1818036, 1918793294, 1824528, 1822280, 1819343, 2105863595, 1817218, 1796166, 1823844, 1529124284, 1824904, 1807689, 1822338, 3005093452, 1817439, 1824815, 1822338, 1343055829, 1824301, 1821062, 1824330, 1958018416, 1822060, 1818580, 1821325, 3009394129, 1813983, 1824220, 1816792, 1553177590, 1820516, 1927701, 1818246, 2707146723, 1815122, 1813131, 1813184, 1304218748, 1813754, 1873820, 1826010, 1301298396, 1814202, 1821577, 1811354, 3386784732, 1816490, 1816559, 1819502, 1263119245, 1812233, 1826504, 1818899, 2280446347, 1814325, 1830196, 1819489, 2964825106, 1814659, 1803406, 1813516, 1248192262, 1808041, 1808740, 1818872, 1780559117, 1818960, 1817919, 1818906, 1728413883, 1811293, 1809543, 1814550, 2193413897, 1820161, 1814390, 1812331, 1444490291, 1826036, 1810876, 1814171, 2592491188, 1814867, 1798003, 1820210, 1839719717, 1819604, 1814107, 1807742, 5167186969, 1819792, 1813592, 1817562, 4351674437, 1815576, 1805825, 1814402, 1906724585, 1808049, 1812654, 1817059, 2934574410, 1812471, 1802130, 1812004, 10073353087, 1812311, 1810288, 1817182, 10496482951, 1818398, 1808194, 1815941, 8394375341, 1807357, 1807974, 1817282, 5907165617, 1811920, 1807972, 1811844, 7559320784, 1809865, 1807806, 1814305, 79884414305, 1814400, 1821112, 1809843, 7150894564, 1812225, 1815043, 1805777, 465525720309, 1811982]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [159965234698, 4844830, 370278902, 2877532, 2690622, 2517798, 549804876, 2381171, 2425869, 2331225, 762306068, 2534742, 2330443, 2282425, 840400518, 2327211, 2369401, 2364938, 706234070, 2369401, 2405917, 2354870, 455661504, 2319702, 2334614, 2351453, 336958987, 2515626, 2402052, 2398945, 571777053, 2424421, 2367596, 2491736, 1181639110, 2408995, 2438776, 2479010, 1974198261, 2366605, 2405524, 2518633, 2521633717, 2333181, 2365301, 2338452, 2592742992, 2326824, 2351668, 2360254, 2071883311, 2442052, 2367737, 2353621, 1235716628, 2413738, 2383138, 2436030, 550022884, 2467660, 2437030, 2463307, 348351291, 2290305, 2369564, 2411001, 637313102, 2273467, 2319476, 2384308, 1024775480, 2221561, 2231568, 2265658, 955230282, 2218269, 2202692, 2227008, 442921091, 2253992, 2254369, 2220788, 824065590, 2223065, 2179913, 2203089, 6164266806, 2196631, 2192001, 2204635, 26945967747, 2199696, 2227635, 2224344, 96549937964, 2187727, 2194224, 2199074, 435605120105, 2188090, 2163294, 2208938, 188299672878, 2194926, 2208137, 2173301, 475128649625, 2183216, 2160868, 2171603, 59242467530, 2181563, 2150814, 2170235, 8601573444, 2168914, 2145917, 2175854, 630827580, 2150957, 2139638, 2144585, 706568760, 2161660, 2145105, 2158139, 1350823724, 2142006, 2096502, 2144364, 1160250459, 2124800, 2144837, 2145087, 570848604, 2133521, 2138607, 2141160, 349479191, 2136833, 2145202, 2131514, 868399604, 2122016, 2108944, 2135974, 1926069204, 2128479, 2119568, 2124188, 2979683904, 2120595, 2113268, 2125139, 3507658232, 2122861, 2111172, 2119748, 3296113172, 2122437, 2102381, 2116336, 2490725071, 2104409, 2119916, 2126663, 1495706848, 2124593, 2116169, 2122013, 731749916, 2114480, 2106467, 2123451, 375117671, 2117362, 2101301, 2114780, 354929410, 2118477, 2094406, 2122869, 453341403, 2117807, 2109059, 2119468, 479200633, 2124767, 2117644, 2114324, 397588988, 2129125, 2099056, 2112788, 336633166, 2121596, 2119314, 2118404, 470022503, 2128561, 2189804, 2112522, 872868764, 2125353, 26511732, 2120083, 1445810633, 2113402, 2186378, 2111197, 1945898714, 2128142, 2172372, 2116617, 2137628412, 2114792, 2124897, 2113114, 1924127066, 2119327, 2124081, 2115850, 1414980503, 2118627, 2104444, 2125610, 853597904, 2119419, 2113869, 2113739, 470832111, 2118869, 2116593, 2122329, 341464859, 2121564, 2111101, 2112891, 371694060, 2123198, 2116015, 2127210, 392858872, 2118528, 2118043, 2123060, 343995620, 2126428, 2121981, 2121251, 391993483, 2119039, 2124282, 2112274, 898996560, 2126946, 2062878, 2131031, 2224428410, 2122293, 2116276, 2128816, 4440690363, 2121457, 2131786, 2128315, 7143966376, 2120142, 2117169, 2146456, 9528949835, 2121490, 2113286, 2130036, 10658691687, 2120141, 2120027, 2134137, 10010128116, 2126563, 2115827, 2131675, 7614061904, 2118523, 2123105, 2129001, 4408440819, 2127443, 2104096, 2115084, 1676807584, 2130257, 2128370, 2129471, 418959564, 2128058, 2114456, 2130509, 458717475, 2127823, 2137585, 2130273, 387261217, 2129875, 2126182, 2142185, 164545599332, 2132114, 2087067, 2145680, 174433185677, 2124788, 2130647, 2146039, 83500584004, 2138078, 2140877, 2137429, 63487051585, 2134024, 2111992, 2154889, 49637509121, 2139959, 2137742, 2138872, 36372850287, 2138282, 2142555, 2159838, 23994489203, 2133531, 2133725, 2146576, 13753827482, 2144257, 2129849, 2158077, 6583425167, 2144952, 2147343, 2157522, 2468678115, 2150770, 2135716, 2163268, 746786207, 2140123, 2159430, 2159411, 343706987, 2153672, 2121928, 2148660, 379734617, 2154711, 2145531, 2152619, 388482756, 2144848, 2136094, 2147481, 344767667, 2151051, 2152374, 2158426, 447785510, 2147066, 2133376, 2151313, 853191677, 2158912, 2140904, 2156266, 1493249612, 2147241, 2140982, 2146566, 2113069135, 2153663, 2157565, 2159532, 2412262930, 2151729, 2112349, 2159837, 2247360744, 2162209, 2151787, 2163849, 1693750959, 2157691, 2160353, 2163577, 1024549754, 2167225, 2152068, 2156232, 521304145, 2169377, 2153225, 2176274, 337384502, 2170176, 2162325, 2157337, 416562323, 2166549, 2241515, 2168901, 570474789, 2157984, 2639286, 2161605, 619087662, 2167756, 2147278, 2164285, 513191541, 2164791, 2155803, 2174257, 370603969, 2169858, 2169923, 2173363, 365628711, 2163343, 2178216, 2170499, 601545894, 2176902, 2151365, 2167432, 1009143591, 2161934, 2161762, 2169804, 1372799867, 2172991, 2159334, 2169495, 1450453457, 2177322, 2175961, 2177939, 1172139844, 2170780, 2136472, 2180396, 693864580, 2182405, 2179105, 2173843, 359746939, 2175992, 2153498, 2166399, 460857198, 2169804, 2145254, 2172373, 1050857563, 2172007, 2162999, 2174108, 1830719029, 2178355, 2173919, 2172785, 2310524811, 2185794, 2161296, 2173962, 2085855358, 2171853, 2162372, 2178045, 1222360453, 2175417, 2153642, 2169483, 402319330, 2178938, 2178400, 2174381, 791158258, 2174406, 2170969, 2175175, 3563378805, 2179805, 2165087, 2177725, 9318747270, 2175407, 2160626, 2182824, 17648090685, 2178863, 2162016, 2170653, 26945012205, 2174054, 2178107, 2174438, 35059672907, 2162153, 2167622, 2172920, 40166631566, 2166383]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396093750, "timestamp": "2021-09-20T12:17:48+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118947368599, 4257130, 630199698, 2676385, 2477022, 2358536, 3153890931, 2215321, 2178096, 2130050, 1979447651, 2107960, 2058440, 2044213, 605222398, 2038966, 2045422, 2027187, 3077137924, 2022920, 2029673, 2018888, 641914994, 2018980, 2010072, 2015868, 2472082640, 2065937, 2048629, 2052119, 1030640929, 2056632, 2056884, 2082207, 856793297, 2113936, 2111605, 2127786, 2985291651, 2136823, 2148626, 2177730, 1262860438, 2208191, 2221250, 2241508, 3845430139, 2241856, 2285720, 2300285, 2023190452, 2359838, 2330823, 2382759, 1910803245, 2419026, 2431183, 2478530, 8263326120, 2517232, 2523325, 2589972, 1102986109, 2577824, 2595095, 2669151, 6695977760, 2674203, 2680738, 2743995, 3728858122, 2750935, 2749745, 2793367, 5037566001, 2841650, 2836525, 2898763, 6961870351, 2976571, 2976235, 2997906, 3662816142, 3059110, 3019791, 3106348, 12919465872, 3216535, 3143631, 3276640, 37394630456, 3292137, 3476897, 3359800, 80212648178, 3413014, 3389234, 3457018, 12297439502, 3429963, 3451459, 3581931, 225239168390, 3623185, 3740954, 3566194, 47004456622, 3676105, 3676745, 3697506, 24965607281, 3801339, 3744633, 3789745, 75807664179, 3903519, 3799229, 3868264, 12533440420, 3890135, 3828328, 3879326, 20591067387, 3958206, 3968709, 3961930, 16853568890, 3959851, 3975578, 4005933, 12463584391, 4058935, 4082936, 4086569, 39086128525, 4113970, 4166303, 4133702, 5742372651, 4218696, 4253764, 4201476, 6468902388, 4259643, 4243008, 4252580, 7955018698, 4343500, 4319310, 4319486, 5718964828, 4380974, 4376089, 4387888, 1648376376, 4443883, 4452286, 4448647, 5164685425, 4536950, 4480945, 4521063, 1223898816, 4578047, 4552364, 4571323, 4932500669, 4656915, 4620662, 4643049, 1083125304, 4701632, 4678498, 4702165, 5292560680, 4793963, 4736881, 4768627, 10178823841, 4811953, 4769732, 4811012, 5249422985, 4893911, 4862278, 4855262, 1944592736, 4912293, 4902573, 4878122, 4352426113, 4941496, 4864125, 4890354, 693546176, 4939567, 4983044, 4902855, 1041201562, 4966950, 5030895, 4905118, 860279927, 4946811, 262010059, 4895633, 870177174, 4896453, 4952653, 4870808, 7557739490, 4882542, 4871849, 4840789, 811248867, 4827336, 4817503, 4778637, 1549651237, 4787938, 4794242, 4759329, 5437595324, 4762143, 4716614, 4715815, 2066653438, 4716501, 4700863, 4676001, 916060067, 4653272, 4649955, 4626679, 4071122754, 4643974, 4601243, 4595031, 999029535, 4602771, 4588227, 4561529, 1840160097, 4559498, 4537282, 4541392, 1254579327, 4534952, 4520756, 4516672, 1629356522, 4515035, 4491823, 4488268, 7295530050, 4503754, 4402297, 4488728, 6465791724, 4476745, 4461462, 4484128, 1208436518, 4468416, 4453787, 4467631, 10566588955, 4462968, 4457546, 4453162, 1003833185, 4470865, 4433107, 4452590, 2935892806, 4461237, 4440164, 4462263, 1278760563, 4442243, 4437766, 4428009, 7586760400, 4444270, 4482599, 4434693, 23580683591, 4460499, 4422085, 4460771, 12783038046, 4446751, 4458757, 4458770, 9052450733, 4460211, 4448261, 4450814, 37732737427, 4465923, 4471510, 4495728, 95683736087, 4486317, 4475730, 4518498, 249620709115, 4505706, 4402799, 4503521, 36677458204, 4522269, 4524327, 4518150, 88180340574, 4512083, 4515849, 4537006, 159007732169, 4559706, 4518439, 4578217, 6517638195, 4562640, 4553442, 4560517, 7967282684, 4586998, 4596923, 4612725, 7803085098, 4618318, 4577742, 4620815, 610682236, 4632729, 4623721, 4655334, 9166820060, 4648623, 4647759, 4684777, 4112930106, 4710810, 4675310, 4698149, 1896585253, 4712601, 4713654, 4752726, 5103374328, 4750321, 4732648, 4755261, 922396903, 4786702, 4777944, 4804093, 1736435002, 4788710, 4805402, 4839078, 1144741309, 4835287, 4859248, 4873633, 671086498, 4873883, 4885849, 4889052, 3675638604, 4915023, 4925974, 4944538, 2465208507, 4958138, 4951499, 4983659, 1503903669, 5008174, 5012043, 5039442, 1657728968, 5024807, 4982483, 5033655, 801284865, 5095066, 5082288, 5090977, 1015490880, 5128144, 5132151, 5129342, 3142382228, 5180791, 5180224, 5166372, 2149514654, 5192257, 5177485, 5242470, 886013049, 5243988, 5219727, 5282426, 1320439791, 5272541, 6123065, 5299145, 689722185, 5313297, 5509107, 5342305, 3453945981, 5331052, 5447602, 5374024, 884216180, 5397742, 5390210, 5407453, 651927523, 5410512, 5445422, 5417716, 4072342407, 5460346, 5443640, 5465164, 982355899, 5488839, 5476149, 5471418, 4027059675, 5502023, 5471998, 5518939, 660475841, 5526021, 5530673, 5561987, 1831209826, 5547618, 5542017, 5571420, 6000307025, 5589038, 5605662, 5559784, 694086593, 5623192, 5581762, 5584398, 4338887335, 5602807, 5575339, 5600231, 3476680073, 5609427, 5535327, 5593438, 3532198995, 5610484, 5587540, 5591252, 844983652, 5574857, 5582013, 5591136, 4851268659, 5604004, 5558223, 5578572, 4685200723, 5580883, 5563934, 5582718, 17185754542, 5554953, 5550487, 5590977, 14297821189, 5558898, 5531319, 5568111, 19714176447, 5561208, 5578039, 5583875, 94449889806, 5571595, 5545798, 5557538, 25708287420, 5544953, 5538314, 5556825, 20556790827, 5560462, 5516421, 5561143, 237276586518, 5564573, 5532986, 5558341, 13399416313, 5556834, 5539294, 5545050, 126518805044, 5547354]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118947368599, 4257130, 630199698, 2676385, 2477022, 2358536, 3153890931, 2215321, 2178096, 2130050, 1979447651, 2107960, 2058440, 2044213, 605222398, 2038966, 2045422, 2027187, 3077137924, 2022920, 2029673, 2018888, 641914994, 2018980, 2010072, 2015868, 2472082640, 2065937, 2048629, 2052119, 1030640929, 2056632, 2056884, 2082207, 856793297, 2113936, 2111605, 2127786, 2985291651, 2136823, 2148626, 2177730, 1262860438, 2208191, 2221250, 2241508, 3845430139, 2241856, 2285720, 2300285, 2023190452, 2359838, 2330823, 2382759, 1910803245, 2419026, 2431183, 2478530, 8263326120, 2517232, 2523325, 2589972, 1102986109, 2577824, 2595095, 2669151, 6695977760, 2674203, 2680738, 2743995, 3728858122, 2750935, 2749745, 2793367, 5037566001, 2841650, 2836525, 2898763, 6961870351, 2976571, 2976235, 2997906, 3662816142, 3059110, 3019791, 3106348, 12919465872, 3216535, 3143631, 3276640, 37394630456, 3292137, 3476897, 3359800, 80212648178, 3413014, 3389234, 3457018, 12297439502, 3429963, 3451459, 3581931, 225239168390, 3623185, 3740954, 3566194, 47004456622, 3676105, 3676745, 3697506, 24965607281, 3801339, 3744633, 3789745, 75807664179, 3903519, 3799229, 3868264, 12533440420, 3890135, 3828328, 3879326, 20591067387, 3958206, 3968709, 3961930, 16853568890, 3959851, 3975578, 4005933, 12463584391, 4058935, 4082936, 4086569, 39086128525, 4113970, 4166303, 4133702, 5742372651, 4218696, 4253764, 4201476, 6468902388, 4259643, 4243008, 4252580, 7955018698, 4343500, 4319310, 4319486, 5718964828, 4380974, 4376089, 4387888, 1648376376, 4443883, 4452286, 4448647, 5164685425, 4536950, 4480945, 4521063, 1223898816, 4578047, 4552364, 4571323, 4932500669, 4656915, 4620662, 4643049, 1083125304, 4701632, 4678498, 4702165, 5292560680, 4793963, 4736881, 4768627, 10178823841, 4811953, 4769732, 4811012, 5249422985, 4893911, 4862278, 4855262, 1944592736, 4912293, 4902573, 4878122, 4352426113, 4941496, 4864125, 4890354, 693546176, 4939567, 4983044, 4902855, 1041201562, 4966950, 5030895, 4905118, 860279927, 4946811, 262010059, 4895633, 870177174, 4896453, 4952653, 4870808, 7557739490, 4882542, 4871849, 4840789, 811248867, 4827336, 4817503, 4778637, 1549651237, 4787938, 4794242, 4759329, 5437595324, 4762143, 4716614, 4715815, 2066653438, 4716501, 4700863, 4676001, 916060067, 4653272, 4649955, 4626679, 4071122754, 4643974, 4601243, 4595031, 999029535, 4602771, 4588227, 4561529, 1840160097, 4559498, 4537282, 4541392, 1254579327, 4534952, 4520756, 4516672, 1629356522, 4515035, 4491823, 4488268, 7295530050, 4503754, 4402297, 4488728, 6465791724, 4476745, 4461462, 4484128, 1208436518, 4468416, 4453787, 4467631, 10566588955, 4462968, 4457546, 4453162, 1003833185, 4470865, 4433107, 4452590, 2935892806, 4461237, 4440164, 4462263, 1278760563, 4442243, 4437766, 4428009, 7586760400, 4444270, 4482599, 4434693, 23580683591, 4460499, 4422085, 4460771, 12783038046, 4446751, 4458757, 4458770, 9052450733, 4460211, 4448261, 4450814, 37732737427, 4465923, 4471510, 4495728, 95683736087, 4486317, 4475730, 4518498, 249620709115, 4505706, 4402799, 4503521, 36677458204, 4522269, 4524327, 4518150, 88180340574, 4512083, 4515849, 4537006, 159007732169, 4559706, 4518439, 4578217, 6517638195, 4562640, 4553442, 4560517, 7967282684, 4586998, 4596923, 4612725, 7803085098, 4618318, 4577742, 4620815, 610682236, 4632729, 4623721, 4655334, 9166820060, 4648623, 4647759, 4684777, 4112930106, 4710810, 4675310, 4698149, 1896585253, 4712601, 4713654, 4752726, 5103374328, 4750321, 4732648, 4755261, 922396903, 4786702, 4777944, 4804093, 1736435002, 4788710, 4805402, 4839078, 1144741309, 4835287, 4859248, 4873633, 671086498, 4873883, 4885849, 4889052, 3675638604, 4915023, 4925974, 4944538, 2465208507, 4958138, 4951499, 4983659, 1503903669, 5008174, 5012043, 5039442, 1657728968, 5024807, 4982483, 5033655, 801284865, 5095066, 5082288, 5090977, 1015490880, 5128144, 5132151, 5129342, 3142382228, 5180791, 5180224, 5166372, 2149514654, 5192257, 5177485, 5242470, 886013049, 5243988, 5219727, 5282426, 1320439791, 5272541, 6123065, 5299145, 689722185, 5313297, 5509107, 5342305, 3453945981, 5331052, 5447602, 5374024, 884216180, 5397742, 5390210, 5407453, 651927523, 5410512, 5445422, 5417716, 4072342407, 5460346, 5443640, 5465164, 982355899, 5488839, 5476149, 5471418, 4027059675, 5502023, 5471998, 5518939, 660475841, 5526021, 5530673, 5561987, 1831209826, 5547618, 5542017, 5571420, 6000307025, 5589038, 5605662, 5559784, 694086593, 5623192, 5581762, 5584398, 4338887335, 5602807, 5575339, 5600231, 3476680073, 5609427, 5535327, 5593438, 3532198995, 5610484, 5587540, 5591252, 844983652, 5574857, 5582013, 5591136, 4851268659, 5604004, 5558223, 5578572, 4685200723, 5580883, 5563934, 5582718, 17185754542, 5554953, 5550487, 5590977, 14297821189, 5558898, 5531319, 5568111, 19714176447, 5561208, 5578039, 5583875, 94449889806, 5571595, 5545798, 5557538, 25708287420, 5544953, 5538314, 5556825, 20556790827, 5560462, 5516421, 5561143, 237276586518, 5564573, 5532986, 5558341, 13399416313, 5556834, 5539294, 5545050, 126518805044, 5547354]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [395602940808, 4200384, 1987645284, 2697862, 2464440, 2325834, 2171722486, 2176941, 2139421, 2092630, 2022916599, 2194844, 2042126, 2000852, 2342611534, 2026021, 2053551, 2039991, 2272845491, 2028717, 2052080, 2009454, 1466010070, 1989923, 1997939, 2010148, 1490825124, 2121671, 2037995, 2029318, 1947488155, 2047432, 2018893, 2088267, 1364940727, 2044091, 2066743, 2072869, 2096518529, 1995911, 2033411, 2102969, 4902610228, 1972348, 1978558, 1977733, 1580810109, 1976384, 1989925, 1991602, 1302806989, 2049697, 1986416, 1994047, 3577867670, 2038132, 2019795, 2044982, 3980280594, 2061524, 2043674, 2064964, 4244286283, 1951198, 2000672, 2012606, 4852295934, 1934736, 1963995, 2016086, 2598518436, 1908075, 1910587, 1914645, 5254580428, 1902468, 1894049, 1903640, 4524910344, 1931286, 1917616, 1886019, 4502301385, 1911628, 1881855, 1890129, 19834421637, 1884588, 1873758, 1879592, 12700768195, 1888121, 1911017, 1889925, 9974392380, 1877385, 1881646, 1879709, 450311450317, 1879005, 1864957, 1895294, 112219313840, 1881332, 1882068, 1860577, 11304399629, 1872386, 1863609, 1853099, 95694182197, 1868437, 1845517, 1862530, 80395775855, 1859777, 1846634, 1852060, 9169291707, 1851722, 1843827, 1843416, 2879662311, 1855219, 1840167, 1844284, 1754213717, 1850194, 1817335, 1839731, 4519553392, 1833046, 1840846, 1837794, 4877332307, 1840807, 1842903, 1839072, 1901156183, 1831016, 1829203, 1829805, 4112006208, 1837647, 1828736, 1828401, 1281879052, 1836390, 1824532, 1834298, 3448885475, 1829912, 1828506, 1831326, 2052238158, 1827974, 1816764, 1829451, 5406034222, 1828835, 1823920, 1826069, 1903557681, 1829618, 1816342, 1822606, 1445223925, 1820169, 1826862, 1823060, 3039602734, 1829836, 1818964, 1822470, 1444569336, 1827549, 1817935, 1824970, 2035171881, 1822533, 1814659, 1820224, 2238281530, 1820882, 1822302, 1830695, 1947527082, 1826159, 1821958, 1822863, 1444838852, 1821366, 1819178, 1830804, 1714500997, 1828595, 1842329, 1822384, 2924113493, 1825900, 1906224, 1825919, 1349287404, 1813199, 19530788, 1824728, 1834302007, 1825619, 1859680, 1826088, 3734490419, 1824117, 1828559, 1819827, 1902153471, 1824231, 1823567, 1815288, 1586568915, 1817582, 1820091, 1821583, 1793937154, 1818875, 1809822, 1819478, 1400054386, 1830161, 1823865, 1828784, 2355836100, 1818235, 1821614, 1828427, 1800309014, 1813395, 1816475, 1821979, 1730353582, 1824874, 1817419, 1826949, 1951600023, 1832156, 1810786, 1826100, 1467149225, 1825236, 1822237, 1823410, 2462058942, 1821190, 1820446, 1826011, 3582180849, 1824848, 1800299, 1821595, 2803002022, 1825476, 1816842, 1822090, 2421552058, 1826111, 1815669, 1828910, 10408476888, 1825674, 1817088, 1824155, 5275102056, 1824818, 1809708, 1827891, 2830996721, 1822915, 1816318, 1820349, 2144090060, 1826424, 1820293, 1823381, 9646683747, 1828075, 1815377, 1822547, 4502823642, 1817570, 1809772, 1828644, 2256397011, 1822392, 1813688, 1830073, 2442275724, 1818908, 1819529, 1826257, 19207083561, 1822434, 1824924, 1830751, 20032103493, 1824376, 1813183, 1825991, 3346123196, 1814595, 1784173, 1827141, 1060597056548, 1817320, 1822943, 1819061, 56892796182, 1819503, 1820852, 1823932, 14711208721, 1819694, 1808391, 1820546, 27750030256, 1821864, 1824784, 1827022, 8566567699, 1827410, 1814149, 1829494, 9671159000, 1825320, 1815092, 1814922, 13646325678, 1817844, 1819186, 1822481, 3604387966, 1826629, 1831507, 1819686, 5238979586, 1822087, 1821523, 1821603, 2916389707, 1818103, 1826623, 1818410, 5393893923, 1818212, 1813898, 1819215, 2381849151, 1828956, 1818860, 1822126, 1678380388, 1820631, 1814365, 1820119, 2235885558, 1825054, 1816575, 1825308, 2158007266, 1820929, 1815406, 1830644, 2532693295, 1830049, 1810143, 1821544, 1363118515, 1819665, 1821591, 1823217, 1924057670, 1831537, 1824693, 1812799, 2123335691, 1825991, 1798209, 1825630, 1530611443, 1823499, 1821085, 1824669, 3006692818, 1822578, 1822242, 1826112, 1352911231, 1819169, 1830850, 1828178, 1965703797, 1821574, 1817542, 1820446, 2991334197, 1814758, 1833544, 1821058, 1555691446, 1827253, 1932830, 1826129, 2714913082, 1822455, 1815971, 1817223, 1303565601, 1817051, 1872007, 1815423, 1302264051, 1817329, 1811509, 1814450, 3399809193, 1827933, 1819611, 1812756, 1260008855, 1819596, 1814767, 1818462, 2289772438, 1821509, 1822481, 1819744, 2993812262, 1822366, 1801022, 1817520, 1248186602, 1821355, 1813666, 1818988, 1792155063, 1814586, 1814537, 1817005, 1735259710, 1818529, 1805145, 1817620, 2198299485, 1812581, 1812325, 1821577, 1446338904, 1816649, 1817205, 1817601, 2601107800, 1822525, 1800691, 1819796, 1851980083, 1817013, 1810191, 1813871, 5117636255, 1821484, 1814503, 1818246, 4360945237, 1822153, 1806572, 1816212, 1925262851, 1814208, 1816185, 1809598, 2925988820, 1816570, 1801824, 1817429, 10093733464, 1811424, 1809381, 1817922, 10519663173, 1819953, 1805167, 1823869, 8386629640, 1817261, 1806709, 1814066, 5902811499, 1814347, 1799652, 1810003, 7596233372, 1818957, 1814061, 1813909, 79871464758, 1812672, 1802656, 1809523, 7147110976, 1814506, 1807284, 1812218, 465287081042, 1812688]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [160987075441, 4842370, 375756689, 2890800, 2688339, 2512186, 555150840, 2390253, 2424171, 2336424, 767097953, 2541737, 2324278, 2281303, 845045200, 2331684, 2353217, 2364510, 710419110, 2355556, 2404131, 2355216, 459466204, 2319991, 2344872, 2358551, 341738850, 2524985, 2385914, 2403040, 579285923, 2423696, 2375386, 2499668, 1193564975, 2418207, 2439898, 2476170, 1991950270, 2357519, 2394990, 2524684, 2544374562, 2326116, 2366573, 2325805, 2617487064, 2322231, 2356198, 2354922, 2096207483, 2433793, 2359250, 2352296, 1255820338, 2429022, 2388675, 2435241, 562916834, 2472099, 2438377, 2473663, 353028548, 2294774, 2364454, 2421090, 634950259, 2275708, 2323005, 2382337, 1018197943, 2229394, 2225782, 2267535, 949344901, 2214241, 2223329, 2228023, 443046892, 2244928, 2244409, 2214354, 839593788, 2215559, 2185849, 2216013, 6207265790, 2201312, 2189620, 2199734, 27038724681, 2205121, 2223576, 2217650, 96734870286, 2187069, 2190870, 2189269, 436015105431, 2176928, 2167952, 2211923, 188395969063, 2197368, 2211220, 2160888, 474649282347, 2170804, 2171326, 2173662, 59064554185, 2175787, 2160147, 2173075, 8536562457, 2179560, 2156049, 2176457, 624219411, 2150106, 2139674, 2149302, 728882951, 2170112, 2147301, 2160670, 1382523546, 2140233, 2093646, 2146930, 1188439969, 2138119, 2144779, 2133711, 587594839, 2132781, 2130544, 2135226, 352151828, 2135108, 2143281, 2130732, 856529395, 2112894, 2109283, 2129571, 1902852225, 2124309, 2116747, 2121558, 2947208608, 2120107, 2123415, 2129045, 3470905554, 2116971, 2110603, 2119257, 3259276339, 2125278, 2098537, 2135438, 2459164410, 2105434, 2109123, 2121163, 1473663866, 2121699, 2115939, 2125091, 721373634, 2127825, 2107323, 2115799, 376288807, 2128581, 2106410, 2120857, 365725557, 2112857, 2101950, 2120040, 469891401, 2127002, 2111635, 2121063, 496677002, 2115660, 2126136, 2115672, 410701311, 2120285, 2103202, 2113502, 342190754, 2113755, 2133578, 2113940, 466289259, 2123699, 2188895, 2107809, 860687363, 2114728, 26481669, 2119134, 1426884005, 2121474, 2176384, 2111380, 1923129364, 2128353, 2167405, 2128897, 2113918297, 2117643, 2123458, 2114814, 1902630137, 2110084, 2119673, 2112804, 1398621882, 2105164, 2099344, 2117435, 843727950, 2120003, 2112875, 2123111, 468499391, 2112795, 2127064, 2122496, 346705991, 2126641, 2105764, 2116696, 382219873, 2104643, 2104116, 2127435, 404611201, 2116295, 2108457, 2116011, 352903673, 2119288, 2128634, 2135476, 393177431, 2124747, 2109306, 2129740, 889919599, 2119613, 2056590, 2132158, 2204289675, 2111915, 2125158, 2125003, 4410450486, 2125030, 2130269, 2139836, 7107834146, 2126332, 2113954, 2134649, 9490900389, 2124048, 2109232, 2127426, 10620906891, 2131276, 2120917, 2131026, 9978398449, 2131790, 2113442, 2133319, 7589985316, 2124934, 2133948, 2128990, 4392522363, 2124251, 2104263, 2120851, 1670948483, 2135195, 2121910, 2133850, 421912718, 2129181, 2115997, 2123140, 467733208, 2132351, 2127746, 2130628, 390973681, 2130904, 2120837, 2134697, 164416756118, 2138538, 2089481, 2133924, 174566836785, 2124014, 2136978, 2149262, 83591117710, 2142093, 2125519, 2138352, 63551656831, 2135147, 2113624, 2146620, 49689215309, 2141758, 2134744, 2145774, 36404695058, 2137822, 2127151, 2144438, 24013083076, 2138468, 2123787, 2149981, 13762367159, 2142498, 2135304, 2151680, 6586919052, 2132457, 2138408, 2152074, 2470411020, 2144609, 2138028, 2153261, 749884099, 2140097, 2157209, 2152424, 349071417, 2156367, 2126313, 2154538, 386447347, 2147372, 2139065, 2151559, 395157161, 2147455, 2139935, 2138911, 350490361, 2158730, 2149363, 2153963, 451603924, 2141148, 2138886, 2155089, 854812478, 2148208, 2145049, 2161586, 1492776987, 2154407, 2142638, 2151529, 2110550888, 2165896, 2158116, 2153460, 2407152471, 2156044, 2103725, 2163737, 2240978401, 2162760, 2146057, 2165846, 1687421132, 2156554, 2163126, 2170226, 1020034824, 2170017, 2147387, 2161615, 520682100, 2168384, 2150194, 2160093, 342097716, 2162338, 2158002, 2162733, 426538418, 2163535, 2241902, 2168521, 585164814, 2166790, 2626435, 2165011, 634987292, 2171338, 2149864, 2160503, 527513532, 2160038, 2162475, 2162617, 379968340, 2161514, 2171188, 2175999, 368569661, 2162781, 2181138, 2168338, 597671326, 2167494, 2150746, 2171260, 999242281, 2168389, 2158656, 2172142, 1359217367, 2172863, 2160170, 2166466, 1435915795, 2168164, 2171464, 2169999, 1159580642, 2168572, 2136389, 2164096, 686557261, 2171085, 2170835, 2177949, 361022528, 2172849, 2165378, 2177425, 473343086, 2173682, 2139109, 2176718, 1075383033, 2178001, 2164989, 2171228, 1866362646, 2167694, 2164893, 2176323, 2352216191, 2181939, 2181596, 2175184, 2127171859, 2170230, 2168368, 2177468, 1254544217, 2174569, 2153393, 2177220, 416365501, 2170542, 2166913, 2175016, 779643902, 2181134, 2162445, 2163621, 3521923930, 2173118, 2166416, 2176230, 9246528527, 2175755, 2163085, 2166654, 17551467690, 2175165, 2164280, 2178762, 26825323967, 2180840, 2162520, 2175067, 34925073778, 2182267, 2169066, 2171882, 40027084856, 2171411]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396289062, "timestamp": "2021-09-20T12:17:48.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [117628225285, 4250571, 636357099, 2675731, 2475078, 2344544, 3115772062, 2230460, 2177158, 2139522, 1975521847, 2102860, 2053383, 2055188, 598121704, 2052806, 2043486, 2027251, 3054283941, 2015247, 2028232, 2019093, 632931313, 2015939, 2006915, 2024545, 2450696725, 2065627, 2037701, 2045541, 1017101634, 2061257, 2056493, 2086181, 842485456, 2104907, 2102569, 2136179, 2959101258, 2131378, 2154193, 2168522, 1242713337, 2202929, 2214332, 2248414, 3892356732, 2255955, 2287995, 2298203, 1995897828, 2371122, 2329120, 2386030, 1938534743, 2419891, 2436353, 2471743, 8311233758, 2521913, 2530515, 2599396, 1089201101, 2575759, 2599761, 2650374, 6675612593, 2668510, 2699569, 2739299, 3730797609, 2764936, 2754919, 2814783, 5014464274, 2846138, 2842734, 2899623, 7004751411, 2970449, 2988511, 3017578, 3637145132, 3064489, 3015641, 3117735, 12975246370, 3204011, 3134374, 3281322, 37558843558, 3311158, 3474549, 3352205, 80349659736, 3419182, 3378436, 3438573, 12359516299, 3429533, 3456260, 3582489, 225235852098, 3633149, 3741670, 3571444, 46914572039, 3673604, 3671991, 3703197, 24895916593, 3810130, 3735321, 3808523, 75741840181, 3883720, 3816672, 3876713, 12535375129, 3891459, 3833394, 3881193, 20629706245, 3972373, 3994751, 3942911, 16815248100, 3976890, 3955559, 3997511, 12434208896, 4077887, 4083885, 4079254, 38959758512, 4102151, 4154208, 4127996, 5696944681, 4197004, 4227949, 4183290, 6423071884, 4256512, 4255695, 4276045, 7892059951, 4354127, 4334124, 4339194, 5696990273, 4389719, 4369155, 4389920, 1663346522, 4451127, 4446841, 4472398, 5146868934, 4540220, 4496364, 4526185, 1220848163, 4584972, 4550214, 4583365, 4935666851, 4655174, 4625078, 4646026, 1075869865, 4702562, 4686747, 4702586, 5282103909, 4782763, 4743666, 4752890, 10166908123, 4778354, 4766653, 4808844, 5230913756, 4877874, 4847229, 4836418, 1933989256, 4885385, 4904596, 4887619, 4322080696, 4948975, 4879547, 4886436, 686758397, 4929487, 4980998, 4903095, 1047985807, 4953522, 5019704, 4902734, 863313456, 4944568, 262503450, 4879281, 870056316, 4900702, 4976433, 4873352, 7571127106, 4885948, 4837838, 4849743, 804653107, 4824600, 4844003, 4787723, 1541987505, 4806122, 4758679, 4776483, 5422171911, 4729943, 4730932, 4713077, 2050228282, 4727981, 4692053, 4661440, 915295635, 4662252, 4663838, 4630471, 4063727782, 4636308, 4610643, 4601740, 1002860037, 4584581, 4577159, 4562469, 1841911382, 4557102, 4567933, 4558601, 1255116175, 4537299, 4523179, 4522562, 1626627195, 4514442, 4490811, 4509102, 7298646543, 4497156, 4398183, 4472480, 6462972178, 4478898, 4480640, 4486681, 1217886426, 4477957, 4452420, 4479052, 10565742113, 4442826, 4441786, 4435290, 996926107, 4471042, 4441464, 4447466, 2946944836, 4458174, 4437740, 4460430, 1267161987, 4460469, 4441672, 4427238, 7565606766, 4418320, 4448304, 4445837, 23581922051, 4464849, 4425252, 4438856, 12789022074, 4440646, 4451643, 4473667, 9061008781, 4453384, 4457006, 4471935, 37691706330, 4481480, 4482327, 4479021, 95617506347, 4482071, 4457540, 4488360, 249807910443, 4510802, 4422961, 4516384, 36722122401, 4519927, 4504610, 4527599, 88263849791, 4518700, 4525151, 4536539, 158918361559, 4563065, 4525554, 4552061, 6514136716, 4558799, 4553714, 4570001, 7996044500, 4579480, 4580776, 4608931, 7791997233, 4615792, 4592505, 4622277, 610051323, 4634594, 4638303, 4640659, 9184422467, 4660252, 4657260, 4668286, 4117847710, 4691782, 4719041, 4710045, 1888843781, 4736278, 4739170, 4719652, 5080076340, 4739035, 4737490, 4781399, 924412452, 4776663, 4762009, 4783060, 1750750250, 4823472, 4797341, 4835120, 1129168782, 4852552, 4837693, 4860332, 668204567, 4887319, 4867567, 4875457, 3693062340, 4928574, 4910605, 4939257, 2460465988, 4979213, 4954091, 4994322, 1496665086, 5023342, 5013468, 5021732, 1664274402, 5041356, 4974614, 5062536, 794579049, 5077393, 5091955, 5087505, 1008416304, 5127042, 5126240, 5145285, 3130245274, 5186513, 5170683, 5162117, 2157010533, 5222654, 5206857, 5200450, 887541474, 5234347, 5243758, 5234776, 1326896127, 5284049, 6120093, 5301004, 696611796, 5315304, 5505449, 5342061, 3489121334, 5341697, 5443957, 5368331, 884677716, 5392759, 5407354, 5404614, 645322772, 5391054, 5414944, 5428999, 4082383634, 5451460, 5446929, 5477358, 979137735, 5476685, 5475754, 5488667, 4017322286, 5519368, 5500028, 5539046, 653223100, 5546062, 5512967, 5543773, 1833589787, 5552484, 5545655, 5570437, 6012018589, 5564919, 5597024, 5583752, 686288741, 5646140, 5586563, 5589055, 4371404202, 5599096, 5589159, 5589009, 3498086439, 5608545, 5515452, 5596009, 3570810505, 5598920, 5568782, 5606829, 834299834, 5617738, 5584982, 5585376, 4882579330, 5608116, 5564430, 5585094, 4652265198, 5581941, 5564726, 5587243, 17149157568, 5574085, 5542049, 5583360, 14252927540, 5564752, 5570909, 5576802, 19749286095, 5564871, 5537988, 5545157, 94478243391, 5568050, 5535473, 5558993, 25772640333, 5553546, 5509801, 5562298, 20640208937, 5538550, 5522977, 5551286, 237478877939, 5515968, 5517524, 5540919, 13394347059, 5555503, 5532174, 5540731, 126711548830, 5537076]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [117628225285, 4250571, 636357099, 2675731, 2475078, 2344544, 3115772062, 2230460, 2177158, 2139522, 1975521847, 2102860, 2053383, 2055188, 598121704, 2052806, 2043486, 2027251, 3054283941, 2015247, 2028232, 2019093, 632931313, 2015939, 2006915, 2024545, 2450696725, 2065627, 2037701, 2045541, 1017101634, 2061257, 2056493, 2086181, 842485456, 2104907, 2102569, 2136179, 2959101258, 2131378, 2154193, 2168522, 1242713337, 2202929, 2214332, 2248414, 3892356732, 2255955, 2287995, 2298203, 1995897828, 2371122, 2329120, 2386030, 1938534743, 2419891, 2436353, 2471743, 8311233758, 2521913, 2530515, 2599396, 1089201101, 2575759, 2599761, 2650374, 6675612593, 2668510, 2699569, 2739299, 3730797609, 2764936, 2754919, 2814783, 5014464274, 2846138, 2842734, 2899623, 7004751411, 2970449, 2988511, 3017578, 3637145132, 3064489, 3015641, 3117735, 12975246370, 3204011, 3134374, 3281322, 37558843558, 3311158, 3474549, 3352205, 80349659736, 3419182, 3378436, 3438573, 12359516299, 3429533, 3456260, 3582489, 225235852098, 3633149, 3741670, 3571444, 46914572039, 3673604, 3671991, 3703197, 24895916593, 3810130, 3735321, 3808523, 75741840181, 3883720, 3816672, 3876713, 12535375129, 3891459, 3833394, 3881193, 20629706245, 3972373, 3994751, 3942911, 16815248100, 3976890, 3955559, 3997511, 12434208896, 4077887, 4083885, 4079254, 38959758512, 4102151, 4154208, 4127996, 5696944681, 4197004, 4227949, 4183290, 6423071884, 4256512, 4255695, 4276045, 7892059951, 4354127, 4334124, 4339194, 5696990273, 4389719, 4369155, 4389920, 1663346522, 4451127, 4446841, 4472398, 5146868934, 4540220, 4496364, 4526185, 1220848163, 4584972, 4550214, 4583365, 4935666851, 4655174, 4625078, 4646026, 1075869865, 4702562, 4686747, 4702586, 5282103909, 4782763, 4743666, 4752890, 10166908123, 4778354, 4766653, 4808844, 5230913756, 4877874, 4847229, 4836418, 1933989256, 4885385, 4904596, 4887619, 4322080696, 4948975, 4879547, 4886436, 686758397, 4929487, 4980998, 4903095, 1047985807, 4953522, 5019704, 4902734, 863313456, 4944568, 262503450, 4879281, 870056316, 4900702, 4976433, 4873352, 7571127106, 4885948, 4837838, 4849743, 804653107, 4824600, 4844003, 4787723, 1541987505, 4806122, 4758679, 4776483, 5422171911, 4729943, 4730932, 4713077, 2050228282, 4727981, 4692053, 4661440, 915295635, 4662252, 4663838, 4630471, 4063727782, 4636308, 4610643, 4601740, 1002860037, 4584581, 4577159, 4562469, 1841911382, 4557102, 4567933, 4558601, 1255116175, 4537299, 4523179, 4522562, 1626627195, 4514442, 4490811, 4509102, 7298646543, 4497156, 4398183, 4472480, 6462972178, 4478898, 4480640, 4486681, 1217886426, 4477957, 4452420, 4479052, 10565742113, 4442826, 4441786, 4435290, 996926107, 4471042, 4441464, 4447466, 2946944836, 4458174, 4437740, 4460430, 1267161987, 4460469, 4441672, 4427238, 7565606766, 4418320, 4448304, 4445837, 23581922051, 4464849, 4425252, 4438856, 12789022074, 4440646, 4451643, 4473667, 9061008781, 4453384, 4457006, 4471935, 37691706330, 4481480, 4482327, 4479021, 95617506347, 4482071, 4457540, 4488360, 249807910443, 4510802, 4422961, 4516384, 36722122401, 4519927, 4504610, 4527599, 88263849791, 4518700, 4525151, 4536539, 158918361559, 4563065, 4525554, 4552061, 6514136716, 4558799, 4553714, 4570001, 7996044500, 4579480, 4580776, 4608931, 7791997233, 4615792, 4592505, 4622277, 610051323, 4634594, 4638303, 4640659, 9184422467, 4660252, 4657260, 4668286, 4117847710, 4691782, 4719041, 4710045, 1888843781, 4736278, 4739170, 4719652, 5080076340, 4739035, 4737490, 4781399, 924412452, 4776663, 4762009, 4783060, 1750750250, 4823472, 4797341, 4835120, 1129168782, 4852552, 4837693, 4860332, 668204567, 4887319, 4867567, 4875457, 3693062340, 4928574, 4910605, 4939257, 2460465988, 4979213, 4954091, 4994322, 1496665086, 5023342, 5013468, 5021732, 1664274402, 5041356, 4974614, 5062536, 794579049, 5077393, 5091955, 5087505, 1008416304, 5127042, 5126240, 5145285, 3130245274, 5186513, 5170683, 5162117, 2157010533, 5222654, 5206857, 5200450, 887541474, 5234347, 5243758, 5234776, 1326896127, 5284049, 6120093, 5301004, 696611796, 5315304, 5505449, 5342061, 3489121334, 5341697, 5443957, 5368331, 884677716, 5392759, 5407354, 5404614, 645322772, 5391054, 5414944, 5428999, 4082383634, 5451460, 5446929, 5477358, 979137735, 5476685, 5475754, 5488667, 4017322286, 5519368, 5500028, 5539046, 653223100, 5546062, 5512967, 5543773, 1833589787, 5552484, 5545655, 5570437, 6012018589, 5564919, 5597024, 5583752, 686288741, 5646140, 5586563, 5589055, 4371404202, 5599096, 5589159, 5589009, 3498086439, 5608545, 5515452, 5596009, 3570810505, 5598920, 5568782, 5606829, 834299834, 5617738, 5584982, 5585376, 4882579330, 5608116, 5564430, 5585094, 4652265198, 5581941, 5564726, 5587243, 17149157568, 5574085, 5542049, 5583360, 14252927540, 5564752, 5570909, 5576802, 19749286095, 5564871, 5537988, 5545157, 94478243391, 5568050, 5535473, 5558993, 25772640333, 5553546, 5509801, 5562298, 20640208937, 5538550, 5522977, 5551286, 237478877939, 5515968, 5517524, 5540919, 13394347059, 5555503, 5532174, 5540731, 126711548830, 5537076]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [390640102103, 4189437, 1978187475, 2691435, 2473634, 2332666, 2171539082, 2181985, 2143457, 2092740, 2009487375, 2200353, 2030479, 2010250, 2334144724, 2029443, 2054824, 2041104, 2260630233, 2032774, 2048491, 2011319, 1481101429, 1990657, 1993547, 2008938, 1475029781, 2127456, 2034861, 2028452, 1936692941, 2048259, 2030979, 2094976, 1370521663, 2039757, 2055859, 2076927, 2081038897, 2004655, 2028401, 2105221, 4902189888, 1972164, 1978772, 1979649, 1589973496, 1973636, 2000083, 1997686, 1293388700, 2049566, 1991289, 1990271, 3564987789, 2046994, 2018583, 2037302, 3998832602, 2072364, 2046626, 2072306, 4222759261, 1961028, 1998995, 2010598, 4820667405, 1932863, 1970950, 2012035, 2607379693, 1907975, 1912417, 1919895, 5229621286, 1904430, 1891220, 1903049, 4546757804, 1917765, 1911393, 1896731, 4502350209, 1915615, 1874578, 1889807, 19887850985, 1890535, 1875932, 1885455, 12721867633, 1889301, 1911974, 1886864, 9971518557, 1880156, 1882857, 1873462, 450454654815, 1887143, 1861407, 1891256, 112168343709, 1879404, 1891632, 1866693, 11293360213, 1867018, 1856247, 1861025, 95777943978, 1868908, 1858144, 1858170, 80432561908, 1858332, 1857097, 1858387, 9136492312, 1846992, 1840847, 1836812, 2881491786, 1856019, 1837621, 1838259, 1751409064, 1845604, 1821967, 1839647, 4518480447, 1837556, 1844835, 1835495, 4897538849, 1836046, 1847442, 1831604, 1887149858, 1838534, 1828282, 1828755, 4130941479, 1827161, 1824673, 1829483, 1271799952, 1827625, 1819980, 1831506, 3444276457, 1830127, 1821819, 1830745, 2063806365, 1827065, 1826282, 1836417, 5383129219, 1824397, 1820413, 1827029, 1886465114, 1821942, 1818978, 1818125, 1444097553, 1825841, 1827401, 1826834, 3025569002, 1824045, 1826766, 1817168, 1436484343, 1827398, 1819944, 1818283, 2048931570, 1825077, 1815020, 1824751, 2218213682, 1820936, 1823258, 1825537, 1930117762, 1824209, 1816224, 1832719, 1456275572, 1822842, 1811874, 1822286, 1710326625, 1829821, 1848979, 1821692, 2919254052, 1831607, 1911927, 1819522, 1355044674, 1829196, 19508791, 1826072, 1827711350, 1820323, 1850830, 1819615, 3717091484, 1830120, 1824430, 1829129, 1914564084, 1825993, 1824502, 1823012, 1579757836, 1820390, 1822093, 1816816, 1772902952, 1819368, 1814205, 1817587, 1399555874, 1825166, 1835797, 1819719, 2342305571, 1818699, 1815526, 1822821, 1789965715, 1819316, 1816893, 1826209, 1725350470, 1821853, 1819026, 1823638, 1944512246, 1823000, 1813758, 1834095, 1464438809, 1817095, 1816212, 1823169, 2457851896, 1821544, 1814349, 1814168, 3592654660, 1819860, 1794256, 1822508, 2792534420, 1825261, 1821767, 1826576, 2402716263, 1821982, 1824963, 1828499, 10423555988, 1820930, 1822713, 1822292, 5288174812, 1824499, 1817715, 1827870, 2822375033, 1825568, 1809479, 1824585, 2155828774, 1824442, 1819821, 1821279, 9658932093, 1828862, 1823194, 1817237, 4478489157, 1821462, 1810691, 1821940, 2268427316, 1821726, 1813986, 1825485, 2444566191, 1824723, 1826143, 1823717, 19269304056, 1819446, 1820582, 1818962, 20003223847, 1825666, 1816987, 1831118, 3340271939, 1823384, 1792952, 1817134, 1060718781553, 1820093, 1818164, 1817361, 56850367264, 1826934, 1822208, 1827757, 14688844504, 1823484, 1814511, 1829572, 27785643840, 1828618, 1820406, 1829404, 8581440292, 1827433, 1811648, 1823988, 9668208365, 1816709, 1818574, 1823170, 13691129190, 1825767, 1815047, 1818667, 3625352561, 1819568, 1811035, 1823339, 5216386117, 1822869, 1817803, 1823046, 2932944980, 1821399, 1837200, 1816161, 5382147679, 1828771, 1815464, 1820861, 2377776108, 1822079, 1825119, 1828120, 1664459960, 1825887, 1816967, 1827795, 2230586406, 1818587, 1817037, 1818855, 2160967860, 1824495, 1813457, 1819601, 2506768626, 1825638, 1810088, 1822064, 1363131121, 1817838, 1820993, 1819454, 1915361694, 1824048, 1819525, 1817573, 2102783810, 1818479, 1794187, 1824644, 1534253967, 1820062, 1816204, 1826262, 3003625891, 1825583, 1824621, 1816081, 1338983579, 1826922, 1821552, 1821216, 1958391821, 1824959, 1821856, 1816888, 3015444177, 1811913, 1823603, 1817049, 1550062620, 1809213, 1937772, 1810231, 2704551008, 1817563, 1818461, 1819379, 1304877516, 1820210, 1866078, 1820348, 1297518969, 1819237, 1819401, 1808336, 3390072282, 1822785, 1820523, 1816249, 1262771791, 1815773, 1824084, 1817690, 2274935667, 1816438, 1829927, 1817999, 2960371039, 1816642, 1809090, 1811588, 1253915499, 1824719, 1812095, 1821695, 1774073993, 1819313, 1814263, 1820443, 1726792200, 1809330, 1803368, 1811335, 2198146891, 1826901, 1814170, 1815141, 1438399766, 1823969, 1823417, 1818849, 2593025481, 1816160, 1796712, 1811845, 1842651013, 1819423, 1804959, 1811028, 5157924145, 1822849, 1810055, 1815731, 4359436003, 1821363, 1821487, 1812325, 1909763160, 1818320, 1805758, 1809404, 2930455687, 1820478, 1805288, 1808994, 10069730750, 1823065, 1811262, 1816159, 10520560675, 1819107, 1812664, 1817351, 8396010024, 1817767, 1807993, 1815346, 5906890277, 1815460, 1807641, 1819754, 7567960238, 1813485, 1803362, 1818182, 79887885685, 1814992, 1820347, 1807730, 7149052220, 1809220, 1809342, 1813568, 465390799089, 1811953]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 123, "_raw": 123}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [157952314700, 4834204, 376303115, 2880796, 2687327, 2511653, 555279400, 2399126, 2422929, 2334131, 766774753, 2519629, 2331578, 2280707, 843951446, 2340532, 2365084, 2367477, 709293323, 2362875, 2412823, 2352136, 458064975, 2320163, 2337622, 2351291, 340112872, 2521439, 2395549, 2406844, 577726810, 2426344, 2378631, 2496075, 1191296468, 2411748, 2441692, 2474694, 1988915780, 2354908, 2401783, 2518173, 2541059219, 2321499, 2367189, 2333252, 2614576993, 2322987, 2360992, 2356497, 2092873010, 2445742, 2364138, 2345250, 1254349231, 2420552, 2386912, 2434593, 562453665, 2483471, 2435963, 2472175, 353730291, 2295943, 2361580, 2394962, 636227226, 2284358, 2318452, 2391258, 1019656620, 2232426, 2232264, 2264417, 949787768, 2217531, 2206278, 2225990, 443492490, 2250521, 2243499, 2224315, 838639215, 2227022, 2184972, 2208033, 6204807016, 2186767, 2190465, 2208989, 27031708492, 2195139, 2222166, 2223970, 96723823327, 2194624, 2189407, 2183330, 435994763427, 2180844, 2171729, 2222739, 188316377914, 2198407, 2217548, 2169337, 474695514441, 2182915, 2176639, 2170159, 59084636599, 2185450, 2154297, 2169540, 8544583287, 2168503, 2155131, 2168006, 625742482, 2139187, 2142066, 2145500, 727488283, 2170463, 2128246, 2156555, 1380926500, 2138780, 2088055, 2134171, 1187259583, 2140474, 2143250, 2146578, 587239175, 2135454, 2152987, 2133627, 352725440, 2146112, 2137758, 2131411, 858052193, 2123630, 2113241, 2124756, 1904485644, 2126381, 2121196, 2116953, 2949717104, 2115465, 2122250, 2128430, 3474068630, 2120263, 2120436, 2117545, 3262972227, 2124697, 2099964, 2117292, 2462966438, 2122397, 2106561, 2111143, 1476553314, 2126940, 2113756, 2122528, 723165168, 2120523, 2103213, 2108407, 376979745, 2128284, 2109271, 2129002, 365573319, 2109222, 2110175, 2117710, 469047445, 2114233, 2110584, 2120082, 495336644, 2117989, 2117431, 2118734, 409968864, 2122115, 2099952, 2112674, 341973548, 2120723, 2125200, 2118339, 467042833, 2119281, 2208120, 2113576, 862057237, 2112941, 26405237, 2123202, 1428295005, 2120177, 2183719, 2102231, 1924633259, 2127261, 2164748, 2133390, 2115644073, 2113182, 2120007, 2123160, 1904347889, 2114367, 2115931, 2116468, 1400389064, 2105793, 2103087, 2118178, 845021039, 2108513, 2117715, 2114169, 469750493, 2106242, 2119129, 2128096, 347326177, 2110439, 2121518, 2117019, 381950779, 2123036, 2114961, 2126516, 403898764, 2114037, 2118368, 2124751, 352234593, 2123488, 2127654, 2130694, 393211347, 2119342, 2122730, 2115115, 890750839, 2118666, 2062682, 2127277, 2205662012, 2123255, 2122426, 2123868, 4411641274, 2133545, 2127273, 2131737, 7109410990, 2120740, 2122691, 2136278, 9492504155, 2132514, 2117253, 2128254, 10623249453, 2128410, 2118224, 2132620, 9980087905, 2122865, 2111957, 2123518, 7590086286, 2123467, 2132119, 2126943, 4393085689, 2133388, 2101973, 2134090, 1671821980, 2130695, 2130062, 2143031, 422340358, 2132179, 2129011, 2121593, 467859718, 2125839, 2127066, 2124910, 391569568, 2125299, 2121551, 2131705, 164435209679, 2128045, 2080951, 2130899, 174552755775, 2125252, 2131575, 2146653, 83577304853, 2125412, 2145948, 2138944, 63543940027, 2137238, 2108351, 2152754, 49678922002, 2137675, 2129702, 2151644, 36398604699, 2135950, 2127434, 2153904, 24008506552, 2147436, 2120767, 2148189, 13760987915, 2131746, 2137508, 2144224, 6585744986, 2138466, 2138094, 2152976, 2469577399, 2143957, 2139669, 2155428, 749602156, 2135006, 2160882, 2146620, 348442840, 2145852, 2125469, 2147135, 386057082, 2140620, 2134459, 2153406, 395243986, 2142666, 2128719, 2150474, 350841213, 2139197, 2144060, 2159656, 452288082, 2154904, 2130778, 2148688, 855169039, 2154594, 2150458, 2161138, 1492260966, 2150622, 2139029, 2147416, 2109905649, 2160066, 2153276, 2171045, 2406442834, 2158583, 2114906, 2164254, 2239922514, 2159369, 2159223, 2155775, 1686871971, 2155041, 2157102, 2166780, 1019047547, 2165981, 2151135, 2172003, 519795924, 2161279, 2150292, 2164491, 340742530, 2157056, 2153436, 2161417, 425017800, 2157477, 2248675, 2167865, 583399400, 2165649, 2615513, 2175996, 633660566, 2167865, 2146108, 2159110, 526706387, 2160393, 2159745, 2159097, 379995658, 2169305, 2166709, 2161117, 369554893, 2162207, 2188152, 2162445, 599228191, 2172968, 2151775, 2156017, 1000849979, 2166330, 2165396, 2167305, 1360761921, 2165120, 2156246, 2174279, 1437415941, 2172076, 2162489, 2168853, 1160590494, 2174320, 2136159, 2173279, 687334938, 2185301, 2169689, 2181887, 360845880, 2178868, 2155516, 2171641, 472242154, 2163639, 2145491, 2178836, 1073342991, 2170553, 2159202, 2176272, 1863074790, 2182685, 2167686, 2174035, 2348474602, 2162883, 2172916, 2171955, 2124171559, 2177754, 2168996, 2174303, 1252080850, 2177901, 2141927, 2179992, 415859279, 2171259, 2170640, 2175794, 781847584, 2171922, 2168080, 2192702, 3526914963, 2182703, 2165058, 2179155, 9253282158, 2178422, 2161358, 2176457, 17558229482, 2177373, 2170233, 2169726, 26833404486, 2183303, 2159045, 2172398, 34935091931, 2172619, 2169004, 2174903, 40033155874, 2169970]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 128, "_raw": 128}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396484375, "timestamp": "2021-09-20T12:17:50+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 120, "_raw": 120}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118494829965, 4249802, 640363310, 2676252, 2481354, 2345988, 3097474211, 2221258, 2181737, 2133445, 1968831991, 2097423, 2057941, 2051996, 596178814, 2047739, 2044903, 2030387, 3030861485, 2019345, 2024014, 2019391, 629567228, 2022308, 2007598, 2022093, 2445556162, 2063158, 2042335, 2059803, 1009544492, 2058095, 2049229, 2076607, 840822130, 2107884, 2107078, 2127833, 2937830725, 2144979, 2167195, 2170640, 1236780970, 2204422, 2220283, 2243899, 3904579812, 2254402, 2276867, 2293249, 1983147290, 2370759, 2323176, 2379241, 1948592697, 2407851, 2430330, 2473766, 8332231842, 2527247, 2523289, 2612283, 1080037782, 2571233, 2602159, 2650661, 6662243482, 2671925, 2686006, 2744238, 3752477844, 2755942, 2751859, 2804629, 4986081799, 2832997, 2836659, 2910904, 7005354556, 2982835, 2978676, 3005785, 3651049672, 3065747, 3022353, 3104871, 12981117917, 3207822, 3146965, 3260269, 37594282913, 3308528, 3477637, 3338949, 80405748009, 3417937, 3383683, 3441431, 12390143791, 3426010, 3446156, 3567362, 225435181679, 3642164, 3748933, 3566578, 46829877786, 3659910, 3687925, 3716993, 24861274739, 3816843, 3750763, 3801261, 75667191064, 3881117, 3799511, 3876858, 12548665344, 3891006, 3838122, 3876763, 20663901127, 3964028, 3964455, 3953331, 16795955356, 3979550, 3969321, 3990973, 12451983039, 4066771, 4083873, 4077428, 38967291620, 4113679, 4179863, 4124745, 5691488690, 4207366, 4256365, 4215705, 6419216452, 4250094, 4234722, 4264992, 7887879086, 4359348, 4327866, 4334804, 5681130241, 4391272, 4372602, 4395808, 1670118159, 4463013, 4435606, 4463177, 5127167701, 4528094, 4488724, 4529021, 1228529216, 4573888, 4572906, 4572363, 4948361272, 4661724, 4627275, 4643735, 1085636085, 4715277, 4678481, 4706078, 5290124947, 4769886, 4723571, 4741203, 10181932592, 4801528, 4784083, 4804453, 5228858061, 4869370, 4851968, 4860881, 1936533661, 4883362, 4888246, 4863053, 4324501160, 4941631, 4852477, 4896516, 686967050, 4943226, 4975142, 4920840, 1046371156, 4944052, 5004669, 4912351, 865420177, 4935617, 262355244, 4911048, 871093917, 4904383, 4941664, 4874272, 7580857545, 4876608, 4830166, 4839566, 809475448, 4827885, 4817445, 4776655, 1550499518, 4804970, 4760905, 4748403, 5435258756, 4744354, 4715579, 4711477, 2063097492, 4700888, 4674054, 4689587, 912575600, 4671355, 4642323, 4651204, 4070713265, 4643068, 4590269, 4595081, 995933492, 4603153, 4562041, 4557930, 1837440256, 4559940, 4546572, 4565429, 1250549199, 4564076, 4528805, 4514124, 1627976674, 4518960, 4498149, 4492475, 7290037537, 4494167, 4391215, 4466646, 6466623399, 4480912, 4482446, 4459043, 1212263214, 4490579, 4444354, 4453121, 10566072662, 4468671, 4447807, 4442095, 994456046, 4469947, 4429170, 4427460, 2933953978, 4450055, 4438449, 4460644, 1267152791, 4468670, 4427945, 4423403, 7572026844, 4466603, 4453364, 4463426, 23554655030, 4450687, 4430057, 4460960, 12788609442, 4467319, 4467864, 4459995, 9039931845, 4446218, 4468681, 4471649, 37663438499, 4477484, 4472154, 4471761, 95564561013, 4479031, 4489951, 4487469, 249829439474, 4520626, 4438755, 4517762, 36751949006, 4530135, 4509683, 4526836, 88252035996, 4517148, 4522189, 4521432, 158933444814, 4548869, 4506793, 4561426, 6502719888, 4586187, 4559993, 4564663, 8010328463, 4580955, 4604970, 4589316, 7800725395, 4607523, 4575317, 4620200, 612191264, 4635537, 4620385, 4625979, 9159455999, 4657995, 4661158, 4669617, 4110281925, 4680042, 4701858, 4685697, 1876320431, 4713836, 4703091, 4728540, 5072056287, 4760052, 4726024, 4747554, 918003832, 4778221, 4762445, 4783964, 1759705145, 4824505, 4797847, 4810103, 1125176241, 4828874, 4826316, 4885495, 667031688, 4885337, 4871170, 4902784, 3686422383, 4937973, 4929124, 4953539, 2456900032, 4976725, 4973237, 4986026, 1484093200, 5015338, 4986899, 5011635, 1657482143, 5066285, 4975862, 5062200, 787857567, 5088494, 5077363, 5106769, 1004041194, 5135940, 5130883, 5139949, 3111007673, 5162029, 5150544, 5205152, 2148801103, 5185457, 5207902, 5227603, 888222942, 5232231, 5250130, 5270888, 1327236102, 5258266, 6120154, 5315496, 697237786, 5330413, 5486641, 5334410, 3501073393, 5350556, 5452303, 5353918, 881942293, 5416826, 5386503, 5395639, 641891168, 5401979, 5402703, 5418632, 4064859123, 5444486, 5436942, 5476489, 975306434, 5481372, 5486474, 5521040, 3998073157, 5505354, 5475965, 5523131, 650087080, 5497772, 5499852, 5539481, 1828834967, 5538370, 5557597, 5571350, 6029895689, 5558907, 5595785, 5584470, 684974788, 5631716, 5594711, 5570313, 4386393748, 5580451, 5593906, 5607504, 3522603385, 5610717, 5546767, 5586899, 3592142967, 5586495, 5559692, 5594368, 828244146, 5626279, 5581537, 5622951, 4889228743, 5619705, 5564450, 5575637, 4631828748, 5580029, 5580342, 5567592, 17122086768, 5569306, 5537611, 5587227, 14208611433, 5576302, 5567344, 5538395, 19751515850, 5578587, 5563127, 5549314, 94469885873, 5552945, 5536483, 5533091, 25816599020, 5557138, 5540889, 5542747, 20674991876, 5538049, 5535461, 5559177, 237661621018, 5533082, 5549633, 5510966, 13379715447, 5559738, 5553395, 5530980, 126853142030, 5533995]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 121, "_raw": 121}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [118494829965, 4249802, 640363310, 2676252, 2481354, 2345988, 3097474211, 2221258, 2181737, 2133445, 1968831991, 2097423, 2057941, 2051996, 596178814, 2047739, 2044903, 2030387, 3030861485, 2019345, 2024014, 2019391, 629567228, 2022308, 2007598, 2022093, 2445556162, 2063158, 2042335, 2059803, 1009544492, 2058095, 2049229, 2076607, 840822130, 2107884, 2107078, 2127833, 2937830725, 2144979, 2167195, 2170640, 1236780970, 2204422, 2220283, 2243899, 3904579812, 2254402, 2276867, 2293249, 1983147290, 2370759, 2323176, 2379241, 1948592697, 2407851, 2430330, 2473766, 8332231842, 2527247, 2523289, 2612283, 1080037782, 2571233, 2602159, 2650661, 6662243482, 2671925, 2686006, 2744238, 3752477844, 2755942, 2751859, 2804629, 4986081799, 2832997, 2836659, 2910904, 7005354556, 2982835, 2978676, 3005785, 3651049672, 3065747, 3022353, 3104871, 12981117917, 3207822, 3146965, 3260269, 37594282913, 3308528, 3477637, 3338949, 80405748009, 3417937, 3383683, 3441431, 12390143791, 3426010, 3446156, 3567362, 225435181679, 3642164, 3748933, 3566578, 46829877786, 3659910, 3687925, 3716993, 24861274739, 3816843, 3750763, 3801261, 75667191064, 3881117, 3799511, 3876858, 12548665344, 3891006, 3838122, 3876763, 20663901127, 3964028, 3964455, 3953331, 16795955356, 3979550, 3969321, 3990973, 12451983039, 4066771, 4083873, 4077428, 38967291620, 4113679, 4179863, 4124745, 5691488690, 4207366, 4256365, 4215705, 6419216452, 4250094, 4234722, 4264992, 7887879086, 4359348, 4327866, 4334804, 5681130241, 4391272, 4372602, 4395808, 1670118159, 4463013, 4435606, 4463177, 5127167701, 4528094, 4488724, 4529021, 1228529216, 4573888, 4572906, 4572363, 4948361272, 4661724, 4627275, 4643735, 1085636085, 4715277, 4678481, 4706078, 5290124947, 4769886, 4723571, 4741203, 10181932592, 4801528, 4784083, 4804453, 5228858061, 4869370, 4851968, 4860881, 1936533661, 4883362, 4888246, 4863053, 4324501160, 4941631, 4852477, 4896516, 686967050, 4943226, 4975142, 4920840, 1046371156, 4944052, 5004669, 4912351, 865420177, 4935617, 262355244, 4911048, 871093917, 4904383, 4941664, 4874272, 7580857545, 4876608, 4830166, 4839566, 809475448, 4827885, 4817445, 4776655, 1550499518, 4804970, 4760905, 4748403, 5435258756, 4744354, 4715579, 4711477, 2063097492, 4700888, 4674054, 4689587, 912575600, 4671355, 4642323, 4651204, 4070713265, 4643068, 4590269, 4595081, 995933492, 4603153, 4562041, 4557930, 1837440256, 4559940, 4546572, 4565429, 1250549199, 4564076, 4528805, 4514124, 1627976674, 4518960, 4498149, 4492475, 7290037537, 4494167, 4391215, 4466646, 6466623399, 4480912, 4482446, 4459043, 1212263214, 4490579, 4444354, 4453121, 10566072662, 4468671, 4447807, 4442095, 994456046, 4469947, 4429170, 4427460, 2933953978, 4450055, 4438449, 4460644, 1267152791, 4468670, 4427945, 4423403, 7572026844, 4466603, 4453364, 4463426, 23554655030, 4450687, 4430057, 4460960, 12788609442, 4467319, 4467864, 4459995, 9039931845, 4446218, 4468681, 4471649, 37663438499, 4477484, 4472154, 4471761, 95564561013, 4479031, 4489951, 4487469, 249829439474, 4520626, 4438755, 4517762, 36751949006, 4530135, 4509683, 4526836, 88252035996, 4517148, 4522189, 4521432, 158933444814, 4548869, 4506793, 4561426, 6502719888, 4586187, 4559993, 4564663, 8010328463, 4580955, 4604970, 4589316, 7800725395, 4607523, 4575317, 4620200, 612191264, 4635537, 4620385, 4625979, 9159455999, 4657995, 4661158, 4669617, 4110281925, 4680042, 4701858, 4685697, 1876320431, 4713836, 4703091, 4728540, 5072056287, 4760052, 4726024, 4747554, 918003832, 4778221, 4762445, 4783964, 1759705145, 4824505, 4797847, 4810103, 1125176241, 4828874, 4826316, 4885495, 667031688, 4885337, 4871170, 4902784, 3686422383, 4937973, 4929124, 4953539, 2456900032, 4976725, 4973237, 4986026, 1484093200, 5015338, 4986899, 5011635, 1657482143, 5066285, 4975862, 5062200, 787857567, 5088494, 5077363, 5106769, 1004041194, 5135940, 5130883, 5139949, 3111007673, 5162029, 5150544, 5205152, 2148801103, 5185457, 5207902, 5227603, 888222942, 5232231, 5250130, 5270888, 1327236102, 5258266, 6120154, 5315496, 697237786, 5330413, 5486641, 5334410, 3501073393, 5350556, 5452303, 5353918, 881942293, 5416826, 5386503, 5395639, 641891168, 5401979, 5402703, 5418632, 4064859123, 5444486, 5436942, 5476489, 975306434, 5481372, 5486474, 5521040, 3998073157, 5505354, 5475965, 5523131, 650087080, 5497772, 5499852, 5539481, 1828834967, 5538370, 5557597, 5571350, 6029895689, 5558907, 5595785, 5584470, 684974788, 5631716, 5594711, 5570313, 4386393748, 5580451, 5593906, 5607504, 3522603385, 5610717, 5546767, 5586899, 3592142967, 5586495, 5559692, 5594368, 828244146, 5626279, 5581537, 5622951, 4889228743, 5619705, 5564450, 5575637, 4631828748, 5580029, 5580342, 5567592, 17122086768, 5569306, 5537611, 5587227, 14208611433, 5576302, 5567344, 5538395, 19751515850, 5578587, 5563127, 5549314, 94469885873, 5552945, 5536483, 5533091, 25816599020, 5557138, 5540889, 5542747, 20674991876, 5538049, 5535461, 5559177, 237661621018, 5533082, 5549633, 5510966, 13379715447, 5559738, 5553395, 5530980, 126853142030, 5533995]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 122, "_raw": 122}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [390903974961, 4213098, 1982228444, 2709132, 2464121, 2325216, 2163752503, 2179642, 2123777, 2089979, 2011876957, 2199552, 2037158, 2001843, 2332789004, 2035198, 2055227, 2045911, 2253874559, 2038819, 2047189, 2015560, 1474547587, 1997361, 2002273, 2003388, 1475372228, 2125859, 2037807, 2023803, 1932475351, 2047080, 2023621, 2089453, 1366926661, 2038048, 2045460, 2071620, 2078121502, 1993170, 2028289, 2110276, 4890792940, 1972400, 1969155, 1976876, 1599548699, 1970642, 1998912, 2000343, 1294146373, 2040069, 1983409, 1991163, 3555717974, 2038235, 2012043, 2041076, 4018013523, 2069736, 2038208, 2066035, 4217197802, 1959650, 2004908, 2010265, 4805854406, 1943063, 1969154, 2013054, 2614653028, 1905784, 1909443, 1921726, 5220359111, 1898618, 1888062, 1910195, 4549434689, 1924055, 1918157, 1896578, 4509763326, 1919920, 1880983, 1889475, 19895081181, 1883479, 1874820, 1880302, 12715430954, 1888548, 1910816, 1899026, 9953655133, 1872845, 1883403, 1876922, 450442046438, 1876764, 1872749, 1891180, 112179212176, 1876519, 1891123, 1857302, 11282806396, 1866910, 1862001, 1851569, 95806561670, 1872772, 1852434, 1855055, 80423150147, 1858058, 1847258, 1857103, 9120892137, 1853095, 1838025, 1852933, 2883692010, 1856929, 1845526, 1847410, 1739315281, 1846389, 1817816, 1841430, 4496993542, 1839365, 1837903, 1834765, 4904173200, 1835658, 1838449, 1832406, 1884238971, 1832979, 1834805, 1826969, 4148573275, 1830729, 1822566, 1837261, 1273821023, 1826447, 1825795, 1828895, 3435196133, 1831358, 1825837, 1835113, 2075011916, 1827195, 1828021, 1835023, 5376970347, 1826130, 1822330, 1830460, 1887736785, 1827382, 1820833, 1824037, 1447526508, 1821226, 1821993, 1822915, 3023066144, 1828261, 1820759, 1816099, 1438191675, 1828562, 1823213, 1825419, 2038675632, 1825188, 1813147, 1820096, 2217391097, 1821877, 1821714, 1828468, 1932734371, 1823013, 1824913, 1828458, 1449825806, 1828078, 1805446, 1827386, 1710047502, 1819674, 1844045, 1816742, 2909785998, 1832074, 1907983, 1820882, 1351379441, 1815490, 19524277, 1829025, 1824088740, 1827395, 1858880, 1817340, 3712410832, 1821153, 1825786, 1827546, 1913497069, 1819721, 1818768, 1829308, 1576825230, 1815967, 1822579, 1820616, 1777435199, 1825408, 1810678, 1821042, 1401012964, 1828571, 1822772, 1830239, 2340133501, 1823633, 1817451, 1822362, 1789676538, 1827299, 1821024, 1821569, 1722144285, 1822150, 1819332, 1820095, 1942073998, 1828254, 1818040, 1827838, 1467235497, 1827046, 1824009, 1814771, 2447819426, 1822714, 1819605, 1819200, 3586452327, 1827778, 1792735, 1819505, 2797495839, 1822811, 1823132, 1820746, 2397658048, 1825911, 1822895, 1826425, 10408597961, 1820171, 1809547, 1821728, 5300015883, 1829471, 1819825, 1819488, 2828347447, 1825724, 1819563, 1821717, 2162875238, 1817470, 1815008, 1819906, 9680751964, 1826838, 1822504, 1821898, 4476719524, 1819873, 1810345, 1822846, 2273057416, 1820641, 1819058, 1827870, 2429997743, 1821639, 1815188, 1827000, 19272789865, 1819672, 1823212, 1828068, 20008943346, 1831628, 1818981, 1829592, 3329184762, 1822675, 1788681, 1822071, 1060908610563, 1823573, 1812862, 1821205, 56838819084, 1822467, 1818318, 1824418, 14686123001, 1824006, 1804446, 1820911, 27820190882, 1820472, 1823684, 1822744, 8578851590, 1827132, 1825796, 1830223, 9655734373, 1821308, 1799978, 1831719, 13701965144, 1826642, 1818913, 1831434, 3621047628, 1822624, 1818240, 1817836, 5211884439, 1827381, 1822716, 1830904, 2937487791, 1825338, 1830381, 1823951, 5355080352, 1822333, 1815240, 1824122, 2375720496, 1823348, 1815285, 1824045, 1673652134, 1817151, 1815279, 1821636, 2226372982, 1827823, 1808173, 1827506, 2166304981, 1826307, 1811039, 1819498, 2511235032, 1828262, 1811890, 1821897, 1362544371, 1819907, 1826605, 1822008, 1916368233, 1824050, 1823378, 1822577, 2105822998, 1819082, 1790258, 1817416, 1537154152, 1821368, 1823697, 1828163, 2993668876, 1819221, 1820726, 1826255, 1343690108, 1824807, 1822926, 1815883, 1951895849, 1821238, 1824140, 1810797, 2992835519, 1823330, 1830072, 1819258, 1552961927, 1813470, 1922258, 1821541, 2699691577, 1819498, 1815855, 1817771, 1305540854, 1813288, 1868839, 1821234, 1301039168, 1815816, 1809497, 1823284, 3380106144, 1826691, 1819873, 1816477, 1263769629, 1819410, 1814283, 1818361, 2276502729, 1819983, 1826988, 1816977, 2963331831, 1811767, 1805813, 1825276, 1253165805, 1812172, 1811011, 1813070, 1777855930, 1815221, 1810863, 1813160, 1730657735, 1817432, 1799584, 1816682, 2188316748, 1817747, 1812960, 1816238, 1442241054, 1814935, 1815577, 1820739, 2595683270, 1816414, 1793503, 1815208, 1832584202, 1816411, 1810363, 1823817, 5162328440, 1816027, 1818647, 1816923, 4354544205, 1818151, 1814837, 1817764, 1899585671, 1817754, 1805379, 1813969, 2932139353, 1820776, 1801638, 1821842, 10071158312, 1813879, 1812306, 1813062, 10506427020, 1814435, 1807760, 1812895, 8403129783, 1805863, 1814777, 1814536, 5907058982, 1819540, 1807483, 1820031, 7569482142, 1816777, 1807411, 1816540, 79937143604, 1818387, 1804376, 1817724, 7147415032, 1809685, 1811623, 1819287, 465311913445, 1820105]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 124, "_raw": 124}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [159386436180, 4838981, 381468123, 2869615, 2685781, 2507349, 561416601, 2398204, 2427293, 2333924, 773707758, 2527075, 2329160, 2285401, 851592403, 2331008, 2361979, 2372219, 716170146, 2361363, 2413982, 2341852, 464250093, 2329071, 2335343, 2351280, 346708937, 2516782, 2389452, 2398048, 586931178, 2422829, 2381630, 2501732, 1206756731, 2412949, 2443562, 2475554, 2012111072, 2350835, 2393315, 2523596, 2570386643, 2322349, 2367882, 2326826, 2647693149, 2332879, 2358203, 2359185, 2124916084, 2429834, 2358891, 2359817, 1278073766, 2422117, 2392925, 2433192, 576308321, 2484786, 2455799, 2472012, 356966905, 2295688, 2370704, 2405390, 631532596, 2270668, 2314358, 2384842, 1011260645, 2240941, 2233765, 2267161, 943560202, 2219988, 2203949, 2221674, 443923881, 2260221, 2241765, 2218566, 854323201, 2225844, 2174769, 2221932, 6248037790, 2193588, 2191714, 2204669, 27128154477, 2206471, 2231423, 2225086, 96922939816, 2190887, 2191070, 2191963, 436469877509, 2192355, 2171291, 2210121, 188361835824, 2193441, 2219441, 2168390, 474075038604, 2183061, 2169402, 2168192, 58852683696, 2184160, 2155349, 2170331, 8457130946, 2167082, 2151822, 2174328, 612058364, 2147897, 2136897, 2152593, 750655560, 2166085, 2146520, 2164499, 1415216357, 2141294, 2098131, 2143298, 1217330702, 2139783, 2143166, 2145425, 604682343, 2131356, 2146406, 2133334, 354215535, 2137680, 2138666, 2118216, 845034615, 2126516, 2108701, 2123828, 1880286898, 2123684, 2118292, 2121518, 2916636663, 2104089, 2121985, 2124292, 3436196400, 2130292, 2112540, 2122505, 3222791842, 2119750, 2107840, 2127921, 2426218211, 2122205, 2117405, 2116922, 1447887050, 2126608, 2114600, 2116565, 706488586, 2121886, 2106894, 2114058, 374014560, 2123259, 2103113, 2112307, 374482882, 2113365, 2096485, 2115615, 485184958, 2124758, 2103692, 2117790, 512558088, 2120878, 2121989, 2126637, 422482036, 2120425, 2097840, 2101039, 345649872, 2116095, 2127398, 2116707, 460834255, 2126600, 2202174, 2111918, 847373860, 2128573, 26357472, 2113258, 1408272648, 2107265, 2185979, 2117022, 1901692417, 2127682, 2167242, 2119643, 2092420009, 2118167, 2119510, 2121743, 1882610821, 2117391, 2122292, 2122746, 1382339473, 2112705, 2101080, 2121144, 833202406, 2121354, 2118344, 2107875, 465028165, 2114882, 2117863, 2126758, 350651214, 2121613, 2109944, 2114647, 391398459, 2116342, 2115898, 2124558, 415363165, 2125428, 2115520, 2112926, 359810330, 2125435, 2125100, 2131339, 391338438, 2123865, 2104071, 2125718, 875775743, 2113312, 2056091, 2121643, 2177701503, 2123691, 2119571, 2128538, 4375566903, 2123634, 2128581, 2137591, 7068265612, 2109321, 2118919, 2135553, 9453577691, 2125989, 2108743, 2132684, 10589609953, 2123489, 2125235, 2137855, 9952729036, 2137224, 2117356, 2127524, 7570887648, 2127093, 2125025, 2140662, 4380899714, 2126405, 2108592, 2122928, 1665810099, 2122407, 2119544, 2127240, 424581662, 2129434, 2114976, 2124180, 477047873, 2137227, 2125122, 2132159, 393756450, 2133236, 2111089, 2138422, 164261907932, 2127162, 2091795, 2137583, 174739360601, 2121524, 2137379, 2140639, 83704955576, 2138797, 2136903, 2139000, 63644737716, 2138264, 2112260, 2154782, 49753835140, 2140147, 2132376, 2152333, 36444718076, 2135658, 2132902, 2152115, 24032118224, 2133899, 2129644, 2147704, 13767756509, 2154365, 2143771, 2159079, 6585227559, 2141503, 2138307, 2150892, 2468406372, 2155607, 2132540, 2159768, 751210361, 2137398, 2153301, 2153403, 353768313, 2143219, 2125188, 2159852, 393273755, 2142903, 2137702, 2152872, 402185549, 2145573, 2143145, 2157208, 356105736, 2144566, 2149459, 2159107, 455790306, 2155902, 2126691, 2156634, 857679936, 2154553, 2139604, 2150440, 1494398764, 2150715, 2145054, 2153513, 2110927658, 2160967, 2159079, 2168684, 2405408899, 2151751, 2102265, 2159714, 2237298534, 2166851, 2152329, 2165414, 1681825771, 2150419, 2150184, 2156306, 1014873054, 2161317, 2154880, 2170147, 519194959, 2163776, 2153826, 2164904, 345874709, 2159705, 2159024, 2163860, 436747450, 2164856, 2241357, 2163740, 599862064, 2169394, 2634586, 2159946, 651742082, 2157926, 2148410, 2160741, 541688155, 2163477, 2156346, 2170637, 388872465, 2167989, 2175729, 2160986, 370319030, 2173170, 2185875, 2176838, 592554775, 2168269, 2157652, 2163343, 989547312, 2162055, 2173497, 2166117, 1346793209, 2168899, 2154532, 2180422, 1423325880, 2171371, 2162183, 2170780, 1148921007, 2170871, 2140799, 2176262, 680676125, 2174215, 2175633, 2182550, 362642300, 2178236, 2160478, 2181022, 485725655, 2164430, 2147800, 2174448, 1100650358, 2182682, 2160621, 2170241, 1903503973, 2181447, 2168794, 2171437, 2397882192, 2180536, 2175656, 2166719, 2172450845, 2176207, 2171812, 2170283, 1288539752, 2178577, 2150704, 2172305, 428544730, 2174844, 2165801, 2173271, 762608547, 2174407, 2172661, 2186549, 3472103365, 2178355, 2176893, 2168993, 9167173592, 2177969, 2165419, 2170329, 17444721940, 2171654, 2163025, 2179111, 26703713967, 2180377, 2167874, 2176189, 34793977898, 2174303, 2172649, 2167217, 39892269480, 2169461]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 125, "_raw": 125}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 126, "_raw": 126}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 127, "_raw": 127}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 129, "_raw": 129}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 130, "_raw": 130}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "S", "marker_raw": 83, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4106, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 10, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318777396679687, "timestamp": "2021-09-20T12:17:50.999997+00:00", "f_adc": 200, "data_id": {"signal_input_index": 131, "_raw": 131}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 1, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 512, "payload": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} diff --git a/tests/aggregator/test_bst_aggregator.py b/tests/aggregator/test_bst_aggregator.py index 3602a3fd9719c91c5e6dff4254bd27696f32a055..9e22043bd7bd09902b2aca88436bb941524aa406 100644 --- a/tests/aggregator/test_bst_aggregator.py +++ b/tests/aggregator/test_bst_aggregator.py @@ -6,7 +6,9 @@ import json from os.path import dirname from unittest import TestCase -from lofar_station_client.statistics.statistics_data import StatisticsDataFile +import numpy + +from lofar_station_client.dts.constants import N_pol from lofar_stingray.aggregator import BstAggregator @@ -14,44 +16,34 @@ from lofar_stingray.aggregator import BstAggregator class TestBstAggregator(TestCase): """Test cases of the BstAggregator class""" - def test_mode(self): - """Test mode property""" - metadata_packets = [] + def test_packets_to_matrix(self): + """Test packets_to_matrix method""" packets = [] - sut = BstAggregator("test", "hba", metadata_packets, packets) - assert sut.mode == "BST" - def test_convert(self): - """Test convert method""" - metadata_packets = [] - packets = [] + # load packets for one timestamp with open(dirname(__file__) + "/bst.json", encoding="utf-8") as f: for line in f: - packets.append(json.loads(line)) - sut = BstAggregator("test-001", "hba0", metadata_packets, packets) + packet = json.loads(line) + packet["payload"] = numpy.array(packet["payload"], dtype=numpy.float32) + packets.append(packet) - statistics = StatisticsDataFile() - sut.convert(statistics) + sut = BstAggregator() + matrix = sut.packets_to_matrix(packets) - assert list(statistics.keys()) == [ - "BST_2022-05-20T11:08:45.000", - "BST_2022-05-20T11:08:46.000", - "BST_2022-05-20T11:08:47.000", - "BST_2022-05-20T11:08:48.000", - ] + numpy.testing.assert_array_equal( + matrix, numpy.ones((BstAggregator.MAX_BEAMLETS, N_pol), dtype=numpy.float32) + ) - def test_convert_exceed_beamlets(self): - """Test convert method""" - metadata_packets = [] + def test_exceed_beamlets(self): + """Test packets_to_matrix method""" packets = [ { "source_info": {"payload_error": False}, "data_id": {"beamlet_index": 487}, - "payload": [0, 0, 0], + "payload": numpy.array([0, 0, 0], dtype=numpy.float32), } ] - sut = BstAggregator("test-001", "hba0", metadata_packets, packets) + sut = BstAggregator() - statistics = StatisticsDataFile() with self.assertRaises(ValueError): - sut.convert(statistics) + _ = sut.packets_to_matrix(packets) diff --git a/tests/aggregator/test_collect.py b/tests/aggregator/test_collect.py new file mode 100644 index 0000000000000000000000000000000000000000..258b71fea9e993aa117b410332d1d668801491b7 --- /dev/null +++ b/tests/aggregator/test_collect.py @@ -0,0 +1,47 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" CollectPacketsPerTimestamp tests """ +from datetime import datetime +from unittest import TestCase + +from lofar_stingray.aggregator import CollectPacketsPerTimestamp + +# pylint: disable=too-few-public-methods + + +class TestCollectPacketsPerTimestamp(TestCase): + """Test cases of the CollectPacketsPerTimestamp class""" + + class FakeStatisticsPacket: + """A mock for a StatisticsPacket""" + + def __init__(self, timestamp): + self.timestamp = timestamp + + def __repr__(self): + return f"FakeStatisticsPacket({self.timestamp})" + + def test_grouping(self): + """Test whether packets get grouped per timestamp.""" + + timestamps = [ + datetime(2024, 11, 1), + datetime(2024, 11, 1), + datetime(2024, 11, 1), + datetime(2024, 11, 2), + datetime(2024, 11, 2), + datetime(2024, 11, 3), + ] + + packets = [self.FakeStatisticsPacket(ts) for ts in timestamps] + + sut = CollectPacketsPerTimestamp() + groups = [ + group for packet in packets for group in sut.put_packet(packet) + ] + list(sut.done()) + + self.assertEqual(3, len(groups)) + self.assertEqual({datetime(2024, 11, 1)}, {p.timestamp for p in groups[0]}) + self.assertEqual({datetime(2024, 11, 2)}, {p.timestamp for p in groups[1]}) + self.assertEqual({datetime(2024, 11, 3)}, {p.timestamp for p in groups[2]}) diff --git a/tests/aggregator/test_sst_aggregator.py b/tests/aggregator/test_sst_aggregator.py index e1cee854fd15060bd3f90f7f29113fec5d22359c..2ed0a85ee948858e859b76596b1559463c0bf1fa 100644 --- a/tests/aggregator/test_sst_aggregator.py +++ b/tests/aggregator/test_sst_aggregator.py @@ -7,7 +7,6 @@ from os.path import dirname from unittest import TestCase import numpy -from lofar_station_client.statistics.statistics_data import StatisticsDataFile from lofar_stingray.aggregator import SstAggregator @@ -15,74 +14,48 @@ from lofar_stingray.aggregator import SstAggregator class TestSstAggregator(TestCase): """Test cases of the SstAggregator class""" - def test_mode(self): - """Test mode property""" - metadata_packets = [] + def test_packets_to_matrix(self): + """Test packets_to_matrix method""" packets = [] - sut = SstAggregator("test", "hba", metadata_packets, packets) - assert sut.mode == "SST" - def test_convert(self): - """Test convert method""" - metadata_packets = [] - packets = [] + # load packets for one timestamp with open(dirname(__file__) + "/sst.json", encoding="utf-8") as f: for line in f: - packets.append(json.loads(line)) - sut = SstAggregator("test-001", "lba", metadata_packets, packets) + packet = json.loads(line) + packet["payload"] = numpy.array(packet["payload"], dtype=numpy.float32) + packets.append(packet) - statistics = StatisticsDataFile() - sut.convert(statistics) + sut = SstAggregator() + matrix = sut.packets_to_matrix(packets) - assert list(statistics.keys()) == [ - "SST_2021-09-20T12:17:40.000", - "SST_2021-09-20T12:17:41.000", - "SST_2021-09-20T12:17:42.000", - "SST_2021-09-20T12:17:43.000", - "SST_2021-09-20T12:17:44.000", - "SST_2021-09-20T12:17:45.000", - "SST_2021-09-20T12:17:46.000", - "SST_2021-09-20T12:17:47.000", - "SST_2021-09-20T12:17:48.000", - "SST_2021-09-20T12:17:49.000", - "SST_2021-09-20T12:17:50.000", - "SST_2021-09-20T12:17:51.000", - ] numpy.testing.assert_array_equal( - statistics["SST_2021-09-20T12:17:41.000"][120][:5], + matrix[120][:5], numpy.array([118174500342, 4248876, 679874756, 2671774, 2472221]).astype( numpy.float32 ), ) numpy.testing.assert_array_equal( - statistics["SST_2021-09-20T12:17:41.000"][120][507:512], + matrix[120][507:512], numpy.array([5534594, 5535017, 5519003, 128035163225, 5514898]).astype( numpy.float32 ), ) - def test_convert_exceed_input_index(self): - """Test convert method""" - metadata_packets = [] + def test_exceed_input_index(self): + """Test packets_to_matrix method""" packets = [ { "source_info": {"payload_error": False}, "data_id": {"signal_input_index": 0}, - "payload": [0, 0, 0], + "payload": numpy.array([0, 0, 0], dtype=numpy.float32), } ] - sut = SstAggregator( - "test-001", "hba0", metadata_packets, packets, first_signal_input_index=1 - ) + sut = SstAggregator(first_signal_input_index=1) - statistics = StatisticsDataFile() with self.assertRaises(ValueError): - sut.convert(statistics) + _ = sut.packets_to_matrix(packets) - sut = SstAggregator( - "test-001", "hba0", metadata_packets, packets, nr_signal_inputs=0 - ) + sut = SstAggregator(nr_signal_inputs=0) - statistics = StatisticsDataFile() with self.assertRaises(ValueError): - sut.convert(statistics) + _ = sut.packets_to_matrix(packets) diff --git a/tests/aggregator/test_xst_aggregator.py b/tests/aggregator/test_xst_aggregator.py index bba9627ea3db25f77a9f4be5e1f52e5c92de3ca9..847ef4f68a9237b5bdd5bc0ac7159bd567d40279 100644 --- a/tests/aggregator/test_xst_aggregator.py +++ b/tests/aggregator/test_xst_aggregator.py @@ -7,7 +7,6 @@ from os.path import dirname from unittest import TestCase import numpy -from lofar_station_client.statistics.statistics_data import StatisticsDataFile from lofar_stingray.aggregator import XstAggregator @@ -15,41 +14,24 @@ from lofar_stingray.aggregator import XstAggregator class TestXstAggregator(TestCase): """Test cases of the XstAggregator class""" - def test_mode(self): - """Test mode property""" - metadata_packets = [] + def test_packets_to_matrix(self): + """Test packets_to_matrix method""" packets = [] - sut = XstAggregator("test", "hba", metadata_packets, packets) - assert sut.mode == "XST" - def test_convert(self): - """Test convert method""" - metadata_packets = [] - with open(dirname(__file__) + "/metadata.json", encoding="utf-8") as f: - for line in f: - metadata_packets.append(json.loads(line)) - packets = [] + # load packets for one timestamp with open(dirname(__file__) + "/xst.json", encoding="utf-8") as f: for line in f: - packets.append(json.loads(line)) - sut = XstAggregator("test-001", "lba", metadata_packets, packets) - - statistics = StatisticsDataFile() - sut.convert(statistics) - - assert list(statistics.keys()) == [ - "XST_2021-09-13T13:21:32.000", - "XST_2021-09-13T13:21:33.000", - "XST_2021-09-13T13:21:34.000", - "XST_2021-09-13T13:21:35.000", - "XST_2021-09-13T13:21:36.000", - "XST_2021-09-13T13:21:37.000", - "XST_2021-09-13T13:21:38.000", - ] - assert statistics["XST_2021-09-13T13:21:32.000"]["subband"][0] == 102 - assert statistics["XST_2021-09-13T13:21:32.000"]["frequency"][0] == 19921876 + packet = json.loads(line) + packet["payload"] = numpy.array(packet["payload"], dtype=numpy.float32) + packets.append(packet) + + sut = XstAggregator() + matrix = sut.packets_to_matrix(packets) + + self.assertEqual(102, matrix[0][0]) + numpy.testing.assert_array_equal( - statistics["XST_2021-09-13T13:21:32.000"]["data"][0][0][0:3], + matrix[0][1][0][0:3], numpy.array( [ 1.2392113e10 + 0.000000e00j, @@ -62,61 +44,47 @@ class TestXstAggregator(TestCase): def test_convert_exceed_input_index(self): """Test convert method""" - metadata_packets = [] packets = [ { "source_info": {"payload_error": False}, "data_id": {"first_baseline": 0}, "nof_signal_inputs": 99, - "payload": [0, 0, 0], + "payload": numpy.array([0, 0, 0], dtype=numpy.float32), } ] - sut = XstAggregator( - "test-001", "hba0", metadata_packets, packets, first_signal_input_index=0 - ) + sut = XstAggregator(packets, first_signal_input_index=0) - statistics = StatisticsDataFile() with self.assertRaises(ValueError): - sut.convert(statistics) + _ = sut.packets_to_matrix(packets) packets = [ { "source_info": {"payload_error": False}, "data_id": {"first_baseline": [0, 0]}, "nof_signal_inputs": 12, - "payload": [0, 0, 0], + "payload": numpy.array([0, 0, 0], dtype=numpy.float32), } ] sut = XstAggregator( - "test-001", - "hba0", - metadata_packets, - packets, first_signal_input_index=99, nr_signal_inputs=0, ) - statistics = StatisticsDataFile() with self.assertRaises(ValueError): - sut.convert(statistics) + _ = sut.packets_to_matrix(packets) packets = [ { "source_info": {"payload_error": False}, "data_id": {"first_baseline": [1, 0]}, "nof_signal_inputs": 12, - "payload": [0, 0, 0], + "payload": numpy.array([0, 0, 0], dtype=numpy.float32), } ] sut = XstAggregator( - "test-001", - "hba0", - metadata_packets, - packets, first_signal_input_index=0, nr_signal_inputs=100, ) - statistics = StatisticsDataFile() with self.assertRaises(ValueError): - sut.convert(statistics) + _ = sut.packets_to_matrix(packets) diff --git a/tests/aggregator/xst.json b/tests/aggregator/xst.json index d82cabe48996188016254456ca1e55d85a381e2f..fdb5fcf80b55eaf63af73ca15bce8f97447bbf19 100644 --- a/tests/aggregator/xst.json +++ b/tests/aggregator/xst.json @@ -1,14 +1 @@ {"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660017968750, "timestamp": "2021-09-13T13:21:32+00:00", "f_adc": 200, "data_id": {"subband_index": 102, "first_baseline": [0, 0], "_raw": 6684672}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12392113389, 0, 14179862119, 18838079865, 24097221288, 6114039749, -25342633, -70573295, 5006488, 20916709, 16929791, 3281090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14179862119, -18838079865, 46648201003, 0, 38074141365, -30600450043, -140919749, -43532845, 38310157, 16755435, 25327247, -22864647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24097221288, -6114039749, 38074141365, 30600450043, 51899830598, 0, -87234965, -128851147, 20376190, 39198341, 35897436, -1949609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25342633, 70573295, -140919749, 43532845, -87234965, 128851147, 6452839, 0, -141795, -17617, -65901, 96128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5006488, -20916709, 38310157, -16755435, 20376190, -39198341, -141795, 17617, 2627149, 0, 13329, -1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16929791, -3281090, 25327247, 22864647, 35897436, 1949609, -65901, -96128, 13329, 1797, 2688111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018164062, "timestamp": "2021-09-13T13:21:32.999997+00:00", "f_adc": 200, "data_id": {"subband_index": 102, "first_baseline": [0, 0], "_raw": 6684672}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12413858683, 0, 14201791496, 18850074023, 24121283534, 6105956026, -25175879, -70735845, 4677411, 20810195, 17408925, 3164536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14201791496, -18850074023, 46652756066, 0, 38071415735, -30610981244, -140522709, -44089030, 37933020, 17519929, 25512090, -23520969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24121283534, -6105956026, 38071415735, 30610981244, 51896055953, 0, -86413577, -129205600, 19664327, 39418420, 36540176, -2575150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25175879, 70735845, -140522709, 44089030, -86413577, 129205600, 6463630, 0, -135804, -17799, -65384, 83262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4677411, -20810195, 37933020, -17519929, 19664327, -39418420, -135804, 17799, 2635435, 0, 10221, -7964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17408925, -3164536, 25512090, 23520969, 36540176, 2575150, -65384, -83262, 10221, 7964, 2686738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018359375, "timestamp": "2021-09-13T13:21:34+00:00", "f_adc": 200, "data_id": {"subband_index": 102, "first_baseline": [0, 0], "_raw": 6684672}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12385365087, 0, 14186946692, 18819584006, 24097302718, 6099039777, -24945512, -69913531, 4639753, 20894302, 17490046, 2741624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14186946692, -18819584006, 46629023161, 0, 38075766990, -30596299162, -139353746, -43388107, 38284085, 17419608, 24897986, -24206447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24097302718, -6099039777, 38075766990, 30596299162, 51911961307, 0, -85709728, -127795221, 19962313, 39661386, 36485882, -3431155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24945512, 69913531, -139353746, 43388107, -85709728, 127795221, 6424072, 0, -140436, -13018, -71076, 101500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4639753, -20894302, 38284085, -17419608, 19962313, -39661386, -140436, 13018, 2606986, 0, 11955, 611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17490046, -2741624, 24897986, 24206447, 36485882, 3431155, -71076, -101500, 11955, -611, 2694668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018554687, "timestamp": "2021-09-13T13:21:34.999997+00:00", "f_adc": 200, "data_id": {"subband_index": 102, "first_baseline": [0, 0], "_raw": 6684672}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12374025812, 0, 14190162208, 18827655648, 24087027534, 6103930650, -25013990, -69969286, 4714331, 20632753, 17626540, 2737919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14190162208, -18827655648, 46712581925, 0, 38121171778, -30623757245, -139736148, -43726638, 37978121, 17042388, 25330668, -24668558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24087027534, -6103930650, 38121171778, 30623757245, 51934860924, 0, -85896300, -128182505, 19901097, 39091590, 36981355, -3542546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25013990, 69969286, -139736148, 43726638, -85896300, 128182505, 6459358, 0, -144482, -12115, -49340, 93354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4714331, -20632753, 37978121, -17042388, 19901097, -39091590, -144482, 12115, 2607166, 0, 11009, -4723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17626540, -2737919, 25330668, 24668558, 36981355, 3542546, -49340, -93354, 11009, 4723, 2686623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018750000, "timestamp": "2021-09-13T13:21:36+00:00", "f_adc": 200, "data_id": {"subband_index": 102, "first_baseline": [0, 0], "_raw": 6684672}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12355074767, 0, 14175901542, 18811206276, 24076086587, 6086801692, -24306543, -70376209, 4374428, 20629065, 17368710, 3444310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14175901542, -18811206276, 46690811495, 0, 38097675610, -30641929713, -139743704, -44806879, 37701106, 17390617, 25892101, -23470708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24076086587, -6086801692, 38097675610, 30641929713, 51945344237, 0, -85031567, -129242928, 19543069, 39274020, 36781596, -2213639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24306543, 70376209, -139743704, 44806879, -85031567, 129242928, 6453886, 0, -138401, -22567, -68105, 91684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4374428, -20629065, 37701106, -17390617, 19543069, -39274020, -138401, 22567, 2601114, 0, 17453, -3483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17368710, -3444310, 25892101, 23470708, 36781596, 2213639, -68105, -91684, 17453, 3483, 2693233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018945312, "timestamp": "2021-09-13T13:21:36.999997+00:00", "f_adc": 200, "data_id": {"subband_index": 102, "first_baseline": [0, 0], "_raw": 6684672}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12347931206, 0, 14168651564, 18806338410, 24061390848, 6099328831, -25224236, -70818985, 4393130, 20296166, 17514736, 2907017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14168651564, -18806338410, 46693957302, 0, 38111422970, -30620765648, -141502729, -44269774, 37082913, 17213152, 25373327, -24288027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24061390848, -6099328831, 38111422970, 30620765648, 51937787019, 0, -87014415, -129626592, 19274746, 38689399, 36823579, -3206062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25224236, 70818985, -141502729, 44269774, -87014415, 129626592, 6460005, 0, -135703, -13262, -63445, 96811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4393130, -20296166, 37082913, -17213152, 19274746, -38689399, -135703, 13262, 2598326, 0, 7078, -6433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17514736, -2907017, 25373327, 24288027, 36823579, 3206062, -63445, -96811, 7078, 6433, 2691455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660019140625, "timestamp": "2021-09-13T13:21:38+00:00", "f_adc": 200, "data_id": {"subband_index": 102, "first_baseline": [0, 0], "_raw": 6684672}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12339475296, 0, 14164705132, 18812514644, 24052345618, 6102315998, -24734888, -69835959, 4244098, 20840274, 17399391, 2691339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14164705132, -18812514644, 46737038244, 0, 38125556197, -30641828224, -139319852, -43997608, 37690195, 17907477, 24993084, -24219738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24052345618, -6102315998, 38125556197, 30641828224, 51941366987, 0, -85393034, -128023324, 19138029, 39727188, 36529523, -3559320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24734888, 69835959, -139319852, 43997608, -85393034, 128023324, 6462106, 0, -134843, -17774, -68384, 95596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4244098, -20840274, 37690195, -17907477, 19138029, -39727188, -134843, 17774, 2597150, 0, 15599, 4696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17399391, -2691339, 24993084, 24219738, 36529523, 3559320, -68384, -95596, 15599, -4696, 2683898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660017968750, "timestamp": "2021-09-13T13:21:32+00:00", "f_adc": 200, "data_id": {"subband_index": 103, "first_baseline": [0, 0], "_raw": 6750208}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12392113389, 0, 14179862119, 18838079865, 24097221288, 6114039749, -25342633, -70573295, 5006488, 20916709, 16929791, 3281090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14179862119, -18838079865, 46648201003, 0, 38074141365, -30600450043, -140919749, -43532845, 38310157, 16755435, 25327247, -22864647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24097221288, -6114039749, 38074141365, 30600450043, 51899830598, 0, -87234965, -128851147, 20376190, 39198341, 35897436, -1949609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25342633, 70573295, -140919749, 43532845, -87234965, 128851147, 6452839, 0, -141795, -17617, -65901, 96128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5006488, -20916709, 38310157, -16755435, 20376190, -39198341, -141795, 17617, 2627149, 0, 13329, -1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16929791, -3281090, 25327247, 22864647, 35897436, 1949609, -65901, -96128, 13329, 1797, 2688111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018164062, "timestamp": "2021-09-13T13:21:32.999997+00:00", "f_adc": 200, "data_id": {"subband_index": 103, "first_baseline": [0, 0], "_raw": 6750208}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12413858683, 0, 14201791496, 18850074023, 24121283534, 6105956026, -25175879, -70735845, 4677411, 20810195, 17408925, 3164536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14201791496, -18850074023, 46652756066, 0, 38071415735, -30610981244, -140522709, -44089030, 37933020, 17519929, 25512090, -23520969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24121283534, -6105956026, 38071415735, 30610981244, 51896055953, 0, -86413577, -129205600, 19664327, 39418420, 36540176, -2575150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25175879, 70735845, -140522709, 44089030, -86413577, 129205600, 6463630, 0, -135804, -17799, -65384, 83262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4677411, -20810195, 37933020, -17519929, 19664327, -39418420, -135804, 17799, 2635435, 0, 10221, -7964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17408925, -3164536, 25512090, 23520969, 36540176, 2575150, -65384, -83262, 10221, 7964, 2686738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018359375, "timestamp": "2021-09-13T13:21:34+00:00", "f_adc": 200, "data_id": {"subband_index": 103, "first_baseline": [0, 0], "_raw": 6750208}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12385365087, 0, 14186946692, 18819584006, 24097302718, 6099039777, -24945512, -69913531, 4639753, 20894302, 17490046, 2741624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14186946692, -18819584006, 46629023161, 0, 38075766990, -30596299162, -139353746, -43388107, 38284085, 17419608, 24897986, -24206447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24097302718, -6099039777, 38075766990, 30596299162, 51911961307, 0, -85709728, -127795221, 19962313, 39661386, 36485882, -3431155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24945512, 69913531, -139353746, 43388107, -85709728, 127795221, 6424072, 0, -140436, -13018, -71076, 101500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4639753, -20894302, 38284085, -17419608, 19962313, -39661386, -140436, 13018, 2606986, 0, 11955, 611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17490046, -2741624, 24897986, 24206447, 36485882, 3431155, -71076, -101500, 11955, -611, 2694668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018554687, "timestamp": "2021-09-13T13:21:34.999997+00:00", "f_adc": 200, "data_id": {"subband_index": 103, "first_baseline": [0, 0], "_raw": 6750208}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12374025812, 0, 14190162208, 18827655648, 24087027534, 6103930650, -25013990, -69969286, 4714331, 20632753, 17626540, 2737919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14190162208, -18827655648, 46712581925, 0, 38121171778, -30623757245, -139736148, -43726638, 37978121, 17042388, 25330668, -24668558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24087027534, -6103930650, 38121171778, 30623757245, 51934860924, 0, -85896300, -128182505, 19901097, 39091590, 36981355, -3542546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25013990, 69969286, -139736148, 43726638, -85896300, 128182505, 6459358, 0, -144482, -12115, -49340, 93354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4714331, -20632753, 37978121, -17042388, 19901097, -39091590, -144482, 12115, 2607166, 0, 11009, -4723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17626540, -2737919, 25330668, 24668558, 36981355, 3542546, -49340, -93354, 11009, 4723, 2686623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018750000, "timestamp": "2021-09-13T13:21:36+00:00", "f_adc": 200, "data_id": {"subband_index": 103, "first_baseline": [0, 0], "_raw": 6750208}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12355074767, 0, 14175901542, 18811206276, 24076086587, 6086801692, -24306543, -70376209, 4374428, 20629065, 17368710, 3444310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14175901542, -18811206276, 46690811495, 0, 38097675610, -30641929713, -139743704, -44806879, 37701106, 17390617, 25892101, -23470708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24076086587, -6086801692, 38097675610, 30641929713, 51945344237, 0, -85031567, -129242928, 19543069, 39274020, 36781596, -2213639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24306543, 70376209, -139743704, 44806879, -85031567, 129242928, 6453886, 0, -138401, -22567, -68105, 91684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4374428, -20629065, 37701106, -17390617, 19543069, -39274020, -138401, 22567, 2601114, 0, 17453, -3483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17368710, -3444310, 25892101, 23470708, 36781596, 2213639, -68105, -91684, 17453, 3483, 2693233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": false, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660018945312, "timestamp": "2021-09-13T13:21:36.999997+00:00", "f_adc": 200, "data_id": {"subband_index": 103, "first_baseline": [0, 0], "_raw": 6750208}, "integration_interval_raw": 195311, "integration_interval": 0.99999232, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12347931206, 0, 14168651564, 18806338410, 24061390848, 6099328831, -25224236, -70818985, 4393130, 20296166, 17514736, 2907017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14168651564, -18806338410, 46693957302, 0, 38111422970, -30620765648, -141502729, -44269774, 37082913, 17213152, 25373327, -24288027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24061390848, -6099328831, 38111422970, 30620765648, 51937787019, 0, -87014415, -129626592, 19274746, 38689399, 36823579, -3206062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25224236, 70818985, -141502729, 44269774, -87014415, 129626592, 6460005, 0, -135703, -13262, -63445, 96811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4393130, -20296166, 37082913, -17213152, 19274746, -38689399, -135703, 13262, 2598326, 0, 7078, -6433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17514736, -2907017, 25373327, 24288027, 36823579, 3206062, -63445, -96811, 7078, 6433, 2691455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} -{"marker": "X", "marker_raw": 88, "version_id": 5, "observation_id": 0, "station_id": 0, "station_info": {"_raw": 0, "station_id": 0, "antenna_field_index": 0}, "source_info": {"_raw": 4104, "antenna_band_index": 0, "nyquist_zone_index": 0, "t_adc": 1, "fsub_type": 0, "payload_error": true, "beam_repositioning_flag": false, "gn_index": 8, "subband_calibrated_flag": false}, "block_period_raw": 5120, "block_period": 5.12e-06, "block_serial_number": 318660019140625, "timestamp": "2021-09-13T13:21:38+00:00", "f_adc": 200, "data_id": {"subband_index": 103, "first_baseline": [0, 0], "_raw": 6750208}, "integration_interval_raw": 195312, "integration_interval": 0.99999744, "nof_signal_inputs": 12, "nof_bytes_per_statistic": 8, "nof_statistics_per_packet": 288, "payload": [12339475296, 0, 14164705132, 18812514644, 24052345618, 6102315998, -24734888, -69835959, 4244098, 20840274, 17399391, 2691339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14164705132, -18812514644, 46737038244, 0, 38125556197, -30641828224, -139319852, -43997608, 37690195, 17907477, 24993084, -24219738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24052345618, -6102315998, 38125556197, 30641828224, 51941366987, 0, -85393034, -128023324, 19138029, 39727188, 36529523, -3559320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24734888, 69835959, -139319852, 43997608, -85393034, 128023324, 6462106, 0, -134843, -17774, -68384, 95596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4244098, -20840274, 37690195, -17907477, 19138029, -39727188, -134843, 17774, 2597150, 0, 15599, 4696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17399391, -2691339, 24993084, 24219738, 36529523, 3559320, -68384, -95596, 15599, -4696, 2683898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]} diff --git a/tests/annotator/__init__.py b/tests/annotator/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..736b85bf38a55648a464449d2b90651475c5f4ba --- /dev/null +++ b/tests/annotator/__init__.py @@ -0,0 +1,4 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Aggregator module tests """ diff --git a/tests/aggregator/metadata.json b/tests/annotator/metadata.json similarity index 100% rename from tests/aggregator/metadata.json rename to tests/annotator/metadata.json diff --git a/tests/aggregator/test_base_aggregator.py b/tests/annotator/test_base_annotator.py similarity index 92% rename from tests/aggregator/test_base_aggregator.py rename to tests/annotator/test_base_annotator.py index e5ae481e24ac13f8bec904a64ae4a777d12e6d54..83df8a5db52890428be5ea9f6bc9d9a78ae2ad11 100644 --- a/tests/aggregator/test_base_aggregator.py +++ b/tests/annotator/test_base_annotator.py @@ -1,7 +1,7 @@ # Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) # SPDX-License-Identifier: Apache-2.0 -""" BaseAggregator tests """ +""" BaseAnnotator tests """ import json from datetime import datetime from os.path import dirname @@ -9,42 +9,44 @@ from unittest import TestCase from lofar_station_client.statistics.statistics_data import StatisticsDataFile -from lofar_stingray.aggregator._base import BaseAggregator +from lofar_stingray.annotator._base import BaseAnnotator -class _TestAggregator(BaseAggregator): +class _TestAnnotator(BaseAnnotator): @property def mode(self): return "TEST" - def convert(self, statistics: StatisticsDataFile): + def write(self, statistics: StatisticsDataFile): """Not used in unit tests""" + raise NotImplementedError -class TestBaseAggregator(TestCase): - """Test cases of the BaseAggregator class""" + +class TestBaseAnnotator(TestCase): + """Test cases of the BaseAnnotator class""" def test_format_timestamp(self): """Test format_timestamp method""" ts = datetime.fromisoformat("2024-06-07T13:21:32+00:00") - formatted = BaseAggregator.format_timestamp(ts) + formatted = BaseAnnotator.format_timestamp(ts) assert formatted == "2024-06-07T13:21:32.000" def test_round_datetime_ms(self): """Test round_datetime_ms method""" ts = datetime.fromisoformat("2024-06-05 13:21:32.000003+00:00") - rounded = BaseAggregator.round_datetime_ms(ts) + rounded = BaseAnnotator.round_datetime_ms(ts) assert rounded == datetime.fromisoformat("2024-06-05T13:21:32+00:00") ts = datetime.fromisoformat("2021-09-13 13:21:32.999997+00:00") - rounded = BaseAggregator.round_datetime_ms(ts) + rounded = BaseAnnotator.round_datetime_ms(ts) assert rounded == datetime.fromisoformat("2021-09-13 13:21:33+00:00") def test_mode(self): """Test mode property""" metadata_packets = [] - sut = _TestAggregator("test", "hba", metadata_packets) + sut = _TestAnnotator("test", "hba", metadata_packets) assert sut.mode == "TEST" def test_set_file_header(self): @@ -53,7 +55,7 @@ class TestBaseAggregator(TestCase): with open(dirname(__file__) + "/metadata.json", encoding="utf-8") as f: for line in f: metadata_packets.append(json.loads(line)) - sut = _TestAggregator("test-001", "hba0", metadata_packets) + sut = _TestAnnotator("test-001", "hba0", metadata_packets) statistics = StatisticsDataFile() sut.set_file_header(statistics) diff --git a/tests/annotator/test_bst_annotator.py b/tests/annotator/test_bst_annotator.py new file mode 100644 index 0000000000000000000000000000000000000000..7f62c6c03b74109b07756cfd085dab2416efea5d --- /dev/null +++ b/tests/annotator/test_bst_annotator.py @@ -0,0 +1,48 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" BstAnnotator tests """ +from unittest import TestCase + +import numpy + +from lofar_station_client.statistics.statistics_data import StatisticsDataFile + +from lofar_stingray.annotator import BstAnnotator + + +class TestBstAnnotator(TestCase): + """Test cases of the BstAnnotator class""" + + def test_mode(self): + """Test mode property""" + metadata_packets = [] + matrices = [] + sut = BstAnnotator("test", "hba", metadata_packets, matrices) + self.assertEqual("BST", sut.mode) + + def test_write(self): + """Test write method""" + metadata_packets = [] + matrices = [ + { + "timestamp": "2022-05-20T11:08:45", + "bst_data": numpy.ones((488, 2)), + }, + { + "timestamp": "2022-05-20T11:08:45.999997", + "bst_data": numpy.ones((488, 2)), + }, + ] + sut = BstAnnotator("test-001", "hba0", metadata_packets, matrices) + + statistics = StatisticsDataFile() + sut.write(statistics) + + self.assertListEqual( + list(statistics.keys()), + [ + "BST_2022-05-20T11:08:45.000", + "BST_2022-05-20T11:08:46.000", + ], + ) diff --git a/tests/annotator/test_sst_annotator.py b/tests/annotator/test_sst_annotator.py new file mode 100644 index 0000000000000000000000000000000000000000..e49a78d460efed11be8206781adcfd7629251053 --- /dev/null +++ b/tests/annotator/test_sst_annotator.py @@ -0,0 +1,47 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" SstAnnotator tests """ +from unittest import TestCase + +import numpy +from lofar_station_client.statistics.statistics_data import StatisticsDataFile + +from lofar_stingray.annotator import SstAnnotator + + +class TestSstAnnotator(TestCase): + """Test cases of the SstAnnotator class""" + + def test_mode(self): + """Test mode property""" + metadata_packets = [] + matrices = [] + sut = SstAnnotator("test", "hba", metadata_packets, matrices) + self.assertEqual("SST", sut.mode) + + def test_write(self): + """Test write method""" + metadata_packets = [] + matrices = [ + { + "timestamp": "2022-05-20T11:08:45", + "sst_data": numpy.ones((512, 2)), + }, + { + "timestamp": "2022-05-20T11:08:45.999997", + "sst_data": numpy.ones((512, 2)), + }, + ] + sut = SstAnnotator("test-001", "hba0", metadata_packets, matrices) + + statistics = StatisticsDataFile() + sut.write(statistics) + + self.assertListEqual( + list(statistics.keys()), + [ + "SST_2022-05-20T11:08:45.000", + "SST_2022-05-20T11:08:46.000", + ], + ) diff --git a/tests/annotator/test_xst_annotator.py b/tests/annotator/test_xst_annotator.py new file mode 100644 index 0000000000000000000000000000000000000000..50d20fff228bd85eaf39c83b515af2a8e2bae74c --- /dev/null +++ b/tests/annotator/test_xst_annotator.py @@ -0,0 +1,51 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" XstAnnotator tests """ +from unittest import TestCase + +import numpy +from lofar_station_client.statistics.statistics_data import StatisticsDataFile + +from lofar_stingray.annotator import XstAnnotator + + +class TestXstAnnotator(TestCase): + """Test cases of the XstAnnotator class""" + + def test_mode(self): + """Test mode property""" + metadata_packets = [] + matrices = [] + sut = XstAnnotator("test", "hba", metadata_packets, matrices) + self.assertEqual("XST", sut.mode) + + def test_write(self): + """Test write method""" + metadata_packets = [] + matrices = [ + { + "timestamp": "2022-05-20T11:08:45", + "subband": 1, + "xst_data_real": numpy.ones((488, 2)), + "xst_data_imag": numpy.ones((488, 2)), + }, + { + "timestamp": "2022-05-20T11:08:45.999997", + "subband": 2, + "xst_data_real": numpy.ones((96, 96)), + "xst_data_imag": numpy.ones((96, 96)), + }, + ] + sut = XstAnnotator("test-001", "hba0", metadata_packets, matrices) + + statistics = StatisticsDataFile() + sut.write(statistics) + + self.assertListEqual( + list(statistics.keys()), + [ + "XST_2022-05-20T11:08:45.000_SB001", + "XST_2022-05-20T11:08:46.000_SB002", + ], + ) diff --git a/tests/publish/SDP_BST_statistics_packets.bin b/tests/publish/SDP_BST_statistics_packets.bin new file mode 100644 index 0000000000000000000000000000000000000000..2f567d03f9d63f265b7781c90a265dc531e0b09c Binary files /dev/null and b/tests/publish/SDP_BST_statistics_packets.bin differ diff --git a/tests/publish/SDP_SST_statistics_packets.bin b/tests/publish/SDP_SST_statistics_packets.bin new file mode 100644 index 0000000000000000000000000000000000000000..e94347b86a0a03b940eb84980ec8f6d3b6d4e2d7 Binary files /dev/null and b/tests/publish/SDP_SST_statistics_packets.bin differ diff --git a/tests/publish/SDP_XST_statistics_packets.bin b/tests/publish/SDP_XST_statistics_packets.bin new file mode 100644 index 0000000000000000000000000000000000000000..97c08e3bfb47bf56c30288b5e62cc60c7034b417 Binary files /dev/null and b/tests/publish/SDP_XST_statistics_packets.bin differ diff --git a/tests/publish/test_publish.py b/tests/publish/test_publish.py new file mode 100644 index 0000000000000000000000000000000000000000..99a356c689aa9e70aa16798d7283dcba53cd5f18 --- /dev/null +++ b/tests/publish/test_publish.py @@ -0,0 +1,191 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""Testing of the publish program""" +import json +import numpy +from os.path import dirname +from unittest import TestCase +from unittest.mock import patch + +from lofar_stingray import publish + +from prometheus_client.registry import REGISTRY + + +class TestPublish(TestCase): + """Test cases of the publish program""" + + def setUp(self): + super().setUp() + + # Clear all metrics to make sure we don't register the same one twice + # between tests (the library forbids it). + # + # Unfortunately, Metrics draw copies of prometheus_client.registry.REGISTRY, + # and that does not provide a public interface to query the registered + # collectors. + for collector in list(REGISTRY._collector_to_names.keys()): + REGISTRY.unregister(collector) + + @patch("lofar_stingray.publish.start_http_server", autospec=True) + @patch("lofar_stingray.publish.ZeroMQPublisher", autospec=True) + def test_bst(self, m_publisher, m_prometheus_server): + publish.main( + [ + "cs001", + "lba", + "bst", + f"file:{dirname(__file__)}/SDP_BST_statistics_packets.bin", + ] + ) + published_messages = [ + call.args[0] + for call in m_publisher.return_value.__enter__.return_value.send.mock_calls + ] + + # file contains four timestamps, so there should be four messages + self.assertEqual(4, len(published_messages)) + + # messages should be valid json + bst_messages = [json.loads(msg) for msg in published_messages] + + # check fields + for idx, bst_message in enumerate(bst_messages): + self.assertEqual("cs001", bst_message["station"], f"{idx=}, {bst_message=}") + self.assertEqual( + "lba", bst_message["antenna_field"], f"{idx=}, {bst_message=}" + ) + self.assertEqual("bst", bst_message["type"], f"{idx=}, {bst_message=}") + self.assertEqual( + (488, 2), + numpy.array(bst_message["bst_data"]).shape, + f"{idx=}, {bst_message=}", + ) + + # check timestamps + self.assertEqual( + "2022-05-20T11:08:44.999997+00:00", bst_messages[0]["timestamp"] + ) + self.assertEqual("2022-05-20T11:08:46+00:00", bst_messages[1]["timestamp"]) + self.assertEqual( + "2022-05-20T11:08:46.999997+00:00", bst_messages[2]["timestamp"] + ) + self.assertEqual("2022-05-20T11:08:48+00:00", bst_messages[3]["timestamp"]) + + @patch("lofar_stingray.publish.start_http_server", autospec=True) + @patch("lofar_stingray.publish.ZeroMQPublisher", autospec=True) + def test_sst(self, m_publisher, m_prometheus_server): + publish.main( + [ + "cs001", + "lba", + "sst", + f"file:{dirname(__file__)}/SDP_SST_statistics_packets.bin", + ] + ) + published_messages = [ + call.args[0] + for call in m_publisher.return_value.__enter__.return_value.send.mock_calls + ] + + # file contains 12 timestamps, so there should be 12 messages + self.assertEqual(12, len(published_messages)) + + # messages should be valid json + sst_messages = [json.loads(msg) for msg in published_messages] + + # check fields + for idx, sst_message in enumerate(sst_messages): + self.assertEqual("cs001", sst_message["station"], f"{idx=}, {sst_message=}") + self.assertEqual( + "lba", sst_message["antenna_field"], f"{idx=}, {sst_message=}" + ) + self.assertEqual("sst", sst_message["type"], f"{idx=}, {sst_message=}") + self.assertEqual( + (192, 512), + numpy.array(sst_message["sst_data"]).shape, + f"{idx=}, {sst_message=}", + ) + + # check timestamps + self.assertEqual("2021-09-20T12:17:40+00:00", sst_messages[0]["timestamp"]) + self.assertEqual( + "2021-09-20T12:17:40.999997+00:00", sst_messages[1]["timestamp"] + ) + self.assertEqual("2021-09-20T12:17:42+00:00", sst_messages[2]["timestamp"]) + self.assertEqual( + "2021-09-20T12:17:42.999997+00:00", sst_messages[3]["timestamp"] + ) + self.assertEqual("2021-09-20T12:17:44+00:00", sst_messages[4]["timestamp"]) + self.assertEqual( + "2021-09-20T12:17:44.999997+00:00", sst_messages[5]["timestamp"] + ) + self.assertEqual("2021-09-20T12:17:46+00:00", sst_messages[6]["timestamp"]) + self.assertEqual( + "2021-09-20T12:17:46.999997+00:00", sst_messages[7]["timestamp"] + ) + self.assertEqual("2021-09-20T12:17:48+00:00", sst_messages[8]["timestamp"]) + self.assertEqual( + "2021-09-20T12:17:48.999997+00:00", sst_messages[9]["timestamp"] + ) + self.assertEqual("2021-09-20T12:17:50+00:00", sst_messages[10]["timestamp"]) + self.assertEqual( + "2021-09-20T12:17:50.999997+00:00", sst_messages[11]["timestamp"] + ) + + @patch("lofar_stingray.publish.start_http_server", autospec=True) + @patch("lofar_stingray.publish.ZeroMQPublisher", autospec=True) + def test_xst(self, m_publisher, m_prometheus_server): + publish.main( + [ + "cs001", + "lba", + "xst", + f"file:{dirname(__file__)}/SDP_XST_statistics_packets.bin", + ] + ) + published_messages = [ + call.args[0] + for call in m_publisher.return_value.__enter__.return_value.send.mock_calls + ] + + # file contains 7 timestamps, so there should be 7 messages + self.assertEqual(7, len(published_messages)) + + # messages should be valid json + xst_messages = [json.loads(msg) for msg in published_messages] + + # check fields + for idx, xst_message in enumerate(xst_messages): + self.assertEqual("cs001", xst_message["station"], f"{idx=}, {xst_message=}") + self.assertEqual( + "lba", xst_message["antenna_field"], f"{idx=}, {xst_message=}" + ) + self.assertEqual("xst", xst_message["type"], f"{idx=}, {xst_message=}") + self.assertEqual(102, xst_message["subband"], f"{idx=}, {xst_message=}") + self.assertEqual( + (192, 192), + numpy.array(xst_message["xst_data_real"]).shape, + f"{idx=}, {xst_message=}", + ) + self.assertEqual( + (192, 192), + numpy.array(xst_message["xst_data_imag"]).shape, + f"{idx=}, {xst_message=}", + ) + + # check timestamps + self.assertEqual("2021-09-13T13:21:32+00:00", xst_messages[0]["timestamp"]) + self.assertEqual( + "2021-09-13T13:21:32.999997+00:00", xst_messages[1]["timestamp"] + ) + self.assertEqual("2021-09-13T13:21:34+00:00", xst_messages[2]["timestamp"]) + self.assertEqual( + "2021-09-13T13:21:34.999997+00:00", xst_messages[3]["timestamp"] + ) + self.assertEqual("2021-09-13T13:21:36+00:00", xst_messages[4]["timestamp"]) + self.assertEqual( + "2021-09-13T13:21:36.999997+00:00", xst_messages[5]["timestamp"] + ) + self.assertEqual("2021-09-13T13:21:38+00:00", xst_messages[6]["timestamp"]) diff --git a/tests/reader/test_s3_packet_loader.py b/tests/reader/test_s3_packet_loader.py index 3e856dcb26236679ea833991a514e20d1c0246de..81e3c9538877092e7ea656f5773e3feb0eb37a2a 100644 --- a/tests/reader/test_s3_packet_loader.py +++ b/tests/reader/test_s3_packet_loader.py @@ -105,7 +105,7 @@ class TestS3PacketLoader(TestCase): result = packet_loader.wait_for_filenames_after(timestamp) self.assertTrue(result) # objects were returned - def test_load_packets(self): + def test_load_json(self): """Test if a numpy array is correctly serialized""" start = datetime.fromisoformat("2024-06-07T13:21:32+00:00") end = datetime.fromisoformat("2024-06-07T13:25:32+00:00") @@ -124,7 +124,7 @@ class TestS3PacketLoader(TestCase): packet_loader = S3PacketLoader("bucket", "prefix/", self.mock_minio) returned_data = False - for packet in packet_loader.load_packets(start, end, ts_field="ts"): + for packet in packet_loader.load_json(start, end, ts_field="ts"): returned_data = True self.assertNotEqual("ignored_packet", packet["info"]) self.assertIn(packet["info"], [str(x) for x in range(0, 5)]) diff --git a/tests/streams/__init__.py b/tests/streams/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c92b615444d854a6e87370b16cf733a5859a07e7 --- /dev/null +++ b/tests/streams/__init__.py @@ -0,0 +1,2 @@ +# Copyright (C) 2023 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 diff --git a/tests/streams/test_create.py b/tests/streams/test_create.py new file mode 100644 index 0000000000000000000000000000000000000000..0305aedf5b69e118dbbf397218c0cc3676b220ff --- /dev/null +++ b/tests/streams/test_create.py @@ -0,0 +1,49 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Test streams/create """ + +from unittest import TestCase + +from lofar_stingray.streams import ( + create, + ZeroMQReceiver, + TCPStream, + UDPStream, + FileStream, +) + + +class TestCreate(TestCase): + """Test create, the Stream factory function.""" + + def test_tcp_listen(self): + """Test seting up a tcp stream to listen on.""" + sut = create("tcp://localhost:9999") + + self.assertIsInstance(sut, TCPStream) + + def test_udp_listen(self): + """Test seting up a udp stream to listen on.""" + sut = create("udp://localhost:9999") + + self.assertIsInstance(sut, UDPStream) + + def test_file_read(self): + """Test seting up a file to read from.""" + + # we don't actually open this file so it's + # ok to construct this + sut = create("file:///file") + + self.assertIsInstance(sut, FileStream) + + def test_zmq_subscribe(self): + """Test seting up a ZMQ connection to subscribe to""" + sut = create("zmq+tcp://localhost:9999/test2") + self.assertIsInstance(sut, ZeroMQReceiver) + + def test_unknown(self): + """Test unsupported schemes.""" + with self.assertRaises(ValueError): + create("example://localhost:8080") diff --git a/tests/streams/test_zmq.py b/tests/streams/test_zmq.py new file mode 100644 index 0000000000000000000000000000000000000000..7813ad70edeefbf5665a7638aa93e0048276a0eb --- /dev/null +++ b/tests/streams/test_zmq.py @@ -0,0 +1,114 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +""" Test ZeroMQReceiver """ + +from unittest import mock, TestCase + +import zmq + +from lofar_stingray.streams import ZeroMQReceiver + + +@mock.patch("zmq.Context.instance") +class TestZeroMQReceiver(TestCase): + """Test ZeroMQReceiver""" + + def test_text(self, ctx): + """Test receiving messages encoded as text/plain.""" + + socket_mock = mock.Mock() + ctx.return_value = mock.Mock() + ctx.return_value.socket.return_value = socket_mock + socket_mock.recv_multipart.side_effect = [ + ["test".encode(), "2024-05-17T08:35:48Z".encode(), "data1".encode()], + ["test".encode(), "2024-05-17T08:36:48Z".encode(), "data2".encode()], + zmq.ZMQError(errno=zmq.ETERM), + ] + + receiver = ZeroMQReceiver( + "tcp://localhost:9999", ["test"], content_type="text/plain" + ) + + # on start, any subband should map on the first entry + self.assertListEqual(["test"], receiver.topics) + self.assertEqual("text/plain", receiver.content_type) + + packages = [] + for package in receiver: + packages.append(package) + + self.assertListEqual( + ["data1", "data2"], + packages, + ) + + def test_json(self, ctx): + """Test receiving messages encoded as application/json.""" + + socket_mock = mock.Mock() + ctx.return_value = mock.Mock() + ctx.return_value.socket.return_value = socket_mock + socket_mock.recv_multipart.side_effect = [ + [ + "test2".encode(), + "2024-05-18T08:35:48".encode(), + '{"data": "one"}'.encode(), + ], + [ + "test2".encode(), + "2024-05-18T08:36:48".encode(), + '{"data": "two"}'.encode(), + ], + zmq.ZMQError(errno=zmq.ETERM), + ] + receiver = ZeroMQReceiver( + "tcp://localhost:9999", + topics=["test2"], + content_type="application/json", + ) + self.assertListEqual(["test2"], receiver.topics) + self.assertEqual("application/json", receiver.content_type) + + packages = [] + for package in receiver: + packages.append(package) + + self.assertListEqual( + [ + {"data": "one"}, + {"data": "two"}, + ], + packages, + ) + + def test_binary(self, ctx): + """Test receiving messages encoded as application/octet-stream.""" + + socket_mock = mock.Mock() + ctx.return_value = mock.Mock() + ctx.return_value.socket.return_value = socket_mock + socket_mock.recv_multipart.side_effect = [ + ["test2".encode(), "2024-05-19T08:35:48".encode(), b"{data1}"], + ["test2".encode(), "2024-05-19T08:36:48".encode(), b"{data2}"], + zmq.ZMQError(errno=zmq.ETERM), + ] + receiver = ZeroMQReceiver( + "tcp://localhost:9999/", + topics=["test2"], + content_type="application/octet-stream", + ) + self.assertListEqual(["test2"], receiver.topics) + self.assertEqual("application/octet-stream", receiver.content_type) + + packages = [] + for package in receiver: + packages.append(package) + + self.assertListEqual( + [ + b"{data1}", + b"{data2}", + ], + packages, + ) diff --git a/tests/test_forward.py b/tests/test_forward.py new file mode 100644 index 0000000000000000000000000000000000000000..36c3f38ab1bd7a80ae40c28f3590d9b6784b4f00 --- /dev/null +++ b/tests/test_forward.py @@ -0,0 +1,76 @@ +# Copyright (C) 2024 ASTRON (Netherlands Institute for Radio Astronomy) +# SPDX-License-Identifier: Apache-2.0 + +"""Testing of the forward program""" +import filecmp +from os.path import dirname +from unittest import TestCase +from unittest.mock import patch +from tempfile import TemporaryDirectory + +from prometheus_client.registry import REGISTRY + +from lofar_stingray import forward + + +class TestForward(TestCase): + """Test cases of the forward program""" + + def setUp(self): + super().setUp() + + # Clear all metrics to make sure we don't register the same one twice + # between tests (the library forbids it). + # + # Unfortunately, Metrics draw copies of prometheus_client.registry.REGISTRY, + # and that does not provide a public interface to query the registered + # collectors. + + # pylint: disable=protected-access + for collector in list(REGISTRY._collector_to_names.keys()): + REGISTRY.unregister(collector) + + @patch("lofar_stingray.forward.start_http_server", autospec=True) + @patch("lofar_stingray.streams._create.ZeroMQReceiver", autospec=True) + def test_json_zmq_to_file(self, m_receiver, _m_prometheus_server): + """Test forwarding packets from ZMQ to file.""" + + m_receiver.return_value.__enter__.return_value.get_json.side_effect = [ + {"a": "foo"}, + {"b": "bar"}, + None, + ] + + with TemporaryDirectory() as tmpdir: + forward.main( + [ + "zmq+tcp://localhost:6001/topic", + f"file:{tmpdir}/output.json", + "--datatype=json", + ] + ) + + with open(f"{tmpdir}/output.json", encoding="utf-8") as f: + lines = [line.rstrip() for line in f] + + self.assertEqual('{"a": "foo"}', lines[0]) + self.assertEqual('{"b": "bar"}', lines[1]) + + @patch("lofar_stingray.forward.start_http_server", autospec=True) + def test_packet_file_to_file(self, _m_prometheus_server): + """Test forwarding packets from file to file.""" + + with TemporaryDirectory() as tmpdir: + + input_file = f"{dirname(__file__)}/publish/SDP_BST_statistics_packets.bin" + output_file = f"{tmpdir}/output.bin" + forward.main( + [ + f"file:{input_file}", + f"file:{output_file}", + "--datatype=packet", + ] + ) + + # files must be identical after forwarding + self.assertTrue(filecmp.cmp(input_file, output_file)) diff --git a/tests/xst-packets.bin b/tests/xst-packets.bin new file mode 100644 index 0000000000000000000000000000000000000000..ef98c894ba5961573837624377b14695b1dd9263 Binary files /dev/null and b/tests/xst-packets.bin differ