diff --git a/cflib_groundstation/LogfileHandler.py b/cflib_groundstation/LogfileHandler.py
index 71220df0261e587f320a82f085bb7d92e7f15f55..049d1d130064f97c977d07f941fd44946040fcab 100644
--- a/cflib_groundstation/LogfileHandler.py
+++ b/cflib_groundstation/LogfileHandler.py
@@ -14,9 +14,6 @@ from cflib.crazyflie import Crazyflie
 from cflib.crazyflie.syncCrazyflie import SyncCrazyflie
 from queue import Queue
 #import groundstation_socket as gs
-import uCartCommander
-from groundstation_socket import MessageTypeID
-from SetpointHandler import SetpointHandler, FlightMode
 from cflib.crazyflie.log import LogConfig
 import numpy as np
 
@@ -46,7 +43,8 @@ class LogfileHandler:
         self.logging_configs = []
         self.data_log = None
         self.data_log_name = ""
-        self.header_id = 0
+        self.header_id = -1
+        self.header = []
 
         self.create_log_data_file()
 
@@ -80,7 +78,7 @@ class LogfileHandler:
         file = open(filename, "a")
         for group in list(toc.keys()):
             for name in list(toc[group].keys()):
-                file.write(f"{toc[group][name].ident}    {types.get(toc[group][name].ctype)}    {group}    {name}\n")
+                file.write(f"{toc[group][name].ident}\t{types.get(toc[group][name].ctype)}\t{group}\t{name}\n")
                 #print(f" Identity: {toc[group][name].ident} Packet Type:{toc[group][name].pytype} CType:{toc[group][name].ctype} Group:{group} Name:{name}\n")
 
                    
@@ -133,15 +131,15 @@ class LogfileHandler:
         self.data_log.close()
 
     def add_config_headers(self, config_list: List[LogConfig]):
+        self.header = []
+        self.header_id += 1
         self.data_log = open(self.data_log_name, 'a')
         header = "#" + str(self.header_id) + "\ttime"
         for config in config_list:
-            print(config)
             for variable in config.variables:
-                print("Var: " + variable.name)
                 header += "\t" + variable.name
+                self.header.append(variable.name)
         self.data_log.write(header + "\r")
-        self.header_id += 1
         self.data_log.close()
 
 
@@ -153,13 +151,13 @@ class LogfileHandler:
     def stop_logging(self):
         raise Exception
     
-    def write_data_points(self, data, timestamp):
+    def write_data_points(self, data):
         self.data_log = open(self.data_log_name, 'a')
-        line = str(timestamp) + " "
-        for group in data:
-            for data in group.values():
-                line += str(data) + "\t"
-        line += "\r"
+        line = str(data[0]['timestamp']) + "\t"
+        for point in data:
+                line += str('%.4f'%(point['data'])) + "\t"
+        line += "\t\r"
+        print(line)
         self.data_log.write(line)
         self.data_log.close()
 
diff --git a/cflib_groundstation/__pycache__/LogfileHandler.cpython-38.pyc b/cflib_groundstation/__pycache__/LogfileHandler.cpython-38.pyc
index 38c58eb95bad0da7d7cb58dabaca510ba2832a5c..655b6dbaa086985e8ea014180995549af7d4bd19 100644
Binary files a/cflib_groundstation/__pycache__/LogfileHandler.cpython-38.pyc and b/cflib_groundstation/__pycache__/LogfileHandler.cpython-38.pyc differ
diff --git a/cflib_groundstation/__pycache__/SetpointHandler.cpython-38.pyc b/cflib_groundstation/__pycache__/SetpointHandler.cpython-38.pyc
index 4b6fa575d603a6f5965726a792f3559d6bdcb65f..26cf1c6d90a211f7d387723eac619a13fc9c56a2 100644
Binary files a/cflib_groundstation/__pycache__/SetpointHandler.cpython-38.pyc and b/cflib_groundstation/__pycache__/SetpointHandler.cpython-38.pyc differ
diff --git a/cflib_groundstation/__pycache__/crazyflie_connection.cpython-38.pyc b/cflib_groundstation/__pycache__/crazyflie_connection.cpython-38.pyc
index c8b8d69dfd7a79b2ef07b4e7cc8c8446aa446fb0..cad3efe8423c986ea192b24e4fc604091f2694d4 100644
Binary files a/cflib_groundstation/__pycache__/crazyflie_connection.cpython-38.pyc and b/cflib_groundstation/__pycache__/crazyflie_connection.cpython-38.pyc differ
diff --git a/cflib_groundstation/__pycache__/groundstation_socket.cpython-38.pyc b/cflib_groundstation/__pycache__/groundstation_socket.cpython-38.pyc
index be803194c29d9124de995ab5d59fc3d0dbd15cd0..564e9957431c3074df62c281d13b5e50e8bcb4f6 100644
Binary files a/cflib_groundstation/__pycache__/groundstation_socket.cpython-38.pyc and b/cflib_groundstation/__pycache__/groundstation_socket.cpython-38.pyc differ
diff --git a/cflib_groundstation/__pycache__/uCartCommander.cpython-38.pyc b/cflib_groundstation/__pycache__/uCartCommander.cpython-38.pyc
index 85e268143825e20c74f5e47f55281d03cd536423..b0ceddca3d1fd2a9f5b0bb5af7ba2253ea1f266d 100644
Binary files a/cflib_groundstation/__pycache__/uCartCommander.cpython-38.pyc and b/cflib_groundstation/__pycache__/uCartCommander.cpython-38.pyc differ
diff --git a/cflib_groundstation/crazyflie_connection.py b/cflib_groundstation/crazyflie_connection.py
index 6030a4464f8bba5f706a08218908f7fb81c6cb8f..727d965c1a8c9ecf74ac2a2c327982bb4514a204 100644
--- a/cflib_groundstation/crazyflie_connection.py
+++ b/cflib_groundstation/crazyflie_connection.py
@@ -54,7 +54,9 @@ class CrazyflieConnection:
         self.stop_thread = False
         self.setpoint_handler = SetpointHandler()
         self.logfile_handler = LogfileHandler()
+        self.logging_configs = self.logfile_handler.read_all_active_blocks()
         self.timestamp = 0
+        self.logging_queue = Queue()
 
         # self.timer = QTimer()
         # self.timer.timeout.connect(self.update_plot)
@@ -256,7 +258,7 @@ class CrazyflieConnection:
         if id == 0: # logdata?
             filename = self.logfile_handler.data_log_name
             data = bytearray()
-            data += bytes(filename, 'utf-8')
+            data += bytes("_" + filename, 'utf-8')
             responsedata = {
             "msg_type": (MessageTypeID.RESPLOGFILE_ID),
             "msg_id": command['msg_id'],
@@ -268,7 +270,7 @@ class CrazyflieConnection:
             params = self.get_param_toc()
             filename = self.logfile_handler.CopyTocToFile(params, True)
             data = bytearray()
-            data += bytes(filename, 'utf-8')
+            data += bytes("_" + filename, 'utf-8')
             responsedata = {
             "msg_type": (MessageTypeID.RESPLOGFILE_ID),
             "msg_id": command['msg_id'],
@@ -280,7 +282,23 @@ class CrazyflieConnection:
             logs = self.get_logging_toc()
             filename = self.logfile_handler.CopyTocToFile(logs, False)
             data = bytearray()
-            data += bytes(filename, 'utf-8')
+            data += bytes("_" + filename, 'utf-8')
+            responsedata = {
+            "msg_type": (MessageTypeID.RESPLOGFILE_ID),
+            "msg_id": command['msg_id'],
+            "data_len": len(data),
+            "data": data
+            }
+            outputQueue.put(responsedata)
+        elif id == 3: 
+            header = "_" + str(self.logfile_handler.header_id) + ":,time,"
+            for config in self.logging_configs:
+                for variable in config.variables:
+                    header += variable.name + ","
+            print(header)
+            data = bytearray()
+            data += bytes(header, 'utf-8')
+
             responsedata = {
             "msg_type": (MessageTypeID.RESPLOGFILE_ID),
             "msg_id": command['msg_id'],
@@ -288,10 +306,16 @@ class CrazyflieConnection:
             "data": data
             }
             outputQueue.put(responsedata)
-        elif id == 3: # active header of the data log
-            raise Exception # Not implemented
         elif id == 4: # state of test stand connection
-            raise Exception # Not implemented
+            data = bytearray()
+            data += bytes("_false", 'utf-8')
+            responsedata = {
+            "msg_type": (MessageTypeID.RESPLOGFILE_ID),
+            "msg_id": command['msg_id'],
+            "data_len": len(data),
+            "data": data
+            }
+            outputQueue.put(responsedata)
         else :
             raise Exception
         
@@ -304,8 +328,16 @@ class CrazyflieConnection:
         elif id == 1:
             self.delete_log_blocks()
             self.logging_configs = self.logfile_handler.read_all_active_blocks()
+            for config in self.logging_configs:
+                config.data_received_cb.add_callback(
+                self.logging_callback)
+                self.scf.cf.log.add_config(config)
         elif id == 2:
             self.logging_configs = self.logfile_handler.read_all_active_blocks()
+            for config in self.logging_configs:
+                config.data_received_cb.add_callback(
+                self.logging_callback)
+                self.scf.cf.log.add_config(config)
         elif id == 3:
             block_id = command['data'][1]
             self.logging_configs.remove(self.logging_configs[block_id])
@@ -314,9 +346,11 @@ class CrazyflieConnection:
         elif id == 5:
             self.disable_logging()
         elif id == 8:
+            self.enable_logging()
             self.start_logging()
         elif id == 9:
             self.stop_logging()
+            self.disable_logging()
             
     def simple_log(self, scf, logconf):
         print("Logging...")
@@ -343,9 +377,10 @@ class CrazyflieConnection:
             self.logging_configs[i].stop()
     
     def delete_log_blocks(self):
-        for block in self.logging_configs:
-            block.delete()
-            self.logging_configs.remove(block)
+        self.logging_configs = []
+        #for block in self.logging_configs:
+            #block.delete()
+            #self.logging_configs.remove(block)
     
     def start_logging(self):
         self.stop_thread = False
@@ -357,13 +392,23 @@ class CrazyflieConnection:
 
     def continous_log(self):
         while not self.stop_thread:
-            data = []
-            for config in self.logging_configs:
-                data.append(self.simple_log(self.scf, config))
-            print(data)
-            self.logfile_handler.write_data_points(data, self.timestamp / 1000)
-            sleep(0.3)
-
-
-
+            if self.logging_queue.qsize() > 3:
+                data = []
+                for i in range(0, 12):
+                    point = self.logging_queue.get()
+                    print(point)
+                    data.append(point)
+                self.logfile_handler.write_data_points(data)
+                sleep(0.3)
+
+
+    def logging_callback(self, _timestamp, data, _logconf):
+        """ Whenever data comes in from the logging, it is sent here,
+        which routes it into our specific format for the logging queue. """
+
+        timestamp1 = time.time() - self.start_time
+        for key in data.keys():
+            value_pair = {'timestamp': timestamp1, 'data': data[key],
+                          'signal': key}
+            self.logging_queue.put(value_pair)
 
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_20:49:49.txt b/cflib_groundstation/logs/cflie1_2023_11_16_20:49:49.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f4cff9e7c5fb03a7cd360f5778f2925bc0f512a3
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_20:49:49.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_20:50:47.txt b/cflib_groundstation/logs/cflie1_2023_11_16_20:50:47.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f4cff9e7c5fb03a7cd360f5778f2925bc0f512a3
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_20:50:47.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_20:54:24.txt b/cflib_groundstation/logs/cflie1_2023_11_16_20:54:24.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c318f1ec737d58b8a5a06d1beee1471f1f0c6d34
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_20:54:24.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
245.924 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3370	
246.446 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3355	
246.986 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3401	
247.508 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3401	
248.076 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3323	
248.589 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3356	
249.115 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3459	
249.625 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3500	
250.083 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3493	
250.63 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3567	
251.127 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3643	
251.7 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3687	
252.193 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3781	
252.66 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3826	
253.148 0.0000	0.0000	0.0000	0.0000	0.0000	-172.3957	
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:01:36.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:01:36.txt
new file mode 100644
index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:01:36.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:02:21.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:02:21.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2c2777aeb0ef87ba69e70aa5a909837d104b18cf
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:02:21.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
722.252 0.7951	-1.0905	-175.0134	0.0653	0.0367	-0.1235	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0169	
723.317 0.7947	-1.0747	-175.0142	0.2183	-0.0203	-0.1162	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0136	
724.37 0.7895	-1.0905	-175.0148	0.1074	-0.0298	0.0094	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0219	
725.42 0.7861	-1.0942	-175.0163	0.1695	0.6741	0.0468	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0200	
726.575 0.7856	-1.0849	-175.0266	-0.1172	0.0322	0.1098	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0358	
727.646 0.8028	-1.0750	-175.0343	0.2163	0.0274	0.0566	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0394	
728.671 0.8079	-1.0657	-175.0378	0.0922	0.0732	0.0089	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0383	
729.73 0.7987	-1.0619	-175.0321	-0.0510	0.2421	-0.0522	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0326	
730.881 0.8023	-1.0699	-175.0272	-0.1703	-0.0894	0.0300	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0353	
732.062 0.8013	-1.0790	-175.0408	0.3246	0.7222	0.1699	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0479	
734.182 0.7968	-1.0492	-175.0430	0.1299	-0.4678	0.0199	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0563	
735.366 0.7995	-1.0639	-175.0619	-0.0771	0.2842	-0.1257	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0663	
736.511 0.7885	-1.0845	-175.0659	0.3725	0.0991	0.0381	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0699	
738.303 0.8091	-1.0916	-175.0871	-0.3061	-0.3670	0.1308	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0954	
739.43 0.7976	-1.0867	-175.0964	0.2570	-0.1453	-0.0687	0.0000	0.0000	0.0000	0.0000	0.0000	-175.0981	
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:04:46.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:04:46.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8ca75d6720b55ee5a4fa654c71b095e1818f2503
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:04:46.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
864.51 0.7909	-1.0503	-176.1295	0.2110	0.5171	-0.0595	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1306	
865.553 0.7807	-1.0638	-176.1291	0.2454	0.7006	0.0562	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1370	
867.349 0.7973	-1.0603	-176.1422	-0.4095	-0.1298	-0.1781	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1479	
868.364 0.8035	-1.0572	-176.1476	-0.2163	0.6298	-0.0252	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1518	
869.352 0.8022	-1.0435	-176.1571	0.2475	0.3301	0.0043	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1626	
870.345 0.8070	-1.0589	-176.1531	-0.1862	-0.5043	0.0409	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1617	
871.366 0.8078	-1.0869	-176.1615	0.4857	0.1622	-0.1997	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1663	
872.394 0.8102	-1.0790	-176.1753	0.1788	-0.6042	0.0344	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1772	
873.409 0.8100	-1.0720	-176.1794	0.4696	-0.0090	-0.2934	0.0000	0.0000	0.0000	0.0000	0.0000	-176.1880	
874.42 0.8180	-1.0752	-176.1954	-0.3525	-0.5107	-0.0475	0.0000	0.0000	0.0000	0.0000	0.0000	-176.2001	
875.43 0.8179	-1.0913	-176.2081	0.3733	-0.0236	0.0203	0.0000	0.0000	0.0000	0.0000	0.0000	-176.2187	
876.475 0.8052	-1.0914	-176.2279	-0.0478	-0.3674	-0.1292	0.0000	0.0000	0.0000	0.0000	0.0000	-176.2261	
877.515 0.8131	-1.0880	-176.2327	0.3236	-0.2320	0.2073	0.0000	0.0000	0.0000	0.0000	0.0000	-176.2418	
878.52 0.8179	-1.0822	-176.2512	0.3645	-0.1031	0.1479	0.0000	0.0000	0.0000	0.0000	0.0000	-176.2596	
879.532 0.8008	-1.0709	-176.2663	-0.2135	-0.0463	-0.0118	0.0000	0.0000	0.0000	0.0000	0.0000	-176.2653	
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:12:52.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:12:52.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f6cfcafbd654ad98e1d6c360d440fb396dd3abf4
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:12:52.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
1352.518 0.1553	-1.0695	150.7455	0.1148	0.3395	0.2723	0.0000	0.0000	0.0000	0.0000	0.0000	150.7423	
1353.558 0.1679	-1.0683	150.7479	-0.3594	-0.4034	0.1107	0.0000	0.0000	0.0000	0.0000	0.0000	150.7416	
1354.613 0.1756	-1.0610	150.7354	-0.1518	-0.4791	-0.0707	0.0000	0.0000	0.0000	0.0000	0.0000	150.7309	
1355.627 0.1620	-1.0692	150.7273	0.2021	0.0772	-0.1906	0.0000	0.0000	0.0000	0.0000	0.0000	150.7213	
1356.637 0.1585	-1.0908	150.7200	0.3551	-0.1480	0.0394	0.0000	0.0000	0.0000	0.0000	0.0000	150.7250	
1357.655 0.1624	-1.0808	150.7251	0.1299	-0.1189	0.0102	0.0000	0.0000	0.0000	0.0000	0.0000	150.7227	
1358.666 0.1554	-1.0735	150.7281	-0.6816	-0.3363	-0.1377	0.0000	0.0000	0.0000	0.0000	0.0000	150.7171	
1359.67 0.1609	-1.0763	150.7233	0.2794	-0.2513	-0.0011	0.0000	0.0000	0.0000	0.0000	0.0000	150.7180	
1360.696 0.1601	-1.0809	150.7141	0.0460	-0.1432	-0.0002	0.0000	0.0000	0.0000	0.0000	0.0000	150.7156	
1361.709 0.1563	-1.0844	150.7104	-0.0248	-0.6822	-0.1965	0.0000	0.0000	0.0000	0.0000	0.0000	150.6958	
1362.742 0.1507	-1.0949	150.7022	-0.0869	-0.0047	0.0322	0.0000	0.0000	0.0000	0.0000	0.0000	150.7002	
1363.787 0.1593	-1.0907	150.7008	0.2525	0.5781	0.0994	0.0000	0.0000	0.0000	0.0000	0.0000	150.6931	
1364.814 0.1655	-1.0845	150.6861	-0.4971	-0.4051	-0.0690	0.0000	0.0000	0.0000	0.0000	0.0000	150.6882	
1365.875 0.1535	-1.0837	150.6866	-0.4151	-0.1152	-0.0895	0.0000	0.0000	0.0000	0.0000	0.0000	150.6823	
1366.921 0.1601	-1.0919	150.6716	0.0885	-0.3331	-0.1363	0.0000	0.0000	0.0000	0.0000	0.0000	150.6698	
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:22:22.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:22:22.txt
new file mode 100644
index 0000000000000000000000000000000000000000..27abd69f992615f227d2351768d66f9e2d4cc86e
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:22:22.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
0.0 
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:23:14.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:23:14.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9596c7fc144b2b28833edb3c64fe3311c2a7a98f
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:23:14.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
#1	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
1993.885 0.1622	-1.0439	146.6253	-0.1674	-0.6391	0.1232	0.0000	0.0000	0.0000	0.0000	0.0000	146.6284	
1994.948 0.1517	-1.0716	146.6234	-0.1754	-0.1370	-0.1172	0.0000	0.0000	0.0000	0.0000	0.0000	146.6232	
1996.1 0.1574	-1.0600	146.6164	0.1405	0.3992	0.0251	0.0000	0.0000	0.0000	0.0000	0.0000	146.6025	
1997.183 0.1560	-1.0487	146.5997	-0.1389	-0.4073	-0.0859	0.0000	0.0000	0.0000	0.0000	0.0000	146.5916	
1998.343 0.1575	-1.0618	146.5737	0.4266	0.0710	0.0190	0.0000	0.0000	0.0000	0.0000	0.0000	146.5618	
1999.486 0.1498	-1.0766	146.5718	0.0020	0.2760	0.1005	0.0000	0.0000	0.0000	0.0000	0.0000	146.5703	
2000.585 0.1476	-1.0622	146.5708	0.1345	-0.1365	0.0060	0.0000	0.0000	0.0000	0.0000	0.0000	146.5614	
2001.753 0.1520	-1.0701	146.5597	0.0793	-0.1466	0.0077	0.0000	0.0000	0.0000	0.0000	0.0000	146.5642	
2002.815 0.1546	-1.0551	146.5523	0.0091	0.1527	0.2183	0.0000	0.0000	0.0000	0.0000	0.0000	146.5482	
2003.904 0.1323	-1.0645	146.5410	0.2591	0.7344	-0.3830	0.0000	0.0000	0.0000	0.0000	0.0000	146.5338	
2005.007 0.1411	-1.0592	146.5329	-0.0371	0.0082	-0.0274	0.0000	0.0000	0.0000	0.0000	0.0000	146.5374	
2006.077 0.1403	-1.0651	146.5344	0.0754	-0.4818	-0.0541	0.0000	0.0000	0.0000	0.0000	0.0000	146.5402	
2007.199 0.1323	-1.0584	146.5422	0.5215	0.1642	0.1848	0.0000	0.0000	0.0000	0.0000	0.0000	146.5340	
2008.328 0.1366	-1.0395	146.5310	-0.4499	-0.3993	0.1697	0.0000	0.0000	0.0000	0.0000	0.0000	146.5289	
2010.217 0.1310	-1.0700	146.5222	0.1993	0.1093	-0.2071	0.0000	0.0000	0.0000	0.0000	0.0000	146.5204	
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:26:47.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:26:47.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4264a896d366f9d4069acd4ca5dabf9553feecb1
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:26:47.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
2186.542 0.1560	-1.0192	145.2759	-0.1982	-0.0278	-0.0912	0.0000	0.0000	0.0000	0.0000	0.0000	145.2764	
2187.62 0.1586	-1.0356	145.2699	-0.0784	-0.0241	-0.1000	0.0000	0.0000	0.0000	0.0000	0.0000	145.2681	
2188.763 0.1596	-1.0687	145.2687	0.0426	0.5392	-0.1501	0.0000	0.0000	0.0000	0.0000	0.0000	145.2775	
2189.927 0.1593	-1.0853	145.2694	0.7560	0.5525	-0.2665	0.0000	0.0000	0.0000	0.0000	0.0000	145.2648	
2191.084 0.1437	-1.0611	145.2616	0.2185	-0.1831	0.0062	0.0000	0.0000	0.0000	0.0000	0.0000	145.2509	
2192.194 0.1570	-1.0449	145.2471	-0.0376	-0.3348	-0.0707	0.0000	0.0000	0.0000	0.0000	0.0000	145.2318	
2193.342 0.1507	-1.0488	145.2297	-0.1170	-0.1955	-0.1030	0.0000	0.0000	0.0000	0.0000	0.0000	145.2234	
2194.473 0.1493	-1.0439	145.2177	-0.4029	-0.1653	0.0022	0.0000	0.0000	0.0000	0.0000	0.0000	145.2195	
2195.627 0.1479	-1.0393	145.2189	0.2619	0.0379	0.0099	0.0000	0.0000	0.0000	0.0000	0.0000	145.2257	
2196.778 0.1753	-1.0562	145.2162	-0.5332	0.0253	-0.0341	0.0000	0.0000	0.0000	0.0000	0.0000	145.2057	
2197.969 0.1766	-1.0557	145.2127	0.4809	0.2250	0.0231	0.0000	0.0000	0.0000	0.0000	0.0000	145.2081	
2199.101 0.1704	-1.0754	145.2071	0.0964	-0.1351	-0.0725	0.0000	0.0000	0.0000	0.0000	0.0000	145.2099	
2200.262 0.1515	-1.0863	145.2109	-0.0382	-0.0988	0.1308	0.0000	0.0000	0.0000	0.0000	0.0000	145.2128	
2201.433 0.1618	-1.0661	145.2080	0.5413	-0.2432	-0.2767	0.0000	0.0000	0.0000	0.0000	0.0000	145.2049	
2202.669 0.1588	-1.0367	145.1959	-0.5626	-0.3292	0.1882	0.0000	0.0000	0.0000	0.0000	0.0000	145.1853	
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:31:17.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:31:17.txt
new file mode 100644
index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:31:17.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:32:26.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:32:26.txt
new file mode 100644
index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:32:26.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:33:37.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:33:37.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1f0286d88f660517a4c86f1706be3d937b23cc90
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:33:37.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
#1	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:35:20.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:35:20.txt
new file mode 100644
index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:35:20.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_21:35:56.txt b/cflib_groundstation/logs/cflie1_2023_11_16_21:35:56.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1f0286d88f660517a4c86f1706be3d937b23cc90
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_21:35:56.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
#1	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_22:08:00.txt b/cflib_groundstation/logs/cflie1_2023_11_16_22:08:00.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1f0286d88f660517a4c86f1706be3d937b23cc90
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_22:08:00.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
#1	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_22:14:45.txt b/cflib_groundstation/logs/cflie1_2023_11_16_22:14:45.txt
new file mode 100644
index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_22:14:45.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_22:15:17.txt b/cflib_groundstation/logs/cflie1_2023_11_16_22:15:17.txt
new file mode 100644
index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_22:15:17.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_22:15:49.txt b/cflib_groundstation/logs/cflie1_2023_11_16_22:15:49.txt
new file mode 100644
index 0000000000000000000000000000000000000000..25d91de93c642df18df6c7f4b9b6ead32255d426
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_22:15:49.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
#1	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
17.82216715812683	0.0000	0.0000	0.0000	1.2128	0.5318	-71.0708	0.0000	0.0000	-71.0703	0.4950	-0.2173	-0.1157		
17.890257358551025	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0693	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0697		
17.962122678756714	0.0000	0.0000	0.0000	1.2072	0.5319	-71.0710	0.0000	0.0000	-71.0705	-0.4018	-0.2531	0.0017		
18.022748231887817	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0694	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0701		
18.063453912734985	0.0000	0.0000	0.0000	1.2019	0.5280	-71.0718	0.0000	0.0000	-71.0709	-0.8812	-0.3932	0.0500		
18.095889806747437	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0714	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0734		
18.14538049697876	0.0000	0.0000	0.0000	1.2037	0.5269	-71.0730	0.0000	0.0000	-71.0734	-0.0637	-0.3847	0.2638		
18.202311277389526	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0733	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0744		
18.303314685821533	0.0000	0.0000	0.0000	1.2043	0.5276	-71.0724	0.0000	0.0000	-71.0722	0.1429	0.2300	0.0360		
18.346590757369995	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0730	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0741		
18.44534397125244	0.0000	0.0000	0.0000	1.2057	0.5241	-71.0756	0.0000	0.0000	-71.0767	0.3399	0.5399	-0.3221		
18.50357699394226	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0780	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0783		
18.594069242477417	0.0000	0.0000	0.0000	1.2052	0.5260	-71.0778	0.0000	0.0000	-71.0776	0.3257	-0.0179	-0.1462		
18.64578413963318	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0782	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0799		
18.74553871154785	0.0000	0.0000	0.0000	1.2036	0.5257	-71.0808	0.0000	0.0000	-71.0812	-0.2569	-0.3003	-0.0253		
18.79631018638611	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0781	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0775		
18.893507480621338	0.0000	0.0000	0.0000	1.2017	0.5202	-71.0780	0.0000	0.0000	-71.0791	-0.5179	-0.0458	0.0602		
18.941746950149536	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0795	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0782		
19.045021295547485	0.0000	0.0000	0.0000	1.2006	0.5220	-71.0792	0.0000	0.0000	-71.0796	-0.1111	-0.4555	0.0735		
19.10474920272827	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0776	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0810		
19.197010278701782	0.0000	0.0000	0.0000	1.2016	0.5188	-71.0786	0.0000	0.0000	-71.0783	0.2303	-0.0960	-0.0765		
19.244347095489502	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0791	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0785		
19.345657110214233	0.0000	0.0000	0.0000	1.2024	0.5114	-71.0793	0.0000	0.0000	-71.0788	0.3417	0.5168	-0.1042		
19.39313316345215	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0800	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0766		
19.49292492866516	0.0000	0.0000	0.0000	1.2004	0.5089	-71.0770	0.0000	0.0000	-71.0767	0.3717	0.2111	0.0953		
19.543877840042114	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0767	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0766		
19.650084257125854	0.0000	0.0000	0.0000	1.1984	0.5048	-71.0767	0.0000	0.0000	-71.0775	-0.2158	-0.1923	-0.1240		
19.698660373687744	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0794	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0789		
19.79949951171875	0.0000	0.0000	0.0000	1.1927	0.4999	-71.0789	0.0000	0.0000	-71.0771	-0.3205	-0.3610	-0.2266		
19.84388518333435	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0786	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0759		
19.944090604782104	0.0000	0.0000	0.0000	1.1951	0.5087	-71.0762	0.0000	0.0000	-71.0756	-0.4563	-0.1111	0.0262		
19.997475624084473	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0766	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0772		
20.099945545196533	0.0000	0.0000	0.0000	1.1959	0.5156	-71.0795	0.0000	0.0000	-71.0812	-0.0605	-0.0677	0.1734		
20.14411497116089	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0811	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0805		
20.243518590927124	0.0000	0.0000	0.0000	1.2016	0.5245	-71.0794	0.0000	0.0000	-71.0803	0.2858	0.3084	-0.2222		
20.292585134506226	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0787	0.0000	0.0000	0.0000	0.0000	0.0000	-71.0756		
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_22:16:54.txt b/cflib_groundstation/logs/cflie1_2023_11_16_22:16:54.txt
new file mode 100644
index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_22:16:54.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_22:17:14.txt b/cflib_groundstation/logs/cflie1_2023_11_16_22:17:14.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bdc1bb5d08719e59638f0986f2106a5a95049071
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_22:17:14.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
#1	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
32.423585653305054	1.2182	0.5231	-71.3717	0.2931	0.0635	-0.0748	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3744		
32.48416066169739	1.2227	0.5321	-71.3742	0.3039	-0.0319	-0.0390	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3750		
32.62799620628357	1.2245	0.5370	-71.3753	0.0888	0.2990	-0.0533	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3751		
32.78058195114136	1.2236	0.5397	-71.3753	-0.2328	-0.1207	0.1244	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3752		
32.931172609329224	1.2282	0.5396	-71.3755	0.1687	0.0828	-0.0313	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3744		
33.08298373222351	1.2325	0.5458	-71.3761	0.6207	0.2475	-0.1499	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3792		
33.23620295524597	1.2250	0.5479	-71.3798	-0.1768	0.2255	-0.0314	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3847		
33.38152194023132	1.2251	0.5466	-71.3854	-0.4059	-0.1017	-0.0446	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3846		
33.532062292099	1.2270	0.5457	-71.3849	-0.0216	-0.1399	-0.0568	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3890		
33.67922282218933	1.2276	0.5507	-71.3888	0.3768	-0.1695	-0.1342	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3970		
33.83244562149048	1.2251	0.5540	-71.3967	0.1549	0.2429	-0.0154	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3938		
33.97962975502014	1.2249	0.5574	-71.3942	-0.0828	-0.1004	0.0738	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3941		
34.13090658187866	1.2244	0.5555	-71.3935	-0.3032	0.2135	-0.0836	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3951		
34.279807567596436	1.2228	0.5541	-71.3945	-0.1311	-0.2693	-0.0454	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3947		
34.45785450935364	1.2187	0.5503	-71.3951	-0.1888	0.1227	-0.0652	0.0000	0.0000	0.0000	0.0000	0.0000	-71.3977		
34.58078575134277	1.2208	0.5513	-71.3971	0.2927	-0.1377	-0.0304	0.0000	0.0000	0.0000	0.0000	0.0000	-71.4026		
34.75911021232605	1.2192	0.5486	-71.4028	0.1559	0.6850	-0.0970	0.0000	0.0000	0.0000	0.0000	0.0000	-71.4088		
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_22:19:22.txt b/cflib_groundstation/logs/cflie1_2023_11_16_22:19:22.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3792d7ce3dfd7fe92d7c06a98d531aee3cef52cd
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_2023_11_16_22:19:22.txt
@@ -0,0 +1 @@
+#Crazyflie
#Controller:Unknown
#0	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
#1	time	stateEstimate.roll	stateEstimate.pitch	stateEstimate.yaw	ctrlStdnt.r_roll	ctrlStdnt.r_pitch	ctrlStdnt.r_yaw	ctrlStdnt.rollRate	ctrlStdnt.pitchRate	ctrlStdnt.yawRate	ctrlStdnt.roll	ctrlStdnt.pitch	ctrlStdnt.yaw
35.89614295959473	1.2179	0.5413	-71.7078	-0.0445	0.0940	-0.0761	1.2174	0.5432	-71.7077	0.0000	0.0000	0.0000		
37.12311935424805	-0.0077	0.6264	-0.3125	0.0000	0.0000	-71.7075	1.2089	0.5414	-71.7104	0.0000	0.0000	-0.0000		
37.27841806411743	0.3873	-0.1482	-0.0196	0.0000	0.0000	-71.7116	1.2113	0.5403	-71.7119	0.0000	0.0000	0.0000		
37.40181636810303	-0.2357	0.0962	-0.1629	0.0000	0.0000	-71.7103	1.2175	0.5384	-71.7102	0.0000	0.0000	0.0000		
37.57459378242493	-0.2734	-0.0015	0.0686	0.0000	0.0000	-71.7107	1.2180	0.5382	-71.7103	0.0000	0.0000	0.0000		
37.70117163658142	0.6113	0.3554	0.2007	0.0000	0.0000	-71.7084	1.2223	0.5391	-71.7053	0.0000	0.0000	0.0000		
39.05183553695679	-0.1024	-0.2823	0.2685	0.0000	0.0000	-71.7036	1.2260	0.5355	-71.7054	0.0000	0.0000	0.0000		
39.26499700546265	0.2608	-0.3360	0.0564	0.0000	0.0000	-71.7046	1.2228	0.5376	-71.7078	0.0000	0.0000	0.0000		
39.4908242225647	0.0704	-0.3606	0.0969	0.0000	0.0000	-71.7108	1.2235	0.5375	-71.7119	0.0000	0.0000	0.0000		
39.717698097229004	-0.3621	-0.1963	0.0625	0.0000	0.0000	-71.7153	1.2228	0.5405	-71.7166	0.0000	0.0000	0.0000		
39.90004086494446	0.4125	-0.3304	0.2814	0.0000	0.0000	-71.7136	1.2229	0.5401	-71.7141	0.0000	0.0000	0.0000		
40.033050537109375	0.0009	-0.1905	0.0413	0.0000	0.0000	-71.7151	1.2230	0.5282	-71.7133	0.0000	0.0000	0.0000		
41.26996445655823	0.1741	0.0019	-0.2054	0.0000	0.0000	-71.7180	1.2197	0.5292	-71.7152	0.0000	0.0000	-0.0000		
41.457923889160156	-0.3805	0.1011	0.0186	0.0000	0.0000	-71.7154	1.2162	0.5331	-71.7186	0.0000	0.0000	0.0000		
41.58648490905762	0.1145	0.0864	0.0819	0.0000	0.0000	-71.7160	1.2145	0.5236	-71.7146	0.0000	0.0000	0.0000		
41.76223063468933	0.4053	-0.0473	0.3299	0.0000	0.0000	-71.7145	1.2184	0.5165	-71.7130	0.0000	0.0000	0.0000		
41.98395371437073	-0.5700	0.0339	-0.0421	0.0000	0.0000	-71.7150	1.2199	0.5222	-71.7178	0.0000	0.0000	0.0000		
42.20012068748474	-0.2940	-0.1840	-0.1318	0.0000	0.0000	-71.7207	1.2138	0.5250	-71.7200	0.0000	0.0000	0.0000		
42.33169221878052	0.2093	0.0130	0.0395	0.0000	0.0000	-71.7217	1.2121	0.5217	-71.7203	0.0000	0.0000	0.0000		
42.45584058761597	0.1713	-0.0513	0.1864	0.0000	0.0000	-71.7192	1.2088	0.5134	-71.7194	0.0000	0.0000	0.0000		
42.59270191192627	-0.1519	0.3460	0.0394	0.0000	0.0000	-71.7160	1.2111	0.5180	-71.7145	0.0000	0.0000	0.0000		
42.72163987159729	-0.2780	-0.2946	-0.0186	0.0000	0.0000	-71.7128	1.2076	0.5151	-71.7121	0.0000	0.0000	0.0000		
42.87051010131836	-0.3102	-0.0072	0.0742	0.0000	0.0000	-71.7101	1.2033	0.5164	-71.7093	0.0000	0.0000	0.0000		
43.07720232009888	-0.0900	0.0975	0.0284	0.0000	0.0000	-71.7102	1.1991	0.5161	-71.7085	0.0000	0.0000	0.0000		
43.24309492111206	0.5059	-0.1493	-0.1653	0.0000	0.0000	-71.7094	1.2027	0.5236	-71.7083	0.0000	0.0000	0.0000		
43.39058709144592	-0.3643	0.0840	0.2461	0.0000	0.0000	-71.7080	1.2036	0.5237	-71.7074	0.0000	0.0000	0.0000		
43.537984132766724	0.0714	0.0794	0.1212	0.0000	0.0000	-71.7095	1.2006	0.5221	-71.7108	0.0000	0.0000	-0.0000		
43.70337224006653	0.2189	0.0187	-0.1172	0.0000	0.0000	-71.7077	1.2032	0.5143	-71.7044	0.0000	0.0000	0.0000		
43.91804027557373	0.1208	0.1323	-0.0678	0.0000	0.0000	-71.7052	1.2022	0.5182	-71.7052	0.0000	0.0000	0.0000		
44.04738688468933	0.2067	0.1153	0.0991	0.0000	0.0000	-71.7038	1.2067	0.5234	-71.7080	0.0000	0.0000	-0.0000		
44.13166856765747	-0.3595	0.0511	-0.1900	0.0000	0.0000	-71.7081	1.2072	0.5183	-71.7111	0.0000	0.0000	-0.0000		
44.23012089729309	0.0624	0.2379	-0.0767	0.0000	0.0000	-71.7163	1.2036	0.5161	-71.7114	0.0000	0.0000	-0.0000		
44.31917977333069	0.4054	-0.0823	0.1769	0.0000	0.0000	-71.7108	1.2021	0.5136	-71.7122	0.0000	0.0000	0.0000		
44.41784334182739	0.1001	0.1860	-0.3537	0.0000	0.0000	-71.7144	1.2079	0.5155	-71.7175	0.0000	0.0000	0.0000		
44.6219379901886	0.1714	-0.3062	-0.2909	0.0000	0.0000	-71.7226	1.2046	0.5177	-71.7229	0.0000	0.0000	0.0000		
44.75458741188049	-0.5164	-0.2634	-0.1487	0.0000	0.0000	-71.7280	1.2056	0.5242	-71.7285	0.0000	0.0000	0.0000		
44.854459047317505	-0.3494	-0.3945	0.0971	0.0000	0.0000	-71.7279	1.2067	0.5227	-71.7315	0.0000	0.0000	0.0000		
44.970550775527954	0.2829	0.2924	-0.0269	0.0000	0.0000	-71.7323	1.2046	0.5224	-71.7331	0.0000	0.0000	0.0000		
45.14693593978882	0.0473	0.1967	0.0486	0.0000	0.0000	-71.7321	1.2051	0.5231	-71.7333	0.0000	0.0000	-0.0000		
45.28902745246887	0.2761	-0.2658	0.0637	0.0000	0.0000	-71.7348	1.2040	0.5208	-71.7362	0.0000	0.0000	-0.0000		
45.40206718444824	0.1974	0.1604	-0.0144	0.0000	0.0000	-71.7398	1.2107	0.5240	-71.7375	0.0000	0.0000	0.0000		
45.57373762130737	-0.4044	-0.0366	-0.0217	0.0000	0.0000	-71.7401	1.2096	0.5309	-71.7435	0.0000	0.0000	-0.0000		
45.72547721862793	0.1066	-0.8179	-0.1374	0.0000	0.0000	-71.7430	1.2087	0.5286	-71.7457	0.0000	0.0000	0.0000		
45.885191202163696	-0.6043	-0.0656	0.0251	0.0000	0.0000	-71.7440	1.2096	0.5347	-71.7446	0.0000	0.0000	0.0000		
46.05382823944092	0.3995	0.4380	0.0061	0.0000	0.0000	-71.7422	1.2041	0.5280	-71.7450	0.0000	0.0000	0.0000		
46.17833995819092	0.2813	0.2969	0.0329	0.0000	0.0000	-71.7455	1.2071	0.5322	-71.7459	0.0000	0.0000	0.0000		
46.37950825691223	-0.4911	0.1702	0.1175	0.0000	0.0000	-71.7458	1.1970	0.5347	-71.7431	0.0000	0.0000	0.0000		
46.47075414657593	0.4871	0.0694	0.2812	0.0000	0.0000	-71.7414	1.1974	0.5267	-71.7408	0.0000	0.0000	0.0000		
46.59940266609192	0.2409	0.3712	0.0819	0.0000	0.0000	-71.7405	1.1993	0.5253	-71.7391	0.0000	0.0000	0.0000		
46.805532455444336	-0.1568	-0.3568	0.0836	0.0000	0.0000	-71.7376	1.2017	0.5291	-71.7383	0.0000	0.0000	0.0000		
46.97476077079773	-0.1741	-0.5145	0.4009	0.0000	0.0000	-71.7402	1.2046	0.5321	-71.7432	0.0000	0.0000	0.0000		
47.16852927207947	-0.4443	-0.3600	0.0984	0.0000	0.0000	-71.7413	1.2028	0.5291	-71.7425	0.0000	0.0000	0.0000		
47.30298590660095	0.6763	-0.0082	-0.1776	0.0000	0.0000	-71.7368	1.1955	0.5253	-71.7375	0.0000	0.0000	0.0000		
47.437424182891846	0.0570	0.2207	0.1033	0.0000	0.0000	-71.7358	1.2004	0.5168	-71.7379	0.0000	0.0000	0.0000		
47.63218903541565	-0.0240	-0.4566	0.1115	0.0000	0.0000	-71.7353	1.2047	0.5099	-71.7346	0.0000	0.0000	0.0000		
47.886571407318115	-0.0684	-0.2112	-0.1751	0.0000	0.0000	-71.7355	1.2089	0.5107	-71.7380	0.0000	0.0000	0.0000		
48.01141166687012	-0.1876	-0.3886	-0.1778	0.0000	0.0000	-71.7406	1.2098	0.5131	-71.7423	0.0000	0.0000	0.0000		
48.123318672180176	0.6173	-0.1931	-0.0664	0.0000	0.0000	-71.7451	1.2057	0.5082	-71.7443	0.0000	0.0000	0.0000		
48.267279386520386	0.0055	0.1506	0.1199	0.0000	0.0000	-71.7417	1.2054	0.5153	-71.7452	0.0000	0.0000	-0.0000		
48.43717813491821	-0.0989	-0.2821	-0.1213	0.0000	0.0000	-71.7457	1.2041	0.5104	-71.7459	0.0000	0.0000	0.0000		
48.561588525772095	-0.0531	-0.0273	0.0450	0.0000	0.0000	-71.7459	1.2044	0.5120	-71.7488	0.0000	0.0000	0.0000		
48.693450689315796	-0.0664	-0.0710	-0.0321	0.0000	0.0000	-71.7490	1.1993	0.5182	-71.7482	0.0000	0.0000	0.0000		
49.866692543029785	0.2963	0.0244	0.0482	0.0000	0.0000	-71.7514	1.2012	0.5224	-71.7525	0.0000	0.0000	-0.0000		
50.050026178359985	0.0542	0.0423	-0.0567	0.0000	0.0000	-71.7488	1.2022	0.5204	-71.7461	0.0000	0.0000	0.0000		
50.27840280532837	-0.2352	0.1964	-0.0427	0.0000	0.0000	-71.7465	1.2020	0.5190	-71.7448	0.0000	0.0000	0.0000		
50.464136838912964	0.2158	-0.1222	-0.2841	0.0000	0.0000	-71.7478	1.2014	0.5295	-71.7497	0.0000	0.0000	0.0000		
50.705666065216064	0.3768	-0.3145	-0.0525	0.0000	0.0000	-71.7485	1.2038	0.5339	-71.7472	0.0000	0.0000	0.0000		
50.82300877571106	0.1435	0.0542	-0.1524	0.0000	0.0000	-71.7450	1.1977	0.5300	-71.7440	0.0000	0.0000	0.0000		
50.957926750183105	0.2132	-0.0667	-0.0029	0.0000	0.0000	-71.7440	1.1984	0.5318	-71.7442	0.0000	0.0000	0.0000		
51.08969235420227	-0.1125	0.0311	-0.0909	0.0000	0.0000	-71.7479	1.1971	0.5407	-71.7451	0.0000	0.0000	0.0000		
51.215086221694946	2.0824	-1.6961	2.1328	0.0000	0.0000	-69.8243	1.1923	0.4684	-70.5158	0.0000	0.0000	0.0000		
51.380048990249634	19.5388	-18.5686	-58.7336	0.0000	0.0000	-76.3401	2.0614	-0.5251	-83.3816	0.0000	0.0000	0.0000		
51.565006256103516	-10.1858	14.4732	-122.2867	0.0000	0.0000	-94.2861	1.8702	-0.5756	-105.0885	0.0000	0.0000	0.0000		
51.702115535736084	4.3175	4.0240	-175.5989	0.0000	0.0000	-120.1368	2.7343	-2.0003	-128.7513	0.0000	0.0000	0.0000		
51.77613162994385	6.4117	-2.7313	-89.9582	0.0000	0.0000	-137.2123	2.7001	-2.3897	-142.3717	0.0000	0.0000	0.0000		
51.92687702178955	1.1847	0.3312	-51.1226	0.0000	0.0000	-147.2435	2.5385	-2.4139	-149.4365	0.0000	0.0000	0.0000		
52.06871581077576	0.5829	1.2521	-36.5706	0.0000	0.0000	-152.3555	2.5061	-2.5708	-154.8783	0.0000	0.0000	0.0000		
52.2089467048645	0.8577	0.3076	-37.3667	0.0000	0.0000	-158.4059	2.1123	-2.3325	-160.7550	0.0000	0.0000	0.0000		
52.31539177894592	-0.9874	0.5143	-10.7037	0.0000	0.0000	-162.2332	2.1100	-2.4311	-163.5707	0.0000	0.0000	0.0000		
52.40903902053833	0.5534	-0.4981	-9.0916	0.0000	0.0000	-164.5468	2.0462	-2.4126	-165.0408	0.0000	0.0000	0.0000		
52.49415946006775	-9.3899	12.3404	1.8551	0.0000	0.0000	-164.7578	1.5986	-1.8693	-165.6203	0.0000	0.0000	0.0000		
52.63783359527588	-0.9919	2.8931	-24.0673	0.0000	0.0000	-167.6536	1.4195	-1.8435	-169.1051	0.0000	0.0000	0.0000		
52.76249432563782	1.3516	1.4985	-8.5210	0.0000	0.0000	-169.8013	1.3742	-1.6667	-170.1078	0.0000	0.0000	0.0000		
52.887370586395264	1.8012	-1.2126	-18.5383	0.0000	0.0000	-171.6542	1.3496	-1.6968	-172.9118	0.0000	0.0000	0.0000		
52.99748182296753	-0.4937	0.2966	-25.8218	0.0000	0.0000	-174.8257	1.2648	-1.6097	-175.5369	0.0000	0.0000	0.0000		
53.1987841129303	-0.5937	0.5220	-5.8930	0.0000	0.0000	-176.2414	0.9970	-1.4066	-178.0221	0.0000	0.0000	0.0000		
53.30669021606445	-3.3016	1.9145	-7.4980	0.0000	0.0000	-178.8742	0.9808	-1.4254	-178.5661	0.0000	0.0000	0.0000		
53.54186391830444	-1.0947	3.4441	3.3540	0.0000	0.0000	-178.2610	0.9619	-1.4157	-178.2108	0.0000	0.0000	-0.0000		
53.65797019004822	1.6529	1.6556	0.1701	0.0000	0.0000	-178.2104	0.9418	-1.4033	-178.2126	0.0000	0.0000	-0.0000		
53.92106771469116	0.7325	-0.9662	0.0739	0.0000	0.0000	-178.2132	0.9382	-1.3997	-178.2111	0.0000	0.0000	-0.0000		
54.01695942878723	-0.5933	-1.4495	0.2028	0.0000	0.0000	-178.2151	0.9334	-1.3979	-178.2172	0.0000	0.0000	-0.0000		
54.15787053108215	-0.7266	-1.0723	0.2418	0.0000	0.0000	-178.2180	0.9215	-1.3937	-178.2213	0.0000	0.0000	0.0000		
54.35016179084778	0.1861	0.1014	0.1964	0.0000	0.0000	-178.2211	0.9035	-1.4003	-178.2175	0.0000	0.0000	0.0000		
54.45707058906555	0.8898	-1.4037	-178.2254	0.0000	0.0000	0.0000	-0.0069	-0.1407	0.0075	0.8813	-1.4106	-178.2233		
54.657214879989624	0.0000	0.0000	0.0000	0.8746	-1.4023	-178.2217	0.0000	0.0000	0.0000	0.1706	-0.4704	0.0014		
54.90787220001221	0.8655	-1.4032	-178.2259	0.0000	0.0000	0.0000	0.0000	0.0000	-178.2260	0.8713	-1.4066	-178.2288		
55.114906311035156	0.0000	0.0000	0.0000	-0.3506	0.0746	0.0082	0.8692	-1.4112	-178.2296	0.0000	0.0000	0.0000		
55.31700325012207	0.0000	0.0000	-178.2283	0.8613	-1.4164	-178.2300	0.0000	0.0000	0.0000	0.2065	-0.3466	-0.0421		
55.42433786392212	0.0000	0.0000	-178.2325	0.8623	-1.4052	-178.2340	0.0000	0.0000	0.0000	0.1143	-0.2414	-0.1699		
55.62235164642334	0.0000	0.0000	-178.2351	0.8583	-1.4076	-178.2381	0.0000	0.0000	-0.0000	-0.0554	0.0191	-0.0397		
55.85793423652649	0.0000	0.0000	-178.2387	0.8546	-1.4111	-178.2401	0.0000	0.0000	0.0000	-0.1244	-0.3521	-0.0450		
56.05286478996277	0.0000	0.0000	-178.2384	0.8511	-1.4114	-178.2393	0.0000	0.0000	-0.0000	-0.3319	-0.1936	0.1772		
56.21697974205017	0.0000	0.0000	-178.2371	0.8479	-1.4109	-178.2409	0.0000	0.0000	0.0000	0.1299	0.6586	-0.0521		
57.43729615211487	0.0000	0.0000	-178.2426	0.8469	-1.4091	-178.2416	0.0000	0.0000	0.0000	0.1184	0.0036	-0.2456		
57.55653762817383	0.0000	0.0000	-178.2436	0.8417	-1.4003	-178.2441	0.0000	0.0000	0.0000	-0.0217	-0.3376	0.1890		
57.754759550094604	0.0000	0.0000	-178.2418	0.8398	-1.3900	-178.2430	0.0000	0.0000	0.0000	-0.3175	-0.2640	-0.1222		
57.9229199886322	0.0000	0.0000	-178.2444	0.8409	-1.3902	-178.2453	0.0000	0.0000	0.0000	0.1483	0.3139	0.1228		
58.01635766029358	0.0000	0.0000	-178.2436	0.8349	-1.3883	-178.2431	0.0000	0.0000	0.0000	0.3106	0.1777	-0.1654		
59.23316979408264	0.0000	0.0000	-178.2420	0.8343	-1.3859	-178.2442	0.0000	0.0000	0.0000	-0.2100	-1.2828	0.1833		
59.41419863700867	0.0000	0.0000	-178.2487	0.8306	-1.3803	-178.2468	0.0000	0.0000	0.0000	-0.3725	0.1864	0.3476		
60.67439794540405	0.0000	0.0000	-178.2456	0.8261	-1.3789	-178.2470	0.0000	0.0000	0.0000	0.1221	0.4796	0.0793		
60.93216133117676	0.0000	0.0000	-178.2456	0.8219	-1.3767	-178.2459	0.0000	0.0000	0.0000	0.1228	-0.4579	-0.0818		
61.1472430229187	0.0000	0.0000	-178.2470	0.8153	-1.3797	-178.2495	0.0000	0.0000	-0.0000	0.2412	0.5403	0.1036		
61.371182680130005	0.0000	0.0000	-178.2448	0.8103	-1.3867	-178.2438	0.0000	0.0000	-0.0000	-0.4283	-0.3689	-0.0738		
61.56784224510193	0.0000	0.0000	-178.2448	0.8083	-1.3764	-178.2487	0.0000	0.0000	0.0000	0.0072	-0.1544	0.0706		
62.82209610939026	0.0000	0.0000	-178.2495	0.8019	-1.3741	-178.2482	0.0000	0.0000	0.0000	0.0532	0.1086	-0.3095		
63.03911828994751	0.0000	0.0000	-178.2538	0.7985	-1.3774	-178.2546	0.0000	0.0000	0.0000	0.2925	-0.3979	0.0155		
63.22396755218506	0.0000	0.0000	-178.2556	0.7954	-1.3846	-178.2563	0.0000	0.0000	0.0000	0.1980	0.2837	0.0679		
63.40099239349365	0.0000	0.0000	-178.2576	0.7994	-1.3805	-178.2570	0.0000	0.0000	-0.0000	-0.3786	-0.4552	-0.0001		
63.5550639629364	0.0000	0.0000	-178.2593	0.7999	-1.3769	-178.2622	0.0000	0.0000	0.0000	-0.0909	0.7177	-0.2007		
64.68085217475891	0.0000	0.0000	-178.2627	0.7969	-1.3831	-178.2640	0.0000	0.0000	-0.0000	-0.1470	0.2479	0.2452		
64.89530944824219	0.0000	0.0000	-178.2637	0.7968	-1.3822	-178.2617	0.0000	0.0000	0.0000	0.1773	-0.1484	0.0866		
65.04876947402954	0.0000	0.0000	-178.2565	0.7931	-1.3829	-178.2581	0.0000	0.0000	0.0000	0.3630	-0.0336	0.0041		
65.23927521705627	0.0000	0.0000	-178.2539	0.7897	-1.3889	-178.2558	0.0000	0.0000	0.0000	-0.0066	-0.3813	0.1086		
65.42179298400879	0.0000	0.0000	-178.2616	0.7889	-1.3909	-178.2620	0.0000	0.0000	-0.0000	-0.0931	-0.6067	0.1794		
65.58676266670227	0.0000	0.0000	-178.2578	0.7870	-1.3884	-178.2572	0.0000	0.0000	0.0000	-0.2627	0.5294	-0.2997		
65.8072464466095	0.0000	0.0000	-178.2581	0.7838	-1.3851	-178.2603	0.0000	0.0000	0.0000	0.1262	0.3303	0.1892		
66.0196943283081	0.0000	0.0000	-178.2559	0.7804	-1.3904	-178.2546	0.0000	0.0000	0.0000	0.0015	0.0866	0.0301		
66.13705062866211	0.0000	0.0000	-178.2558	0.7766	-1.3939	-178.2506	0.0000	0.0000	0.0000	-0.2914	-0.5342	-0.2511		
66.35749840736389	0.0000	0.0000	-178.2529	0.7759	-1.3958	-178.2532	0.0000	0.0000	0.0000	0.0555	-0.1360	-0.1628		
67.5354311466217	0.0000	0.0000	-178.2512	0.7799	-1.3944	-178.2518	0.0000	0.0000	-0.0000	0.0000	0.0000	-178.2531		
67.68283271789551	0.7801	-1.3900	-178.2550	0.0000	0.0000	0.0000	0.0000	0.0000	-178.2517	0.7781	-1.3923	-178.2488		
67.88999390602112	0.0000	0.0000	0.0000	-0.1722	-0.0343	-0.0039	0.0000	0.0000	-178.2457	0.7797	-1.3927	-178.2439		
68.07801914215088	0.0837	0.0301	-0.0055	0.0000	0.0000	-178.2427	0.7875	-1.3746	-178.2596	0.0000	0.0000	0.0000		
68.27010154724121	-0.1158	0.0611	0.0698	0.0000	0.0000	-178.2621	0.7898	-1.3740	-178.2621	0.0000	0.0000	0.0000		
68.46319580078125	0.1458	0.2123	-0.0757	0.0000	0.0000	-178.2659	0.7895	-1.3779	-178.2664	0.1319	-0.0994	0.1111		
68.62761425971985	0.0000	0.0000	-178.2655	0.7854	-1.3724	-178.2669	0.0000	0.0000	-0.0000	-0.0902	-0.1941	0.2365		
68.72082662582397	0.0000	0.0000	-178.2714	0.7861	-1.3713	-178.2713	0.0000	0.0000	0.0000	-0.1570	-0.0255	-0.0293		
68.96625232696533	0.0000	0.0000	-178.2686	0.7882	-1.3668	-178.2665	0.0000	0.0000	0.0000	0.7848	-1.3808	-178.2693		
69.13876795768738	0.0000	0.0000	-178.2654	0.7808	-1.3756	-178.2669	0.0000	0.0000	-0.0000	0.0378	-0.0646	0.0257		
69.30087041854858	0.7828	-1.3734	-178.2705	0.7695	-1.4038	-178.2712	0.5210	0.4189	0.0481	0.7677	-1.4035	-178.2696		
69.52249670028687	0.0000	0.0000	-0.0000	0.3009	-0.4803	0.0484	0.0000	0.0000	-178.2708	0.0000	0.0000	-0.0000		
69.70498991012573	0.7663	-1.4046	-178.2657	0.0000	0.0000	0.0000	0.0000	0.0000	-178.2649	0.7671	-1.4045	-178.2642		
69.89808464050293	0.2638	0.0976	-0.0119	0.7705	-1.4034	-178.2672	0.0000	0.0000	0.0000	0.1548	-0.0705	-0.0185		
70.11953401565552	0.7725	-1.4120	-178.2663	0.0000	0.0000	0.0000	0.0447	-0.4701	-0.0164	0.7734	-1.4095	-178.2691		
70.29445886611938	0.0000	0.0000	0.0000	-0.0154	-0.2840	-0.0732	0.7818	-1.4047	-178.2798	0.0000	0.0000	0.0000		
70.42951273918152	0.0000	0.0000	-178.2811	0.7844	-1.4030	-178.2818	0.0000	0.0000	0.0000	0.0000	0.0000	-178.2870		
70.65892052650452	0.7831	-1.3971	-178.2896	0.0000	0.0000	0.0000	0.1221	-0.2991	0.0097	0.7863	-1.3962	-178.2903		
70.88668274879456	0.0000	0.0000	-0.0000	0.0636	-0.0523	-0.2701	0.0000	0.0000	-178.2917	0.7833	-1.3928	-178.2908		
71.11897659301758	0.0000	0.0000	0.0000	0.0000	0.0000	-178.2884	0.7869	-1.3812	-178.2908	0.0000	0.0000	0.0000		
71.29721069335938	0.0000	0.0000	-0.0000	-0.2470	-0.0283	0.0728	0.0000	0.0000	-178.3098	0.7769	-1.3929	-178.3089		
71.60447120666504	0.0000	0.0000	0.0000	-0.2019	0.0122	-0.0765	0.0000	0.0000	-178.3049	0.7784	-1.3950	-178.3053		
71.80947422981262	0.0000	0.0000	0.0000	0.1513	0.5049	-0.0336	0.0000	0.0000	-178.3055	0.7821	-1.3919	-178.3068		
71.91871976852417	0.0000	0.0000	0.0000	0.7781	-1.3986	-178.3079	0.0000	0.0000	0.0000	0.1016	-0.1432	0.1021		
72.01449847221375	0.0000	0.0000	-178.3106	0.7809	-1.4016	-178.3093	-0.1719	-0.3356	0.0431	0.0000	0.0000	-178.3102		
72.2190203666687	0.7780	-1.4060	-178.3115	0.0000	0.0000	-0.0000	-0.2561	-0.0140	-0.0205	0.0000	0.0000	-178.3124		
72.3852481842041	0.7791	-1.4138	-178.3133	0.0000	0.0000	-0.0000	0.0000	0.0000	-178.3124	0.7826	-1.4191	-178.3128		
72.49474287033081	-0.1250	-0.0399	-0.0225	0.0000	0.0000	-178.3152	0.0000	0.0000	0.0000	0.1993	0.2044	-0.0486		
72.70555782318115	0.7809	-1.4226	-178.3165	0.0000	0.0000	0.0000	0.0918	-0.3218	0.0217	0.0000	0.0000	-178.3155		
72.87373113632202	0.7814	-1.4331	-178.3138	0.0000	0.0000	-0.0000	-0.0634	-0.1993	-0.0548	0.0000	0.0000	-178.3132		
73.0342104434967	0.7859	-1.4270	-178.3111	0.0000	0.0000	0.0000	0.0000	0.0000	-178.3124	0.7806	-1.4198	-178.3024		
73.22603011131287	0.0000	0.0000	0.0000	-0.1137	-0.1403	0.0645	0.0000	0.0000	-178.2984	0.7846	-1.4240	-178.2989		
73.4794397354126	0.0000	0.0000	0.0000	-0.0041	-0.5429	0.1201	0.0000	0.0000	-178.2992	0.7850	-1.4195	-178.2971		
73.61852145195007	0.0000	0.0000	0.0000	0.0000	0.0000	-178.2943	0.7903	-1.4168	-178.2924	0.0000	0.0000	0.0000		
73.84194755554199	0.0382	0.2046	-0.2283	0.7910	-1.4088	-178.2915	0.0000	0.0000	-0.0000	0.3700	-0.0998	0.1596		
73.99756622314453	0.7867	-1.4091	-178.2895	0.0000	0.0000	0.0000	0.1677	0.2564	0.0329	0.7882	-1.3985	-178.2925		
74.13572406768799	0.0000	0.0000	0.0000	0.2474	-0.5010	0.2334	0.0000	0.0000	-178.2930	0.7812	-1.3955	-178.2914		
74.23395371437073	0.0000	0.0000	0.0000	-0.3309	0.2501	0.1405	0.0000	0.0000	-178.2936	0.7785	-1.3995	-178.2957		
74.45452213287354	0.0000	0.0000	0.0000	-0.1243	0.6863	0.0593	0.0000	0.0000	-178.2990	0.7799	-1.3957	-178.2975		
74.5616340637207	0.2334	-0.2415	-0.0966	0.7776	-1.3937	-178.2974	0.0000	0.0000	0.0000	0.0570	-0.8013	0.0650		
74.63618922233582	0.0000	0.0000	-178.2950	0.7757	-1.4008	-178.2946	0.0000	0.0000	0.0000	-0.2724	0.1029	0.0016		
74.84298872947693	0.0000	0.0000	-178.2925	0.7765	-1.4071	-178.2902	0.0000	0.0000	-0.0000	0.0000	0.0000	-178.2912		
75.02955794334412	0.7706	-1.3964	-178.2963	0.9497	-1.0663	0.1446	0.7741	-1.3923	-178.2967	0.0000	0.0000	0.0000		
75.16707444190979	0.0226	-0.8802	0.1550	0.0000	0.0000	-178.2981	0.7738	-1.4095	-178.2974	0.0000	0.0000	0.0000		
75.30642437934875	0.0000	0.0000	-178.2966	0.7724	-1.4123	-178.2967	0.0000	0.0000	-0.0000	0.7634	-1.4037	-178.3023		
75.46089506149292	0.0000	0.0000	0.0000	0.0000	0.0000	-178.3087	0.7637	-1.3958	-178.3066	0.0000	0.0000	0.0000		
75.57302331924438	0.0217	-0.2870	-0.1031	0.0000	0.0000	-178.3060	0.7678	-1.3956	-178.3084	0.0000	0.0000	0.0000		
75.74690055847168	-0.6551	0.1300	0.0812	0.0000	0.0000	-178.3066	0.7647	-1.4049	-178.3081	0.0000	0.0000	0.0000		
75.96526551246643	0.0000	0.0000	-178.3045	0.7638	-1.4027	-178.3041	0.0000	0.0000	-178.3042	0.7649	-1.4008	-178.3032		
76.18152141571045	0.0000	0.0000	0.0000	0.0000	0.0000	-178.3040	0.7638	-1.4040	-178.3042	0.0000	0.0000	0.0000		
76.3999764919281	0.7590	-1.4111	-178.3055	0.0000	0.0000	0.0000	0.3221	-0.3308	-0.2250	0.0000	0.0000	-178.3062		
76.5979392528534	0.7539	-1.4008	-178.3097	0.4218	-0.1840	-0.0120	0.7631	-1.4058	-178.3099	0.0000	0.0000	-0.0000		
77.77621388435364	0.7585	-1.4064	-178.3106	0.0000	0.0000	0.0000	0.0554	0.3644	0.0561	0.7578	-1.4031	-178.3080		
78.03555154800415	0.3769	-0.2066	-0.0384	0.0000	0.0000	-178.3081	0.7633	-1.4005	-178.3070	0.0000	0.0000	0.0000		
78.25041604042053	-0.0362	-0.0703	0.0171	0.0000	0.0000	-178.3102	0.7700	-1.3982	-178.3112	0.0000	0.0000	0.0000		
78.4268434047699	-0.3937	0.0725	0.2110	0.0000	0.0000	-178.3113	0.7698	-1.4012	-178.3078	0.0000	0.0000	0.0000		
78.62238502502441	-0.0698	-0.0338	0.2043	0.0000	0.0000	-178.3032	0.7641	-1.3996	-178.3031	0.0000	0.0000	0.0000		
78.77054047584534	0.2438	0.2060	0.1108	0.0000	0.0000	-178.3078	0.7683	-1.3946	-178.3082	0.0000	0.0000	-0.0000		
78.94969940185547	-0.4293	0.5567	-0.0801	0.0000	0.0000	-178.3094	0.7734	-1.3873	-178.3111	0.0000	0.0000	0.0000		
79.15120005607605	0.1370	0.1918	-0.0735	0.0000	0.0000	-178.3087	0.7689	-1.3922	-178.3107	0.0000	0.0000	-0.0000		
79.33576846122742	0.5192	-0.4060	0.0274	0.0000	0.0000	-178.3114	0.7804	-1.3972	-178.3107	0.0000	0.0000	0.0000		
79.50435972213745	0.0000	0.0000	-178.3120	0.7767	-1.4004	-178.3110	0.0000	0.0000	0.0000	0.2839	0.1320	-0.1432		
79.6560571193695	0.7811	-1.4004	-178.3104	0.0000	0.0000	-178.3105	0.7823	-1.4003	-178.3107	0.0000	0.0000	0.0000		
79.83729648590088	0.0000	0.0000	-178.3140	0.7766	-1.3911	-178.3163	0.0000	0.0000	0.0000	-0.3213	0.2113	0.0549		
80.00654864311218	0.0000	0.0000	-178.3157	0.7785	-1.3865	-178.3133	0.0000	0.0000	0.0000	0.0000	0.0000	-178.3149		
80.21428513526917	0.7703	-1.3835	-178.3161	0.0000	0.0000	0.0000	0.4304	0.0964	0.0501	0.0000	0.0000	-178.3164		
80.38135409355164	0.7774	-1.3828	-178.3153	0.0000	0.0000	0.0000	-0.2923	-0.7116	-0.2125	0.0000	0.0000	-178.3204		
80.62266731262207	0.7758	-1.3767	-178.3218	0.0000	0.0000	0.0000	0.1083	0.3536	-0.2179	0.0000	0.0000	-178.3195		
80.78201818466187	0.7782	-1.3780	-178.3221	0.0000	0.0000	-0.0000	-0.1235	0.0733	-0.0913	0.7813	-1.3809	-178.3236		
80.95313549041748	0.0000	0.0000	0.0000	0.2711	-0.2156	-0.2102	0.0000	0.0000	-178.3230	0.7803	-1.3869	-178.3238		
81.00229287147522	0.0000	0.0000	0.0000	-0.2477	0.1959	0.0931	0.0000	0.0000	-178.3198	0.7791	-1.3953	-178.3205		
81.22381830215454	0.0000	0.0000	0.0000	-0.2441	-0.2125	-0.2491	0.0000	0.0000	-178.3184	0.7774	-1.3864	-178.3213		
81.39504075050354	0.0000	0.0000	0.0000	0.2725	0.3339	0.0931	0.0000	0.0000	-178.3235	0.7766	-1.3858	-178.3234		
81.57981562614441	0.0000	0.0000	0.0000	-0.0826	0.0680	0.0103	0.0000	0.0000	-178.3270	0.7692	-1.3925	-178.3280		
81.74773621559143	0.0000	0.0000	0.0000	-0.2542	-0.0188	0.1694	0.0000	0.0000	-178.3278	0.7703	-1.3892	-178.3273		
81.93643498420715	0.0000	0.0000	0.0000	-0.1854	0.1409	0.0307	0.0000	0.0000	-178.3260	0.7752	-1.3926	-178.3255		
82.0937271118164	0.0000	0.0000	0.0000	-0.1121	-0.3882	0.0687	0.0000	0.0000	-178.3264	0.7755	-1.3944	-178.3264		
82.35319757461548	0.0000	0.0000	0.0000	0.1036	0.1835	0.0887	0.0000	0.0000	-178.3255	0.7732	-1.3970	-178.3228		
82.5772008895874	0.0000	0.0000	-0.0000	0.0546	-0.0567	-0.0386	0.0000	0.0000	-178.3212	0.7721	-1.4074	-178.3197		
82.75876045227051	0.0000	0.0000	0.0000	-0.0599	-1.0039	-0.0420	0.0000	0.0000	-178.3216	0.7697	-1.4013	-178.3192		
82.92208957672119	0.0000	0.0000	-178.3211	0.7628	-1.4043	-178.3216	-0.2217	-0.0502	-0.1156	0.7652	-1.4115	-178.3173		
83.07215857505798	0.0000	0.0000	0.0000	0.0846	0.1939	-0.0485	0.0000	0.0000	-178.3160	0.7704	-1.4172	-178.3154		
83.23130965232849	0.0000	0.0000	0.0000	-0.0430	0.1319	0.2216	0.2331	-0.4426	-0.1431	0.0000	0.0000	-178.3035		
83.36383819580078	0.0000	0.0000	0.0000	-0.0050	-0.1606	-0.2232	0.7864	-1.3878	-178.3114	0.4236	-0.6141	-0.1204		
83.58104586601257	0.7831	-1.3871	-178.3161	0.0000	0.0000	-0.0000	0.2511	0.6451	-0.1907	0.7815	-1.3780	-178.3156		
83.67524003982544	0.0000	0.0000	-0.0000	0.0000	0.0000	-178.3162	0.7793	-1.3728	-178.3157	0.0000	0.0000	-0.0000		
83.84941530227661	-0.1498	0.2531	-0.2246	0.0000	0.0000	-178.3153	0.7794	-1.3774	-178.3172	-0.1324	0.2294	-0.1535		
85.14751029014587	0.7817	-1.3732	-178.3189	0.0000	0.0000	-0.0000	0.0000	0.0000	-178.3195	0.7766	-1.3746	-178.3216		
85.25896143913269	0.0000	0.0000	0.0000	0.1966	-0.0884	0.2334	0.0000	0.0000	-178.3210	0.7746	-1.3680	-178.3193		
85.47798180580139	0.0000	0.0000	0.0000	0.2405	-0.3349	-0.0653	0.0000	0.0000	-178.3216	0.7765	-1.3659	-178.3205		
85.71069025993347	0.0000	0.0000	0.0000	-0.0537	0.0585	0.0765	0.0000	0.0000	-178.3219	0.0000	0.0000	0.0000		
85.92883920669556	0.0000	0.0000	-178.3233	0.7764	-1.3647	-178.3226	0.0000	0.0000	0.0000	0.1299	-0.3789	-0.0851		
86.12022542953491	0.0000	0.0000	-178.3235	0.7758	-1.3646	-178.3186	0.0000	0.0000	0.0000	-0.1341	-0.2943	0.0191		
86.29813623428345	0.0000	0.0000	-178.3217	0.7798	-1.3591	-178.3260	0.0000	0.0000	0.0000	0.0000	0.0000	-178.3257		
86.49449682235718	0.7777	-1.3625	-178.3272	0.0000	0.0000	0.0000	0.0000	0.0000	-178.3288	0.7800	-1.3591	-178.3321		
86.67964911460876	0.0000	0.0000	0.0000	-0.0292	-0.0889	0.0674	0.0000	0.0000	-178.3339	0.0000	0.0000	0.0000		
86.80997037887573	0.3171	0.1801	-0.2285	0.0000	0.0000	-178.3365	0.7825	-1.3710	-178.3371	0.0000	0.0000	0.0000		
87.04366445541382	0.0000	0.0000	-128.6864	1.2703	0.0260	-68.4371	4.9153	-0.1038	923.4512	-0.2899	-0.6697	71.2768		
87.17812943458557	0.0000	0.0000	-0.0000	-13.9514	5.6377	893.3353	0.0000	0.0000	146.4543	1.2532	-1.2161	-157.2707		
87.34427094459534	0.0000	0.0000	0.0000	-12.2599	-8.7361	863.2298	0.0000	0.0000	-81.2161	0.6923	0.3292	-27.0269		
88.60505938529968	0.0000	0.0000	0.0000	-3.3731	-6.1703	823.3040	0.0000	0.0000	42.2856	-0.2301	-0.9193	93.6374		
88.80311560630798	0.0000	0.0000	0.0000	-9.5935	-2.3794	781.5403	0.0000	0.0000	162.5342	1.3061	-1.1083	-148.3265		
88.94886231422424	0.0000	0.0000	0.0000	-7.9632	-6.8370	753.2855	0.0000	0.0000	-84.9375	0.8553	0.3064	-37.4596		
90.20691728591919	0.0000	0.0000	0.0000	0.0000	0.0000	26.6775	-0.3154	-0.6006	72.4923	0.0000	0.0000	0.0000		
90.5017580986023	0.0000	0.0000	131.4735	0.8328	-1.4145	175.5173	0.0000	0.0000	0.0000	-5.4869	-6.1784	672.7451		
90.69410610198975	0.0000	0.0000	-125.1490	1.3891	-0.1261	-82.7956	-3.5504	-6.0762	648.1135	0.0000	0.0000	-28.2501		
90.85599708557129	0.0854	0.2242	12.4880	0.0000	0.0000	0.0000	0.0000	0.0000	67.4166	-0.1598	-1.0810	106.5355		
90.97574090957642	0.0000	0.0000	0.0000	-4.3828	-6.4234	596.5977	1.1012	-1.3009	-165.7516	-3.7789	-6.0580	571.8603		
91.09508943557739	0.0000	0.0000	-115.3398	0.0000	0.0000	0.0000	0.0000	0.0000	-33.2838	0.2446	0.3574	1.1249		
91.33821392059326	0.0000	0.0000	-0.0000	-3.5132	-5.7555	524.4433	0.0000	0.0000	47.3838	-0.3699	-0.6764	80.2593		
91.56223392486572	-3.4672	-6.2255	499.9836	0.0000	0.0000	122.3804	0.4536	-1.4684	153.6706	0.0000	0.0000	0.0000		
91.77186489105225	-3.1565	-5.4725	475.2299	1.4483	-0.9317	-134.6782	0.0000	0.0000	0.0000	-2.8911	-5.2000	452.0175		
91.92018270492554	0.0000	0.0000	-96.6207	1.3097	0.1174	-68.3358	0.0000	0.0000	0.0000	-4.1234	-4.0388	429.4240		
92.12518978118896	0.0000	0.0000	-30.4385	0.3179	0.4344	-3.6299	0.0000	0.0000	0.0000	-3.4894	-4.2465	407.3349		
92.23461985588074	0.0000	0.0000	30.6841	-0.3802	-0.2552	56.1487	-2.9055	-4.3859	385.0771	0.0000	0.0000	90.1624		
92.38354682922363	-0.1538	-1.1883	114.1485	0.0000	0.0000	0.0000	-2.7528	-3.1286	361.8447	0.0000	0.0000	146.0580		
92.54394769668579	0.7125	-1.4974	168.4707	0.0000	0.0000	0.0000	-3.3494	-3.8554	337.1490	0.0000	0.0000	-163.0984		
92.78188896179199	1.4181	-1.0441	-142.1367	-0.0847	-1.2793	121.3558	0.0000	0.0000	135.5504	0.2928	-1.4599	145.6461		
92.9207968711853	0.0000	0.0000	-0.0000	-1.3153	-1.5011	145.5425	0.0000	0.0000	158.5562	0.6711	-1.4926	167.2302		
93.13589978218079	0.0000	0.0000	0.0000	0.0000	0.0000	177.6798	0.9700	-1.4127	-175.0222	0.0000	0.0000	0.0000		
93.24364447593689	0.0000	0.0000	-165.9087	1.1932	-1.2764	-159.9138	0.0000	0.0000	0.0000	0.0000	0.0000	-152.8911		
93.470458984375	1.3369	-1.1188	-148.1957	0.0000	0.0000	-142.6000	1.4248	-0.9823	-139.1066	-0.4493	-0.0180	43.9810		
93.58525466918945	0.0000	0.0000	-135.3241	1.4678	-0.8845	-133.0651	0.0000	0.0000	-0.0000	0.0000	0.0000	-130.7507		
93.78350591659546	1.4846	-0.8201	-129.5305	0.0000	0.0000	0.0000	-0.3021	-0.2405	10.6231	0.0000	0.0000	-128.5562		
94.01531267166138	1.4939	-0.8038	-128.3968	0.0000	0.0000	0.0000	0.0000	0.0000	-128.8164	1.4788	-0.8088	-129.2265		
94.16811633110046	0.0000	0.0000	0.0000	0.0000	0.0000	-129.4834	1.4684	-0.8071	-129.4249	0.6720	0.0530	2.0082		
94.28475522994995	0.0000	0.0000	-129.2666	1.4669	-0.7953	-129.2622	0.0000	0.0000	0.0000	0.0691	0.1088	-0.5039		
94.51319169998169	0.0000	0.0000	-129.3201	1.4709	-0.7947	-129.3221	0.0000	0.0000	0.0000	0.0000	0.0000	-129.3049		
94.65972256660461	1.4723	-0.7926	-129.3151	0.0000	0.0000	0.0000	-0.3741	0.2568	0.1237	0.0000	0.0000	-129.3185		
94.7978401184082	1.4651	-0.7828	-129.3126	0.0000	0.0000	0.0000	0.4096	-0.2345	-0.2181	0.0000	0.0000	-129.3171		
94.9912383556366	1.4570	-0.7788	-129.3153	0.6140	0.2060	0.0128	0.0000	0.0000	-129.3065	1.4387	-0.7343	-129.3056		
95.13541984558105	-0.1448	-0.0941	0.1484	1.4421	-0.7247	-129.3066	0.0000	0.0000	-0.0000	1.2163	-0.2521	0.0293		
95.29765224456787	0.0000	0.0000	-129.3066	1.4334	-0.7183	-129.3078	0.0000	0.0000	-0.0000	0.6673	-0.4487	0.0051		
95.54158520698547	0.0000	0.0000	-129.3065	0.0000	0.0000	-0.0000	0.0000	0.0000	-129.3051	1.4366	-0.6923	-129.3121		
95.72973728179932	0.0000	0.0000	-0.0000	-0.7258	0.2701	0.1352	1.4429	-0.6921	-129.3139	0.0000	0.0000	-129.3152		
95.8356032371521	1.4396	-0.6850	-129.3138	0.0000	0.0000	0.0000	0.8721	0.0285	0.0916	1.4352	-0.6848	-129.3101		
96.02599501609802	0.0000	0.0000	0.0000	0.0000	0.0000	-129.3085	1.4394	-0.6952	-129.3096	0.0000	0.0000	0.0000		
96.1900520324707	-0.4474	-0.2592	0.1736	0.0000	0.0000	-129.3102	1.4389	-0.6992	-129.3103	0.0000	0.0000	0.0000		
96.40444421768188	-0.3332	-0.2162	0.0502	0.0000	0.0000	-129.3127	1.4470	-0.6909	-129.3115	0.0000	0.0000	0.0000		
96.51108312606812	0.1732	-0.3285	-0.1386	0.0000	0.0000	-129.3176	1.4468	-0.6921	-129.3154	0.0000	0.0000	0.0000		
96.66659832000732	0.0000	0.0000	-129.3158	1.4473	-0.6963	-129.3155	0.0000	0.0000	0.0000	0.0000	0.0000	-129.3190		
96.87290000915527	1.4430	-0.6940	-129.3187	0.1306	-0.2911	-0.0284	0.0000	0.0000	-129.3216	0.0000	0.0000	0.0000		
97.01403999328613	-0.1840	-0.1973	0.0456	0.0000	0.0000	-129.3246	1.4405	-0.6908	-129.3253	0.0000	0.0000	0.0000		
97.1252932548523	-0.2624	-0.1315	0.0477	0.0000	0.0000	-129.3238	0.0000	0.0000	0.0000	0.0000	0.0000	-129.3207		
97.32253384590149	1.4355	-0.6855	-129.3224	0.0000	0.0000	0.0000	0.2303	-0.3402	-0.0092	0.0000	0.0000	-129.3199		
97.43429207801819	1.4156	-0.6941	-129.3182	0.0000	0.0000	0.0000	-1.2672	3.0821	0.0895	0.0000	0.0000	-129.3154		
97.57927632331848	1.4642	-0.6967	-129.3206	0.0000	0.0000	0.0000	-8.2690	1.9977	-0.1494	0.0000	0.0000	-129.3204		
97.75432348251343	1.4590	-0.6986	-129.3197	0.0000	0.0000	0.0000	-2.0984	-1.0835	0.0826	0.0000	0.0000	-129.3166		
97.88882756233215	0.0000	0.0000	0.0000	4.6115	-2.2356	0.1770	0.0000	0.0000	-129.3159	1.4042	-0.6573	-129.3140		
99.1189980506897	4.4944	-0.2346	0.0846	1.3987	-0.6757	-129.3102	0.0000	0.0000	-0.0000	0.6634	1.4749	0.0081		
99.33837532997131	0.0000	0.0000	-129.3116	1.4110	-0.6868	-129.3095	0.0000	0.0000	0.0000	-2.6372	0.8679	-0.1223		
99.50079250335693	0.0000	0.0000	-129.3124	1.4286	-0.6748	-129.3122	0.0000	0.0000	0.0000	0.0000	0.0000	-129.3154		
99.70627045631409	1.4249	-0.6719	-129.3128	0.0000	0.0000	0.0000	0.6138	-0.9690	0.2655	0.0000	0.0000	-129.3142		
99.9179618358612	1.4097	-0.6606	-129.3132	0.0000	0.0000	0.0000	1.0978	0.0093	0.0575	0.0000	0.0000	-129.3114		
100.09302616119385	1.4051	-0.6757	-129.3095	0.3030	0.8673	0.2342	1.4131	-0.6794	-129.3052	0.0000	0.0000	0.0000		
100.24699997901917	-0.8278	0.1597	0.3899	1.4173	-0.6711	-129.3055	0.0000	0.0000	0.0000	-0.4108	-0.8886	-0.0219		
100.36936736106873	0.0000	0.0000	-129.3072	1.4146	-0.6765	-129.3121	0.0000	0.0000	0.0000	0.5933	-0.5352	-0.0452		
100.50388312339783	0.0000	0.0000	-129.3128	1.4156	-0.6723	-129.3129	0.0000	0.0000	-0.0000	0.2249	0.4658	-0.2539		
100.70163702964783	0.0000	0.0000	-129.3140	1.4192	-0.6786	-129.3153	0.0000	0.0000	0.0000	0.0000	0.0000	-129.3173		
100.87702584266663	1.4270	-0.6665	-129.3194	0.0000	0.0000	0.0000	0.1041	-0.3275	-0.2423	0.0000	0.0000	-129.3251		
101.08429503440857	1.4263	-0.6643	-129.3205	0.0000	0.0000	-0.0000	0.1049	-0.6600	0.0858	0.0000	0.0000	-129.3201		
101.27272582054138	1.4245	-0.6631	-129.3195	0.0000	0.0000	0.0000	0.0828	-0.0688	-0.3183	0.0000	0.0000	-129.3211		
101.4818549156189	1.4271	-0.6584	-129.3209	0.0000	0.0000	0.0000	0.0000	0.0000	-129.3211	1.4325	-0.6617	-129.3245		
101.61418771743774	0.0000	0.0000	0.0000	-0.0118	0.1549	0.1196	1.4345	-0.6632	-129.3256	0.0000	0.0000	0.0000		
101.83162093162537	0.0000	0.0000	-129.3263	1.4302	-0.6603	-129.3253	0.0000	0.0000	-0.0000	0.0000	0.0000	-129.3290		
\ No newline at end of file
diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_20:51:49.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_20:51:49.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_20:51:49.txt
@@ -0,0 +1,506 @@
+Log ID	Type	Group	Identifier Name	
+0	1	gyro	xRaw	
+1	1	gyro	yRaw	
+2	1	gyro	zRaw	
+3	6	gyro	xVariance	
+4	6	gyro	yVariance	
+5	6	gyro	zVariance	
+108	6	gyro	x	
+109	6	gyro	y	
+110	6	gyro	z	
+6	10	pwm	m1_pwm	
+7	10	pwm	m2_pwm	
+8	10	pwm	m3_pwm	
+9	10	pwm	m4_pwm	
+10	9	crtp	rxRate	
+11	9	crtp	txRate	
+12	6	pm	vbat	
+13	9	pm	vbatMV	
+14	6	pm	extVbat	
+15	9	pm	extVbatMV	
+16	6	pm	extCurr	
+17	6	pm	chargeCurrent	
+18	0	pm	state	
+19	8	pm	batteryLevel	
+20	8	radio	rssi	
+21	8	radio	isConnected	
+22	0	sys	armed	
+38	8	sys	canfly	
+39	8	sys	isFlying	
+40	8	sys	isTumbled	
+23	9	extrx	ch0	
+24	9	extrx	ch1	
+25	9	extrx	ch2	
+26	9	extrx	ch3	
+27	9	extrx	thrust	
+28	6	extrx	roll	
+29	6	extrx	pitch	
+30	6	extrx	yaw	
+31	10	memTst	errCntW	
+32	9	range	front	
+33	9	range	back	
+34	9	range	up	
+35	9	range	left	
+36	9	range	right	
+37	9	range	zrange	
+41	6	ext_pos	X	
+42	6	ext_pos	Y	
+43	6	ext_pos	Z	
+44	6	locSrv	x	
+45	6	locSrv	y	
+46	6	locSrv	z	
+47	6	locSrv	qx	
+48	6	locSrv	qy	
+49	6	locSrv	qz	
+50	6	locSrv	qw	
+51	9	locSrvZ	tick	
+52	6	pid_attitude	roll_outP	
+53	6	pid_attitude	roll_outI	
+54	6	pid_attitude	roll_outD	
+55	6	pid_attitude	pitch_outP	
+56	6	pid_attitude	pitch_outI	
+57	6	pid_attitude	pitch_outD	
+58	6	pid_attitude	yaw_outP	
+59	6	pid_attitude	yaw_outI	
+60	6	pid_attitude	yaw_outD	
+61	6	pid_rate	roll_outP	
+62	6	pid_rate	roll_outI	
+63	6	pid_rate	roll_outD	
+64	6	pid_rate	pitch_outP	
+65	6	pid_rate	pitch_outI	
+66	6	pid_rate	pitch_outD	
+67	6	pid_rate	yaw_outP	
+68	6	pid_rate	yaw_outI	
+69	6	pid_rate	yaw_outD	
+70	6	sensfusion6	qw	
+71	6	sensfusion6	qx	
+72	6	sensfusion6	qy	
+73	6	sensfusion6	qz	
+74	6	sensfusion6	gravityX	
+75	6	sensfusion6	gravityY	
+76	6	sensfusion6	gravityZ	
+77	6	sensfusion6	accZbase	
+78	8	sensfusion6	isInit	
+79	8	sensfusion6	isCalibrated	
+80	6	acc	x	
+81	6	acc	y	
+82	6	acc	z	
+83	6	baro	asl	
+84	6	baro	temp	
+85	6	baro	pressure	
+86	1	controller	ctr_yaw	
+213	6	controller	cmd_thrust	
+214	6	controller	cmd_roll	
+215	6	controller	cmd_pitch	
+216	6	controller	cmd_yaw	
+217	6	controller	r_roll	
+218	6	controller	r_pitch	
+219	6	controller	r_yaw	
+220	6	controller	accelz	
+221	6	controller	actuatorThrust	
+222	6	controller	roll	
+223	6	controller	pitch	
+224	6	controller	yaw	
+225	6	controller	rollRate	
+226	6	controller	pitchRate	
+227	6	controller	yawRate	
+87	6	ctrltarget	x	
+88	6	ctrltarget	y	
+89	6	ctrltarget	z	
+90	6	ctrltarget	vx	
+91	6	ctrltarget	vy	
+92	6	ctrltarget	vz	
+93	6	ctrltarget	ax	
+94	6	ctrltarget	ay	
+95	6	ctrltarget	az	
+96	6	ctrltarget	roll	
+97	6	ctrltarget	pitch	
+98	6	ctrltarget	yaw	
+99	1	ctrltargetZ	x	
+100	1	ctrltargetZ	y	
+101	1	ctrltargetZ	z	
+102	1	ctrltargetZ	vx	
+103	1	ctrltargetZ	vy	
+104	1	ctrltargetZ	vz	
+105	1	ctrltargetZ	ax	
+106	1	ctrltargetZ	ay	
+107	1	ctrltargetZ	az	
+111	6	mag	x	
+112	6	mag	y	
+113	6	mag	z	
+114	6	stabilizer	roll	
+115	6	stabilizer	pitch	
+116	6	stabilizer	yaw	
+117	6	stabilizer	thrust	
+118	6	stabilizer	rtStab	
+119	10	stabilizer	intToOut	
+120	6	stateEstimate	x	
+121	6	stateEstimate	y	
+122	6	stateEstimate	z	
+123	6	stateEstimate	vx	
+124	6	stateEstimate	vy	
+125	6	stateEstimate	vz	
+126	6	stateEstimate	ax	
+127	6	stateEstimate	ay	
+128	6	stateEstimate	az	
+129	6	stateEstimate	roll	
+130	6	stateEstimate	pitch	
+131	6	stateEstimate	yaw	
+132	6	stateEstimate	qx	
+133	6	stateEstimate	qy	
+134	6	stateEstimate	qz	
+135	6	stateEstimate	qw	
+136	1	stateEstimateZ	x	
+137	1	stateEstimateZ	y	
+138	1	stateEstimateZ	z	
+139	1	stateEstimateZ	vx	
+140	1	stateEstimateZ	vy	
+141	1	stateEstimateZ	vz	
+142	1	stateEstimateZ	ax	
+143	1	stateEstimateZ	ay	
+144	1	stateEstimateZ	az	
+145	10	stateEstimateZ	quat	
+146	1	stateEstimateZ	rateRoll	
+147	1	stateEstimateZ	ratePitch	
+148	1	stateEstimateZ	rateYaw	
+149	6	posEstAlt	estimatedZ	
+150	6	posEstAlt	estVZ	
+151	6	posEstAlt	velocityZ	
+152	6	posCtl	targetVX	
+153	6	posCtl	targetVY	
+154	6	posCtl	targetVZ	
+155	6	posCtl	targetX	
+156	6	posCtl	targetY	
+157	6	posCtl	targetZ	
+158	6	posCtl	Xp	
+159	6	posCtl	Xi	
+160	6	posCtl	Xd	
+161	6	posCtl	Yp	
+162	6	posCtl	Yi	
+163	6	posCtl	Yd	
+164	6	posCtl	Zp	
+165	6	posCtl	Zi	
+166	6	posCtl	Zd	
+167	6	posCtl	VXp	
+168	6	posCtl	VXi	
+169	6	posCtl	VXd	
+170	6	posCtl	VZp	
+171	6	posCtl	VZi	
+172	6	posCtl	VZd	
+173	6	posCtrlIndi	posRef_x	
+174	6	posCtrlIndi	posRef_y	
+175	6	posCtrlIndi	posRef_z	
+176	6	posCtrlIndi	velS_x	
+177	6	posCtrlIndi	velS_y	
+178	6	posCtrlIndi	velS_z	
+179	6	posCtrlIndi	velRef_x	
+180	6	posCtrlIndi	velRef_y	
+181	6	posCtrlIndi	velRef_z	
+182	6	posCtrlIndi	angS_roll	
+183	6	posCtrlIndi	angS_pitch	
+184	6	posCtrlIndi	angS_yaw	
+185	6	posCtrlIndi	angF_roll	
+186	6	posCtrlIndi	angF_pitch	
+187	6	posCtrlIndi	angF_yaw	
+188	6	posCtrlIndi	accRef_x	
+189	6	posCtrlIndi	accRef_y	
+190	6	posCtrlIndi	accRef_z	
+191	6	posCtrlIndi	accS_x	
+192	6	posCtrlIndi	accS_y	
+193	6	posCtrlIndi	accS_z	
+194	6	posCtrlIndi	accF_x	
+195	6	posCtrlIndi	accF_y	
+196	6	posCtrlIndi	accF_z	
+197	6	posCtrlIndi	accFT_x	
+198	6	posCtrlIndi	accFT_y	
+199	6	posCtrlIndi	accFT_z	
+200	6	posCtrlIndi	accErr_x	
+201	6	posCtrlIndi	accErr_y	
+202	6	posCtrlIndi	accErr_z	
+203	6	posCtrlIndi	phi_tilde	
+204	6	posCtrlIndi	theta_tilde	
+205	6	posCtrlIndi	T_tilde	
+206	6	posCtrlIndi	T_inner	
+207	6	posCtrlIndi	T_inner_f	
+208	6	posCtrlIndi	T_incremented	
+209	6	posCtrlIndi	cmd_phi	
+210	6	posCtrlIndi	cmd_theta	
+211	6	estimator	rtApnd	
+212	6	estimator	rtRej	
+228	6	ctrlMel	cmd_thrust	
+229	6	ctrlMel	cmd_roll	
+230	6	ctrlMel	cmd_pitch	
+231	6	ctrlMel	cmd_yaw	
+232	6	ctrlMel	r_roll	
+233	6	ctrlMel	r_pitch	
+234	6	ctrlMel	r_yaw	
+235	6	ctrlMel	accelz	
+236	6	ctrlMel	zdx	
+237	6	ctrlMel	zdy	
+238	6	ctrlMel	zdz	
+239	6	ctrlMel	i_err_x	
+240	6	ctrlMel	i_err_y	
+241	6	ctrlMel	i_err_z	
+242	6	ctrlINDI	cmd_thrust	
+243	6	ctrlINDI	cmd_roll	
+244	6	ctrlINDI	cmd_pitch	
+245	6	ctrlINDI	cmd_yaw	
+246	6	ctrlINDI	r_roll	
+247	6	ctrlINDI	r_pitch	
+248	6	ctrlINDI	r_yaw	
+249	6	ctrlINDI	u_act_dyn_p	
+250	6	ctrlINDI	u_act_dyn_q	
+251	6	ctrlINDI	u_act_dyn_r	
+252	6	ctrlINDI	du_p	
+253	6	ctrlINDI	du_q	
+254	6	ctrlINDI	du_r	
+255	6	ctrlINDI	ang_accel_ref_p	
+256	6	ctrlINDI	ang_accel_ref_q	
+257	6	ctrlINDI	ang_accel_ref_r	
+258	6	ctrlINDI	rate_d[0]	
+259	6	ctrlINDI	rate_d[1]	
+260	6	ctrlINDI	rate_d[2]	
+261	6	ctrlINDI	uf_p	
+262	6	ctrlINDI	uf_q	
+263	6	ctrlINDI	uf_r	
+264	6	ctrlINDI	Omega_f_p	
+265	6	ctrlINDI	Omega_f_q	
+266	6	ctrlINDI	Omega_f_r	
+267	6	ctrlINDI	n_p	
+268	6	ctrlINDI	n_q	
+269	6	ctrlINDI	n_r	
+270	6	s_pid_attitude	roll_outP	
+271	6	s_pid_attitude	roll_outI	
+272	6	s_pid_attitude	roll_outD	
+273	6	s_pid_attitude	pitch_outP	
+274	6	s_pid_attitude	pitch_outI	
+275	6	s_pid_attitude	pitch_outD	
+276	6	s_pid_attitude	yaw_outP	
+277	6	s_pid_attitude	yaw_outI	
+278	6	s_pid_attitude	yaw_outD	
+279	6	s_pid_rate	roll_outP	
+280	6	s_pid_rate	roll_outI	
+281	6	s_pid_rate	roll_outD	
+282	6	s_pid_rate	pitch_outP	
+283	6	s_pid_rate	pitch_outI	
+284	6	s_pid_rate	pitch_outD	
+285	6	s_pid_rate	yaw_outP	
+286	6	s_pid_rate	yaw_outI	
+287	6	s_pid_rate	yaw_outD	
+288	6	ctrlStdnt	cmd_thrust	
+289	6	ctrlStdnt	cmd_roll	
+290	6	ctrlStdnt	cmd_pitch	
+291	6	ctrlStdnt	cmd_yaw	
+292	6	ctrlStdnt	r_roll	
+293	6	ctrlStdnt	r_pitch	
+294	6	ctrlStdnt	r_yaw	
+295	6	ctrlStdnt	accelz	
+296	6	ctrlStdnt	thrustDesired	
+297	6	ctrlStdnt	roll	
+298	6	ctrlStdnt	pitch	
+299	6	ctrlStdnt	yaw	
+300	6	ctrlStdnt	rollRate	
+301	6	ctrlStdnt	pitchRate	
+302	6	ctrlStdnt	yawRate	
+303	10	motor	m1	
+304	10	motor	m2	
+305	10	motor	m3	
+306	10	motor	m4	
+307	10	colAv	latency	
+308	6	health	motorVarXM1	
+309	6	health	motorVarYM1	
+310	6	health	motorVarXM2	
+311	6	health	motorVarYM2	
+312	6	health	motorVarXM3	
+313	6	health	motorVarYM3	
+314	6	health	motorVarXM4	
+315	6	health	motorVarYM4	
+316	8	health	motorPass	
+317	6	health	batterySag	
+318	8	health	batteryPass	
+319	9	health	motorTestCount	
+320	8	kalman	inFlight	
+321	6	kalman	stateX	
+322	6	kalman	stateY	
+323	6	kalman	stateZ	
+324	6	kalman	statePX	
+325	6	kalman	statePY	
+326	6	kalman	statePZ	
+327	6	kalman	stateD0	
+328	6	kalman	stateD1	
+329	6	kalman	stateD2	
+330	6	kalman	varX	
+331	6	kalman	varY	
+332	6	kalman	varZ	
+333	6	kalman	varPX	
+334	6	kalman	varPY	
+335	6	kalman	varPZ	
+336	6	kalman	varD0	
+337	6	kalman	varD1	
+338	6	kalman	varD2	
+339	6	kalman	q0	
+340	6	kalman	q1	
+341	6	kalman	q2	
+342	6	kalman	q3	
+343	6	kalman	rtUpdate	
+344	6	kalman	rtPred	
+345	6	kalman	rtFinal	
+346	2	outlierf	lhWin	
+427	2	outlierf	bucket0	
+428	2	outlierf	bucket1	
+429	2	outlierf	bucket2	
+430	2	outlierf	bucket3	
+431	2	outlierf	bucket4	
+432	6	outlierf	accLev	
+433	6	outlierf	errD	
+347	6	kalman_pred	predNX	
+348	6	kalman_pred	predNY	
+349	6	kalman_pred	measNX	
+350	6	kalman_pred	measNY	
+351	6	ring	fadeTime	
+352	2	gps	lat	
+353	2	gps	lon	
+354	6	gps	hMSL	
+355	6	gps	hAcc	
+356	2	gps	nsat	
+357	2	gps	fix	
+358	6	usd	spiWrBps	
+359	6	usd	spiReBps	
+360	6	usd	fatWrBps	
+361	8	loco	mode	
+362	6	loco	spiWr	
+363	6	loco	spiRe	
+364	9	ranging	state	
+365	6	ranging	distance0	
+366	6	ranging	distance1	
+367	6	ranging	distance2	
+368	6	ranging	distance3	
+369	6	ranging	distance4	
+370	6	ranging	distance5	
+371	6	ranging	distance6	
+372	6	ranging	distance7	
+373	6	ranging	pressure0	
+374	6	ranging	pressure1	
+375	6	ranging	pressure2	
+376	6	ranging	pressure3	
+377	6	ranging	pressure4	
+378	6	ranging	pressure5	
+379	6	ranging	pressure6	
+380	6	ranging	pressure7	
+381	8	twr	rangingSuccessRate0	
+382	8	twr	rangingPerSec0	
+383	8	twr	rangingSuccessRate1	
+384	8	twr	rangingPerSec1	
+385	8	twr	rangingSuccessRate2	
+386	8	twr	rangingPerSec2	
+387	8	twr	rangingSuccessRate3	
+388	8	twr	rangingPerSec3	
+389	8	twr	rangingSuccessRate4	
+390	8	twr	rangingPerSec4	
+391	8	twr	rangingSuccessRate5	
+392	8	twr	rangingPerSec5	
+393	6	tdoa2	d7-0	
+394	6	tdoa2	d0-1	
+395	6	tdoa2	d1-2	
+396	6	tdoa2	d2-3	
+397	6	tdoa2	d3-4	
+398	6	tdoa2	d4-5	
+399	6	tdoa2	d5-6	
+400	6	tdoa2	d6-7	
+401	6	tdoa2	cc0	
+402	6	tdoa2	cc1	
+403	6	tdoa2	cc2	
+404	6	tdoa2	cc3	
+405	6	tdoa2	cc4	
+406	6	tdoa2	cc5	
+407	6	tdoa2	cc6	
+408	6	tdoa2	cc7	
+409	9	tdoa2	dist7-0	
+410	9	tdoa2	dist0-1	
+411	9	tdoa2	dist1-2	
+412	9	tdoa2	dist2-3	
+413	9	tdoa2	dist3-4	
+414	9	tdoa2	dist4-5	
+415	9	tdoa2	dist5-6	
+416	9	tdoa2	dist6-7	
+417	6	tdoaEngine	stRx	
+418	6	tdoaEngine	stEst	
+419	6	tdoaEngine	stTime	
+420	6	tdoaEngine	stFound	
+421	6	tdoaEngine	stCc	
+422	6	tdoaEngine	stHit	
+423	6	tdoaEngine	stMiss	
+424	6	tdoaEngine	cc	
+425	9	tdoaEngine	tof	
+426	6	tdoaEngine	tdoa	
+434	8	motion	motion	
+435	1	motion	deltaX	
+436	1	motion	deltaY	
+437	9	motion	shutter	
+438	8	motion	maxRaw	
+439	8	motion	minRaw	
+440	8	motion	Rawsum	
+441	8	motion	outlierCount	
+442	8	motion	squal	
+443	6	motion	std	
+444	9	oa	front	
+445	9	oa	back	
+446	9	oa	up	
+447	9	oa	left	
+448	9	oa	right	
+449	8	activeMarker	btSns	
+450	8	activeMarker	i2cOk	
+451	8	aideck	receivebyte	
+452	8	lighthouse	validAngles	
+453	6	lighthouse	rawAngle0x	
+454	6	lighthouse	rawAngle0y	
+455	6	lighthouse	rawAngle1x	
+456	6	lighthouse	rawAngle1y	
+457	6	lighthouse	angle0x	
+458	6	lighthouse	angle0y	
+459	6	lighthouse	angle1x	
+460	6	lighthouse	angle1y	
+461	6	lighthouse	angle0x_1	
+462	6	lighthouse	angle0y_1	
+463	6	lighthouse	angle1x_1	
+464	6	lighthouse	angle1y_1	
+465	6	lighthouse	angle0x_2	
+466	6	lighthouse	angle0y_2	
+467	6	lighthouse	angle1x_2	
+468	6	lighthouse	angle1y_2	
+469	6	lighthouse	angle0x_3	
+470	6	lighthouse	angle0y_3	
+471	6	lighthouse	angle1x_3	
+472	6	lighthouse	angle1y_3	
+473	6	lighthouse	rawAngle0xlh2	
+474	6	lighthouse	rawAngle0ylh2	
+475	6	lighthouse	rawAngle1xlh2	
+476	6	lighthouse	rawAngle1ylh2	
+477	6	lighthouse	angle0x_0lh2	
+478	6	lighthouse	angle0y_0lh2	
+479	6	lighthouse	angle1x_0lh2	
+480	6	lighthouse	angle1y_0lh2	
+481	6	lighthouse	serRt	
+482	6	lighthouse	frmRt	
+483	6	lighthouse	cycleRt	
+484	6	lighthouse	bs0Rt	
+485	6	lighthouse	bs1Rt	
+486	9	lighthouse	width0	
+487	9	lighthouse	width1	
+488	9	lighthouse	width2	
+489	9	lighthouse	width3	
+490	8	lighthouse	comSync	
+491	9	lighthouse	bsReceive	
+492	9	lighthouse	bsActive	
+493	9	lighthouse	bsCalUd	
+494	9	lighthouse	bsCalCon	
+495	8	lighthouse	status	
+496	6	lighthouse	posRt	
+497	6	lighthouse	estBs0Rt	
+498	6	lighthouse	estBs1Rt	
+499	6	lighthouse	x	
+500	6	lighthouse	y	
+501	6	lighthouse	z	
+502	6	lighthouse	delta	
+503	9	lighthouse	bsGeoVal	
+504	9	lighthouse	bsCalVal	
diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_22:19:41.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_22:19:41.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3cc2956a50b9dcb948320a6f26c2a98acc83461e
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_22:19:41.txt
@@ -0,0 +1,506 @@
+Log ID   Type    Group   Identifier Name
+0	1	gyro	xRaw
+1	1	gyro	yRaw
+2	1	gyro	zRaw
+3	6	gyro	xVariance
+4	6	gyro	yVariance
+5	6	gyro	zVariance
+108	6	gyro	x
+109	6	gyro	y
+110	6	gyro	z
+6	10	pwm	m1_pwm
+7	10	pwm	m2_pwm
+8	10	pwm	m3_pwm
+9	10	pwm	m4_pwm
+10	9	crtp	rxRate
+11	9	crtp	txRate
+12	6	pm	vbat
+13	9	pm	vbatMV
+14	6	pm	extVbat
+15	9	pm	extVbatMV
+16	6	pm	extCurr
+17	6	pm	chargeCurrent
+18	0	pm	state
+19	8	pm	batteryLevel
+20	8	radio	rssi
+21	8	radio	isConnected
+22	0	sys	armed
+38	8	sys	canfly
+39	8	sys	isFlying
+40	8	sys	isTumbled
+23	9	extrx	ch0
+24	9	extrx	ch1
+25	9	extrx	ch2
+26	9	extrx	ch3
+27	9	extrx	thrust
+28	6	extrx	roll
+29	6	extrx	pitch
+30	6	extrx	yaw
+31	10	memTst	errCntW
+32	9	range	front
+33	9	range	back
+34	9	range	up
+35	9	range	left
+36	9	range	right
+37	9	range	zrange
+41	6	ext_pos	X
+42	6	ext_pos	Y
+43	6	ext_pos	Z
+44	6	locSrv	x
+45	6	locSrv	y
+46	6	locSrv	z
+47	6	locSrv	qx
+48	6	locSrv	qy
+49	6	locSrv	qz
+50	6	locSrv	qw
+51	9	locSrvZ	tick
+52	6	pid_attitude	roll_outP
+53	6	pid_attitude	roll_outI
+54	6	pid_attitude	roll_outD
+55	6	pid_attitude	pitch_outP
+56	6	pid_attitude	pitch_outI
+57	6	pid_attitude	pitch_outD
+58	6	pid_attitude	yaw_outP
+59	6	pid_attitude	yaw_outI
+60	6	pid_attitude	yaw_outD
+61	6	pid_rate	roll_outP
+62	6	pid_rate	roll_outI
+63	6	pid_rate	roll_outD
+64	6	pid_rate	pitch_outP
+65	6	pid_rate	pitch_outI
+66	6	pid_rate	pitch_outD
+67	6	pid_rate	yaw_outP
+68	6	pid_rate	yaw_outI
+69	6	pid_rate	yaw_outD
+70	6	sensfusion6	qw
+71	6	sensfusion6	qx
+72	6	sensfusion6	qy
+73	6	sensfusion6	qz
+74	6	sensfusion6	gravityX
+75	6	sensfusion6	gravityY
+76	6	sensfusion6	gravityZ
+77	6	sensfusion6	accZbase
+78	8	sensfusion6	isInit
+79	8	sensfusion6	isCalibrated
+80	6	acc	x
+81	6	acc	y
+82	6	acc	z
+83	6	baro	asl
+84	6	baro	temp
+85	6	baro	pressure
+86	1	controller	ctr_yaw
+213	6	controller	cmd_thrust
+214	6	controller	cmd_roll
+215	6	controller	cmd_pitch
+216	6	controller	cmd_yaw
+217	6	controller	r_roll
+218	6	controller	r_pitch
+219	6	controller	r_yaw
+220	6	controller	accelz
+221	6	controller	actuatorThrust
+222	6	controller	roll
+223	6	controller	pitch
+224	6	controller	yaw
+225	6	controller	rollRate
+226	6	controller	pitchRate
+227	6	controller	yawRate
+87	6	ctrltarget	x
+88	6	ctrltarget	y
+89	6	ctrltarget	z
+90	6	ctrltarget	vx
+91	6	ctrltarget	vy
+92	6	ctrltarget	vz
+93	6	ctrltarget	ax
+94	6	ctrltarget	ay
+95	6	ctrltarget	az
+96	6	ctrltarget	roll
+97	6	ctrltarget	pitch
+98	6	ctrltarget	yaw
+99	1	ctrltargetZ	x
+100	1	ctrltargetZ	y
+101	1	ctrltargetZ	z
+102	1	ctrltargetZ	vx
+103	1	ctrltargetZ	vy
+104	1	ctrltargetZ	vz
+105	1	ctrltargetZ	ax
+106	1	ctrltargetZ	ay
+107	1	ctrltargetZ	az
+111	6	mag	x
+112	6	mag	y
+113	6	mag	z
+114	6	stabilizer	roll
+115	6	stabilizer	pitch
+116	6	stabilizer	yaw
+117	6	stabilizer	thrust
+118	6	stabilizer	rtStab
+119	10	stabilizer	intToOut
+120	6	stateEstimate	x
+121	6	stateEstimate	y
+122	6	stateEstimate	z
+123	6	stateEstimate	vx
+124	6	stateEstimate	vy
+125	6	stateEstimate	vz
+126	6	stateEstimate	ax
+127	6	stateEstimate	ay
+128	6	stateEstimate	az
+129	6	stateEstimate	roll
+130	6	stateEstimate	pitch
+131	6	stateEstimate	yaw
+132	6	stateEstimate	qx
+133	6	stateEstimate	qy
+134	6	stateEstimate	qz
+135	6	stateEstimate	qw
+136	1	stateEstimateZ	x
+137	1	stateEstimateZ	y
+138	1	stateEstimateZ	z
+139	1	stateEstimateZ	vx
+140	1	stateEstimateZ	vy
+141	1	stateEstimateZ	vz
+142	1	stateEstimateZ	ax
+143	1	stateEstimateZ	ay
+144	1	stateEstimateZ	az
+145	10	stateEstimateZ	quat
+146	1	stateEstimateZ	rateRoll
+147	1	stateEstimateZ	ratePitch
+148	1	stateEstimateZ	rateYaw
+149	6	posEstAlt	estimatedZ
+150	6	posEstAlt	estVZ
+151	6	posEstAlt	velocityZ
+152	6	posCtl	targetVX
+153	6	posCtl	targetVY
+154	6	posCtl	targetVZ
+155	6	posCtl	targetX
+156	6	posCtl	targetY
+157	6	posCtl	targetZ
+158	6	posCtl	Xp
+159	6	posCtl	Xi
+160	6	posCtl	Xd
+161	6	posCtl	Yp
+162	6	posCtl	Yi
+163	6	posCtl	Yd
+164	6	posCtl	Zp
+165	6	posCtl	Zi
+166	6	posCtl	Zd
+167	6	posCtl	VXp
+168	6	posCtl	VXi
+169	6	posCtl	VXd
+170	6	posCtl	VZp
+171	6	posCtl	VZi
+172	6	posCtl	VZd
+173	6	posCtrlIndi	posRef_x
+174	6	posCtrlIndi	posRef_y
+175	6	posCtrlIndi	posRef_z
+176	6	posCtrlIndi	velS_x
+177	6	posCtrlIndi	velS_y
+178	6	posCtrlIndi	velS_z
+179	6	posCtrlIndi	velRef_x
+180	6	posCtrlIndi	velRef_y
+181	6	posCtrlIndi	velRef_z
+182	6	posCtrlIndi	angS_roll
+183	6	posCtrlIndi	angS_pitch
+184	6	posCtrlIndi	angS_yaw
+185	6	posCtrlIndi	angF_roll
+186	6	posCtrlIndi	angF_pitch
+187	6	posCtrlIndi	angF_yaw
+188	6	posCtrlIndi	accRef_x
+189	6	posCtrlIndi	accRef_y
+190	6	posCtrlIndi	accRef_z
+191	6	posCtrlIndi	accS_x
+192	6	posCtrlIndi	accS_y
+193	6	posCtrlIndi	accS_z
+194	6	posCtrlIndi	accF_x
+195	6	posCtrlIndi	accF_y
+196	6	posCtrlIndi	accF_z
+197	6	posCtrlIndi	accFT_x
+198	6	posCtrlIndi	accFT_y
+199	6	posCtrlIndi	accFT_z
+200	6	posCtrlIndi	accErr_x
+201	6	posCtrlIndi	accErr_y
+202	6	posCtrlIndi	accErr_z
+203	6	posCtrlIndi	phi_tilde
+204	6	posCtrlIndi	theta_tilde
+205	6	posCtrlIndi	T_tilde
+206	6	posCtrlIndi	T_inner
+207	6	posCtrlIndi	T_inner_f
+208	6	posCtrlIndi	T_incremented
+209	6	posCtrlIndi	cmd_phi
+210	6	posCtrlIndi	cmd_theta
+211	6	estimator	rtApnd
+212	6	estimator	rtRej
+228	6	ctrlMel	cmd_thrust
+229	6	ctrlMel	cmd_roll
+230	6	ctrlMel	cmd_pitch
+231	6	ctrlMel	cmd_yaw
+232	6	ctrlMel	r_roll
+233	6	ctrlMel	r_pitch
+234	6	ctrlMel	r_yaw
+235	6	ctrlMel	accelz
+236	6	ctrlMel	zdx
+237	6	ctrlMel	zdy
+238	6	ctrlMel	zdz
+239	6	ctrlMel	i_err_x
+240	6	ctrlMel	i_err_y
+241	6	ctrlMel	i_err_z
+242	6	ctrlINDI	cmd_thrust
+243	6	ctrlINDI	cmd_roll
+244	6	ctrlINDI	cmd_pitch
+245	6	ctrlINDI	cmd_yaw
+246	6	ctrlINDI	r_roll
+247	6	ctrlINDI	r_pitch
+248	6	ctrlINDI	r_yaw
+249	6	ctrlINDI	u_act_dyn_p
+250	6	ctrlINDI	u_act_dyn_q
+251	6	ctrlINDI	u_act_dyn_r
+252	6	ctrlINDI	du_p
+253	6	ctrlINDI	du_q
+254	6	ctrlINDI	du_r
+255	6	ctrlINDI	ang_accel_ref_p
+256	6	ctrlINDI	ang_accel_ref_q
+257	6	ctrlINDI	ang_accel_ref_r
+258	6	ctrlINDI	rate_d[0]
+259	6	ctrlINDI	rate_d[1]
+260	6	ctrlINDI	rate_d[2]
+261	6	ctrlINDI	uf_p
+262	6	ctrlINDI	uf_q
+263	6	ctrlINDI	uf_r
+264	6	ctrlINDI	Omega_f_p
+265	6	ctrlINDI	Omega_f_q
+266	6	ctrlINDI	Omega_f_r
+267	6	ctrlINDI	n_p
+268	6	ctrlINDI	n_q
+269	6	ctrlINDI	n_r
+270	6	s_pid_attitude	roll_outP
+271	6	s_pid_attitude	roll_outI
+272	6	s_pid_attitude	roll_outD
+273	6	s_pid_attitude	pitch_outP
+274	6	s_pid_attitude	pitch_outI
+275	6	s_pid_attitude	pitch_outD
+276	6	s_pid_attitude	yaw_outP
+277	6	s_pid_attitude	yaw_outI
+278	6	s_pid_attitude	yaw_outD
+279	6	s_pid_rate	roll_outP
+280	6	s_pid_rate	roll_outI
+281	6	s_pid_rate	roll_outD
+282	6	s_pid_rate	pitch_outP
+283	6	s_pid_rate	pitch_outI
+284	6	s_pid_rate	pitch_outD
+285	6	s_pid_rate	yaw_outP
+286	6	s_pid_rate	yaw_outI
+287	6	s_pid_rate	yaw_outD
+288	6	ctrlStdnt	cmd_thrust
+289	6	ctrlStdnt	cmd_roll
+290	6	ctrlStdnt	cmd_pitch
+291	6	ctrlStdnt	cmd_yaw
+292	6	ctrlStdnt	r_roll
+293	6	ctrlStdnt	r_pitch
+294	6	ctrlStdnt	r_yaw
+295	6	ctrlStdnt	accelz
+296	6	ctrlStdnt	thrustDesired
+297	6	ctrlStdnt	roll
+298	6	ctrlStdnt	pitch
+299	6	ctrlStdnt	yaw
+300	6	ctrlStdnt	rollRate
+301	6	ctrlStdnt	pitchRate
+302	6	ctrlStdnt	yawRate
+303	10	motor	m1
+304	10	motor	m2
+305	10	motor	m3
+306	10	motor	m4
+307	10	colAv	latency
+308	6	health	motorVarXM1
+309	6	health	motorVarYM1
+310	6	health	motorVarXM2
+311	6	health	motorVarYM2
+312	6	health	motorVarXM3
+313	6	health	motorVarYM3
+314	6	health	motorVarXM4
+315	6	health	motorVarYM4
+316	8	health	motorPass
+317	6	health	batterySag
+318	8	health	batteryPass
+319	9	health	motorTestCount
+320	8	kalman	inFlight
+321	6	kalman	stateX
+322	6	kalman	stateY
+323	6	kalman	stateZ
+324	6	kalman	statePX
+325	6	kalman	statePY
+326	6	kalman	statePZ
+327	6	kalman	stateD0
+328	6	kalman	stateD1
+329	6	kalman	stateD2
+330	6	kalman	varX
+331	6	kalman	varY
+332	6	kalman	varZ
+333	6	kalman	varPX
+334	6	kalman	varPY
+335	6	kalman	varPZ
+336	6	kalman	varD0
+337	6	kalman	varD1
+338	6	kalman	varD2
+339	6	kalman	q0
+340	6	kalman	q1
+341	6	kalman	q2
+342	6	kalman	q3
+343	6	kalman	rtUpdate
+344	6	kalman	rtPred
+345	6	kalman	rtFinal
+346	2	outlierf	lhWin
+427	2	outlierf	bucket0
+428	2	outlierf	bucket1
+429	2	outlierf	bucket2
+430	2	outlierf	bucket3
+431	2	outlierf	bucket4
+432	6	outlierf	accLev
+433	6	outlierf	errD
+347	6	kalman_pred	predNX
+348	6	kalman_pred	predNY
+349	6	kalman_pred	measNX
+350	6	kalman_pred	measNY
+351	6	ring	fadeTime
+352	2	gps	lat
+353	2	gps	lon
+354	6	gps	hMSL
+355	6	gps	hAcc
+356	2	gps	nsat
+357	2	gps	fix
+358	6	usd	spiWrBps
+359	6	usd	spiReBps
+360	6	usd	fatWrBps
+361	8	loco	mode
+362	6	loco	spiWr
+363	6	loco	spiRe
+364	9	ranging	state
+365	6	ranging	distance0
+366	6	ranging	distance1
+367	6	ranging	distance2
+368	6	ranging	distance3
+369	6	ranging	distance4
+370	6	ranging	distance5
+371	6	ranging	distance6
+372	6	ranging	distance7
+373	6	ranging	pressure0
+374	6	ranging	pressure1
+375	6	ranging	pressure2
+376	6	ranging	pressure3
+377	6	ranging	pressure4
+378	6	ranging	pressure5
+379	6	ranging	pressure6
+380	6	ranging	pressure7
+381	8	twr	rangingSuccessRate0
+382	8	twr	rangingPerSec0
+383	8	twr	rangingSuccessRate1
+384	8	twr	rangingPerSec1
+385	8	twr	rangingSuccessRate2
+386	8	twr	rangingPerSec2
+387	8	twr	rangingSuccessRate3
+388	8	twr	rangingPerSec3
+389	8	twr	rangingSuccessRate4
+390	8	twr	rangingPerSec4
+391	8	twr	rangingSuccessRate5
+392	8	twr	rangingPerSec5
+393	6	tdoa2	d7-0
+394	6	tdoa2	d0-1
+395	6	tdoa2	d1-2
+396	6	tdoa2	d2-3
+397	6	tdoa2	d3-4
+398	6	tdoa2	d4-5
+399	6	tdoa2	d5-6
+400	6	tdoa2	d6-7
+401	6	tdoa2	cc0
+402	6	tdoa2	cc1
+403	6	tdoa2	cc2
+404	6	tdoa2	cc3
+405	6	tdoa2	cc4
+406	6	tdoa2	cc5
+407	6	tdoa2	cc6
+408	6	tdoa2	cc7
+409	9	tdoa2	dist7-0
+410	9	tdoa2	dist0-1
+411	9	tdoa2	dist1-2
+412	9	tdoa2	dist2-3
+413	9	tdoa2	dist3-4
+414	9	tdoa2	dist4-5
+415	9	tdoa2	dist5-6
+416	9	tdoa2	dist6-7
+417	6	tdoaEngine	stRx
+418	6	tdoaEngine	stEst
+419	6	tdoaEngine	stTime
+420	6	tdoaEngine	stFound
+421	6	tdoaEngine	stCc
+422	6	tdoaEngine	stHit
+423	6	tdoaEngine	stMiss
+424	6	tdoaEngine	cc
+425	9	tdoaEngine	tof
+426	6	tdoaEngine	tdoa
+434	8	motion	motion
+435	1	motion	deltaX
+436	1	motion	deltaY
+437	9	motion	shutter
+438	8	motion	maxRaw
+439	8	motion	minRaw
+440	8	motion	Rawsum
+441	8	motion	outlierCount
+442	8	motion	squal
+443	6	motion	std
+444	9	oa	front
+445	9	oa	back
+446	9	oa	up
+447	9	oa	left
+448	9	oa	right
+449	8	activeMarker	btSns
+450	8	activeMarker	i2cOk
+451	8	aideck	receivebyte
+452	8	lighthouse	validAngles
+453	6	lighthouse	rawAngle0x
+454	6	lighthouse	rawAngle0y
+455	6	lighthouse	rawAngle1x
+456	6	lighthouse	rawAngle1y
+457	6	lighthouse	angle0x
+458	6	lighthouse	angle0y
+459	6	lighthouse	angle1x
+460	6	lighthouse	angle1y
+461	6	lighthouse	angle0x_1
+462	6	lighthouse	angle0y_1
+463	6	lighthouse	angle1x_1
+464	6	lighthouse	angle1y_1
+465	6	lighthouse	angle0x_2
+466	6	lighthouse	angle0y_2
+467	6	lighthouse	angle1x_2
+468	6	lighthouse	angle1y_2
+469	6	lighthouse	angle0x_3
+470	6	lighthouse	angle0y_3
+471	6	lighthouse	angle1x_3
+472	6	lighthouse	angle1y_3
+473	6	lighthouse	rawAngle0xlh2
+474	6	lighthouse	rawAngle0ylh2
+475	6	lighthouse	rawAngle1xlh2
+476	6	lighthouse	rawAngle1ylh2
+477	6	lighthouse	angle0x_0lh2
+478	6	lighthouse	angle0y_0lh2
+479	6	lighthouse	angle1x_0lh2
+480	6	lighthouse	angle1y_0lh2
+481	6	lighthouse	serRt
+482	6	lighthouse	frmRt
+483	6	lighthouse	cycleRt
+484	6	lighthouse	bs0Rt
+485	6	lighthouse	bs1Rt
+486	9	lighthouse	width0
+487	9	lighthouse	width1
+488	9	lighthouse	width2
+489	9	lighthouse	width3
+490	8	lighthouse	comSync
+491	9	lighthouse	bsReceive
+492	9	lighthouse	bsActive
+493	9	lighthouse	bsCalUd
+494	9	lighthouse	bsCalCon
+495	8	lighthouse	status
+496	6	lighthouse	posRt
+497	6	lighthouse	estBs0Rt
+498	6	lighthouse	estBs1Rt
+499	6	lighthouse	x
+500	6	lighthouse	y
+501	6	lighthouse	z
+502	6	lighthouse	delta
+503	9	lighthouse	bsGeoVal
+504	9	lighthouse	bsCalVal
diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_20:51:49.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_20:51:49.txt
new file mode 100644
index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_20:51:49.txt
@@ -0,0 +1,247 @@
+Param ID	Type	Group	Identifier Name	
+0	8	imu_sensors	AK8963	
+1	8	imu_sensors	LPS25H	
+5	8	imu_sensors	BMP388	
+2	8	imu_tests	MPU6500	
+3	8	imu_tests	AK8963	
+4	8	imu_tests	LPS25H	
+6	9	cpu	flash	
+7	10	cpu	id0	
+8	10	cpu	id1	
+9	10	cpu	id2	
+10	0	system	selftestPassed	
+11	0	system	forceArm	
+16	8	system	taskDump	
+208	8	system	highlight	
+12	9	crtpsrv	echoDelay	
+13	8	sound	effect	
+14	10	sound	neffect	
+15	9	sound	freq	
+17	8	memTst	resetW	
+18	0	sys	e_stop	
+19	8	commander	enHighLevel	
+20	8	flightmode	althold	
+21	8	flightmode	poshold	
+22	8	flightmode	posSet	
+23	8	flightmode	yawMode	
+24	8	flightmode	stabModeRoll	
+25	8	flightmode	stabModePitch	
+26	8	flightmode	stabModeYaw	
+27	6	cmdrCPPM	rateRoll	
+28	6	cmdrCPPM	ratePitch	
+29	6	cmdrCPPM	angPitch	
+30	6	cmdrCPPM	angRoll	
+31	6	cmdrCPPM	rateYaw	
+32	8	locSrv	enRangeStreamFP32	
+33	8	locSrv	enLhAngleStream	
+34	6	locSrv	extPosStdDev	
+35	6	locSrv	extQuatStdDev	
+36	6	pid_attitude	roll_kp	
+37	6	pid_attitude	roll_ki	
+38	6	pid_attitude	roll_kd	
+39	6	pid_attitude	pitch_kp	
+40	6	pid_attitude	pitch_ki	
+41	6	pid_attitude	pitch_kd	
+42	6	pid_attitude	yaw_kp	
+43	6	pid_attitude	yaw_ki	
+44	6	pid_attitude	yaw_kd	
+45	6	pid_rate	roll_kp	
+46	6	pid_rate	roll_ki	
+47	6	pid_rate	roll_kd	
+48	6	pid_rate	pitch_kp	
+49	6	pid_rate	pitch_ki	
+50	6	pid_rate	pitch_kd	
+51	6	pid_rate	yaw_kp	
+52	6	pid_rate	yaw_ki	
+53	6	pid_rate	yaw_kd	
+54	6	sensfusion6	kp	
+55	6	sensfusion6	ki	
+56	6	sensfusion6	baseZacc	
+57	8	stabilizer	estimator	
+58	8	stabilizer	controller	
+59	8	stabilizer	stop	
+60	6	posEstAlt	estAlphaAsl	
+61	6	posEstAlt	estAlphaZr	
+62	6	posEstAlt	velFactor	
+63	6	posEstAlt	velZAlpha	
+64	6	posEstAlt	vAccDeadband	
+65	6	posCtlPid	xKp	
+66	6	posCtlPid	xKi	
+67	6	posCtlPid	xKd	
+68	6	posCtlPid	yKp	
+69	6	posCtlPid	yKi	
+70	6	posCtlPid	yKd	
+71	6	posCtlPid	zKp	
+72	6	posCtlPid	zKi	
+73	6	posCtlPid	zKd	
+74	9	posCtlPid	thrustBase	
+75	9	posCtlPid	thrustMin	
+76	6	posCtlPid	rpLimit	
+77	6	posCtlPid	xyVelMax	
+78	6	posCtlPid	zVelMax	
+79	6	velCtlPid	vxKp	
+80	6	velCtlPid	vxKi	
+81	6	velCtlPid	vxKd	
+82	6	velCtlPid	vyKp	
+83	6	velCtlPid	vyKi	
+84	6	velCtlPid	vyKd	
+85	6	velCtlPid	vzKp	
+86	6	velCtlPid	vzKi	
+87	6	velCtlPid	vzKd	
+88	6	posCtrlIndi	K_xi_x	
+89	6	posCtrlIndi	K_xi_y	
+90	6	posCtrlIndi	K_xi_z	
+91	6	posCtrlIndi	K_dxi_x	
+92	6	posCtrlIndi	K_dxi_y	
+93	6	posCtrlIndi	K_dxi_z	
+94	6	posCtrlIndi	pq_clamping	
+95	8	controller	tiltComp	
+96	6	ctrlMel	kp_xy	
+97	6	ctrlMel	kd_xy	
+98	6	ctrlMel	ki_xy	
+99	6	ctrlMel	i_range_xy	
+100	6	ctrlMel	kp_z	
+101	6	ctrlMel	kd_z	
+102	6	ctrlMel	ki_z	
+103	6	ctrlMel	i_range_z	
+104	6	ctrlMel	mass	
+105	6	ctrlMel	massThrust	
+106	6	ctrlMel	kR_xy	
+107	6	ctrlMel	kR_z	
+108	6	ctrlMel	kw_xy	
+109	6	ctrlMel	kw_z	
+110	6	ctrlMel	ki_m_xy	
+111	6	ctrlMel	ki_m_z	
+112	6	ctrlMel	kd_omega_rp	
+113	6	ctrlMel	i_range_m_xy	
+114	6	ctrlMel	i_range_m_z	
+115	6	ctrlINDI	thrust_threshold	
+116	6	ctrlINDI	bound_ctrl_input	
+117	6	ctrlINDI	g1_p	
+118	6	ctrlINDI	g1_q	
+119	6	ctrlINDI	g1_r	
+120	6	ctrlINDI	g2	
+121	6	ctrlINDI	ref_err_p	
+122	6	ctrlINDI	ref_err_q	
+123	6	ctrlINDI	ref_err_r	
+124	6	ctrlINDI	ref_rate_p	
+125	6	ctrlINDI	ref_rate_q	
+126	6	ctrlINDI	ref_rate_r	
+127	6	ctrlINDI	act_dyn_p	
+128	6	ctrlINDI	act_dyn_q	
+129	6	ctrlINDI	act_dyn_r	
+130	6	ctrlINDI	filt_cutoff	
+131	6	ctrlINDI	filt_cutoff_r	
+132	8	ctrlINDI	outerLoopActive	
+133	6	s_pid_attitude	roll_kp	
+134	6	s_pid_attitude	roll_ki	
+135	6	s_pid_attitude	roll_kd	
+136	6	s_pid_attitude	pitch_kp	
+137	6	s_pid_attitude	pitch_ki	
+138	6	s_pid_attitude	pitch_kd	
+139	6	s_pid_attitude	yaw_kp	
+140	6	s_pid_attitude	yaw_ki	
+141	6	s_pid_attitude	yaw_kd	
+142	6	s_pid_rate	roll_kp	
+143	6	s_pid_rate	roll_ki	
+144	6	s_pid_rate	roll_kd	
+145	6	s_pid_rate	pitch_kp	
+146	6	s_pid_rate	pitch_ki	
+147	6	s_pid_rate	pitch_kd	
+148	6	s_pid_rate	yaw_kp	
+149	6	s_pid_rate	yaw_ki	
+150	6	s_pid_rate	yaw_kd	
+151	8	ctrlStdnt	tiltComp	
+152	8	ctrlStdnt	TEST_PARAM	
+153	8	motorPowerSet	enable	
+154	9	motorPowerSet	m1	
+155	9	motorPowerSet	m2	
+156	9	motorPowerSet	m3	
+157	9	motorPowerSet	m4	
+158	10	powerDist	idleThrust	
+159	8	colAv	enable	
+160	6	colAv	ellipsoidX	
+161	6	colAv	ellipsoidY	
+162	6	colAv	ellipsoidZ	
+163	6	colAv	bboxMinX	
+164	6	colAv	bboxMinY	
+165	6	colAv	bboxMinZ	
+166	6	colAv	bboxMaxX	
+167	6	colAv	bboxMaxY	
+168	6	colAv	bboxMaxZ	
+169	6	colAv	horizon	
+170	6	colAv	maxSpeed	
+171	6	colAv	sidestepThrsh	
+172	2	colAv	maxPeerLocAge	
+173	6	colAv	vorTol	
+174	2	colAv	vorIters	
+175	8	health	startPropTest	
+176	8	health	startBatTest	
+177	8	kalman	resetEstimation	
+178	8	kalman	quadIsFlying	
+179	8	kalman	robustTdoa	
+180	8	kalman	robustTwr	
+181	6	kalman	pNAcc_xy	
+182	6	kalman	pNAcc_z	
+183	6	kalman	pNVel	
+184	6	kalman	pNPos	
+185	6	kalman	pNAtt	
+186	6	kalman	mNBaro	
+187	6	kalman	mNGyro_rollpitch	
+188	6	kalman	mNGyro_yaw	
+189	6	kalman	initialX	
+190	6	kalman	initialY	
+191	6	kalman	initialZ	
+192	6	kalman	initialYaw	
+193	6	kalman	maxPos	
+194	6	kalman	maxVel	
+195	6	hlCommander	vtoff	
+196	6	hlCommander	vland	
+197	8	deck	bcLedRing	
+209	8	deck	bcBuzzer	
+210	8	deck	bcGTGPS	
+211	8	deck	bcCPPM	
+212	8	deck	bcUSD	
+215	8	deck	bcZRanger	
+216	8	deck	bcZRanger2	
+217	8	deck	bcDWM1000	
+222	8	deck	bcFlow	
+223	8	deck	bcFlow2	
+227	8	deck	bcOA	
+228	8	deck	bcMultiranger	
+229	8	deck	bcLighthouse4	
+236	8	deck	bcActiveMarker	
+237	8	deck	bcAIDeck	
+198	8	ring	effect	
+199	10	ring	neffect	
+200	8	ring	solidRed	
+201	8	ring	solidGreen	
+202	8	ring	solidBlue	
+203	8	ring	headlightEnable	
+204	6	ring	emptyCharge	
+205	6	ring	fullCharge	
+206	10	ring	fadeColor	
+207	6	ring	fadeTime	
+213	8	usd	canLog	
+214	8	usd	logging	
+218	8	loco	mode	
+219	8	tdoaEngine	logId	
+220	8	tdoaEngine	logOthrId	
+221	8	tdoaEngine	matchAlgo	
+224	8	motion	disable	
+225	8	motion	adaptive	
+226	6	motion	flowStdFixed	
+230	8	activeMarker	front	
+231	8	activeMarker	back	
+232	8	activeMarker	left	
+233	8	activeMarker	right	
+234	8	activeMarker	mode	
+235	8	activeMarker	poll	
+238	10	firmware	revision0	
+239	9	firmware	revision1	
+240	8	firmware	modified	
+241	8	lighthouse	method	
+242	8	lighthouse	bsCalibReset	
+243	8	lighthouse	systemType	
+244	6	lighthouse	sweepStd	
+245	6	lighthouse	sweepStd2	
diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_22:19:41.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_22:19:41.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c611ab3c38904ce02b80528aa1ffc8f062828281
--- /dev/null
+++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_22:19:41.txt
@@ -0,0 +1,247 @@
+Param ID   Type    Group   Identifier Name
+0	8	imu_sensors	AK8963
+1	8	imu_sensors	LPS25H
+5	8	imu_sensors	BMP388
+2	8	imu_tests	MPU6500
+3	8	imu_tests	AK8963
+4	8	imu_tests	LPS25H
+6	9	cpu	flash
+7	10	cpu	id0
+8	10	cpu	id1
+9	10	cpu	id2
+10	0	system	selftestPassed
+11	0	system	forceArm
+16	8	system	taskDump
+208	8	system	highlight
+12	9	crtpsrv	echoDelay
+13	8	sound	effect
+14	10	sound	neffect
+15	9	sound	freq
+17	8	memTst	resetW
+18	0	sys	e_stop
+19	8	commander	enHighLevel
+20	8	flightmode	althold
+21	8	flightmode	poshold
+22	8	flightmode	posSet
+23	8	flightmode	yawMode
+24	8	flightmode	stabModeRoll
+25	8	flightmode	stabModePitch
+26	8	flightmode	stabModeYaw
+27	6	cmdrCPPM	rateRoll
+28	6	cmdrCPPM	ratePitch
+29	6	cmdrCPPM	angPitch
+30	6	cmdrCPPM	angRoll
+31	6	cmdrCPPM	rateYaw
+32	8	locSrv	enRangeStreamFP32
+33	8	locSrv	enLhAngleStream
+34	6	locSrv	extPosStdDev
+35	6	locSrv	extQuatStdDev
+36	6	pid_attitude	roll_kp
+37	6	pid_attitude	roll_ki
+38	6	pid_attitude	roll_kd
+39	6	pid_attitude	pitch_kp
+40	6	pid_attitude	pitch_ki
+41	6	pid_attitude	pitch_kd
+42	6	pid_attitude	yaw_kp
+43	6	pid_attitude	yaw_ki
+44	6	pid_attitude	yaw_kd
+45	6	pid_rate	roll_kp
+46	6	pid_rate	roll_ki
+47	6	pid_rate	roll_kd
+48	6	pid_rate	pitch_kp
+49	6	pid_rate	pitch_ki
+50	6	pid_rate	pitch_kd
+51	6	pid_rate	yaw_kp
+52	6	pid_rate	yaw_ki
+53	6	pid_rate	yaw_kd
+54	6	sensfusion6	kp
+55	6	sensfusion6	ki
+56	6	sensfusion6	baseZacc
+57	8	stabilizer	estimator
+58	8	stabilizer	controller
+59	8	stabilizer	stop
+60	6	posEstAlt	estAlphaAsl
+61	6	posEstAlt	estAlphaZr
+62	6	posEstAlt	velFactor
+63	6	posEstAlt	velZAlpha
+64	6	posEstAlt	vAccDeadband
+65	6	posCtlPid	xKp
+66	6	posCtlPid	xKi
+67	6	posCtlPid	xKd
+68	6	posCtlPid	yKp
+69	6	posCtlPid	yKi
+70	6	posCtlPid	yKd
+71	6	posCtlPid	zKp
+72	6	posCtlPid	zKi
+73	6	posCtlPid	zKd
+74	9	posCtlPid	thrustBase
+75	9	posCtlPid	thrustMin
+76	6	posCtlPid	rpLimit
+77	6	posCtlPid	xyVelMax
+78	6	posCtlPid	zVelMax
+79	6	velCtlPid	vxKp
+80	6	velCtlPid	vxKi
+81	6	velCtlPid	vxKd
+82	6	velCtlPid	vyKp
+83	6	velCtlPid	vyKi
+84	6	velCtlPid	vyKd
+85	6	velCtlPid	vzKp
+86	6	velCtlPid	vzKi
+87	6	velCtlPid	vzKd
+88	6	posCtrlIndi	K_xi_x
+89	6	posCtrlIndi	K_xi_y
+90	6	posCtrlIndi	K_xi_z
+91	6	posCtrlIndi	K_dxi_x
+92	6	posCtrlIndi	K_dxi_y
+93	6	posCtrlIndi	K_dxi_z
+94	6	posCtrlIndi	pq_clamping
+95	8	controller	tiltComp
+96	6	ctrlMel	kp_xy
+97	6	ctrlMel	kd_xy
+98	6	ctrlMel	ki_xy
+99	6	ctrlMel	i_range_xy
+100	6	ctrlMel	kp_z
+101	6	ctrlMel	kd_z
+102	6	ctrlMel	ki_z
+103	6	ctrlMel	i_range_z
+104	6	ctrlMel	mass
+105	6	ctrlMel	massThrust
+106	6	ctrlMel	kR_xy
+107	6	ctrlMel	kR_z
+108	6	ctrlMel	kw_xy
+109	6	ctrlMel	kw_z
+110	6	ctrlMel	ki_m_xy
+111	6	ctrlMel	ki_m_z
+112	6	ctrlMel	kd_omega_rp
+113	6	ctrlMel	i_range_m_xy
+114	6	ctrlMel	i_range_m_z
+115	6	ctrlINDI	thrust_threshold
+116	6	ctrlINDI	bound_ctrl_input
+117	6	ctrlINDI	g1_p
+118	6	ctrlINDI	g1_q
+119	6	ctrlINDI	g1_r
+120	6	ctrlINDI	g2
+121	6	ctrlINDI	ref_err_p
+122	6	ctrlINDI	ref_err_q
+123	6	ctrlINDI	ref_err_r
+124	6	ctrlINDI	ref_rate_p
+125	6	ctrlINDI	ref_rate_q
+126	6	ctrlINDI	ref_rate_r
+127	6	ctrlINDI	act_dyn_p
+128	6	ctrlINDI	act_dyn_q
+129	6	ctrlINDI	act_dyn_r
+130	6	ctrlINDI	filt_cutoff
+131	6	ctrlINDI	filt_cutoff_r
+132	8	ctrlINDI	outerLoopActive
+133	6	s_pid_attitude	roll_kp
+134	6	s_pid_attitude	roll_ki
+135	6	s_pid_attitude	roll_kd
+136	6	s_pid_attitude	pitch_kp
+137	6	s_pid_attitude	pitch_ki
+138	6	s_pid_attitude	pitch_kd
+139	6	s_pid_attitude	yaw_kp
+140	6	s_pid_attitude	yaw_ki
+141	6	s_pid_attitude	yaw_kd
+142	6	s_pid_rate	roll_kp
+143	6	s_pid_rate	roll_ki
+144	6	s_pid_rate	roll_kd
+145	6	s_pid_rate	pitch_kp
+146	6	s_pid_rate	pitch_ki
+147	6	s_pid_rate	pitch_kd
+148	6	s_pid_rate	yaw_kp
+149	6	s_pid_rate	yaw_ki
+150	6	s_pid_rate	yaw_kd
+151	8	ctrlStdnt	tiltComp
+152	8	ctrlStdnt	TEST_PARAM
+153	8	motorPowerSet	enable
+154	9	motorPowerSet	m1
+155	9	motorPowerSet	m2
+156	9	motorPowerSet	m3
+157	9	motorPowerSet	m4
+158	10	powerDist	idleThrust
+159	8	colAv	enable
+160	6	colAv	ellipsoidX
+161	6	colAv	ellipsoidY
+162	6	colAv	ellipsoidZ
+163	6	colAv	bboxMinX
+164	6	colAv	bboxMinY
+165	6	colAv	bboxMinZ
+166	6	colAv	bboxMaxX
+167	6	colAv	bboxMaxY
+168	6	colAv	bboxMaxZ
+169	6	colAv	horizon
+170	6	colAv	maxSpeed
+171	6	colAv	sidestepThrsh
+172	2	colAv	maxPeerLocAge
+173	6	colAv	vorTol
+174	2	colAv	vorIters
+175	8	health	startPropTest
+176	8	health	startBatTest
+177	8	kalman	resetEstimation
+178	8	kalman	quadIsFlying
+179	8	kalman	robustTdoa
+180	8	kalman	robustTwr
+181	6	kalman	pNAcc_xy
+182	6	kalman	pNAcc_z
+183	6	kalman	pNVel
+184	6	kalman	pNPos
+185	6	kalman	pNAtt
+186	6	kalman	mNBaro
+187	6	kalman	mNGyro_rollpitch
+188	6	kalman	mNGyro_yaw
+189	6	kalman	initialX
+190	6	kalman	initialY
+191	6	kalman	initialZ
+192	6	kalman	initialYaw
+193	6	kalman	maxPos
+194	6	kalman	maxVel
+195	6	hlCommander	vtoff
+196	6	hlCommander	vland
+197	8	deck	bcLedRing
+209	8	deck	bcBuzzer
+210	8	deck	bcGTGPS
+211	8	deck	bcCPPM
+212	8	deck	bcUSD
+215	8	deck	bcZRanger
+216	8	deck	bcZRanger2
+217	8	deck	bcDWM1000
+222	8	deck	bcFlow
+223	8	deck	bcFlow2
+227	8	deck	bcOA
+228	8	deck	bcMultiranger
+229	8	deck	bcLighthouse4
+236	8	deck	bcActiveMarker
+237	8	deck	bcAIDeck
+198	8	ring	effect
+199	10	ring	neffect
+200	8	ring	solidRed
+201	8	ring	solidGreen
+202	8	ring	solidBlue
+203	8	ring	headlightEnable
+204	6	ring	emptyCharge
+205	6	ring	fullCharge
+206	10	ring	fadeColor
+207	6	ring	fadeTime
+213	8	usd	canLog
+214	8	usd	logging
+218	8	loco	mode
+219	8	tdoaEngine	logId
+220	8	tdoaEngine	logOthrId
+221	8	tdoaEngine	matchAlgo
+224	8	motion	disable
+225	8	motion	adaptive
+226	6	motion	flowStdFixed
+230	8	activeMarker	front
+231	8	activeMarker	back
+232	8	activeMarker	left
+233	8	activeMarker	right
+234	8	activeMarker	mode
+235	8	activeMarker	poll
+238	10	firmware	revision0
+239	9	firmware	revision1
+240	8	firmware	modified
+241	8	lighthouse	method
+242	8	lighthouse	bsCalibReset
+243	8	lighthouse	systemType
+244	6	lighthouse	sweepStd
+245	6	lighthouse	sweepStd2
diff --git a/crazyflie_groundstation/loggingBlocks.txt b/crazyflie_groundstation/loggingBlocks.txt
index c85ffaff0bf1a3800384d2ce3ab1b9bbe068d69c..1cb1440e99844f44695cf66bafd5b180cb607737 100644
--- a/crazyflie_groundstation/loggingBlocks.txt
+++ b/crazyflie_groundstation/loggingBlocks.txt
@@ -25,7 +25,7 @@ END BLOCK
 START BLOCK
 2
 Rate Setpoints
-50
+150
 ctrlStdnt.rollRate
 ctrlStdnt.pitchRate
 ctrlStdnt.yawRate
@@ -35,7 +35,7 @@ END BLOCK
 START BLOCK
 3
 Angle Setpoints
-50
+150
 ctrlStdnt.roll
 ctrlStdnt.pitch
 ctrlStdnt.yaw