spenceraxani / CosmicWatch-Desktop-Muon-Detector-v2

The CosmicWatch Desktop Muon Detector supplementary material
244 stars 75 forks source link

iPython Note Book #75

Open tony1tf opened 2 years ago

tony1tf commented 2 years ago

Hi Spencer, All I want to do is plot the data from my muon detector. I can do it in Excel, but that's rather clunky. The system you have set up seems to use iPython note books, which looks incredibly complicated, and is something I don't feel I want to learn. Can you point me to any simple python code which I can use on a MacBook to plot the output of my detector either in batches or in real time? I have managed to edit the code which receives data from the detector and saves it to a text file to run under Python3, since the libraries wouldn't install in Python. Lots of '()'s needed adding to print statements, and substitution of 'input' for 'raw_input'. Tony

spenceraxani commented 2 years ago

Hi Tony,

I don’t think I have anything simpler than that in the iPython script, although, like you mention, it was written for python 2, which means the print statements and raw_input may need to be update.

To use the iPython code in a python script (copy and paste the iPython cells), you should only have to remove the first three lines:

%matplotlib inline from IPython.core.display import display, HTML display(HTML("”))

You will also have to replace the file name with your file name.

Thanks,

Spencer

On Jan 17, 2022, at 6:21 PM, tony1tf @.***> wrote:

Hi Spencer, All I want to do is plot the data from my muon detector. I can do it in Excel, but that's rather clunky. The system you have set up seems to use iPython note books, which looks incredibly complicated, and is something I don't feel I want to learn. Can you point me to any simple python code which I can use on a MacBook to plot the output of my detector either in batches or in real time? I have managed to edit the code which receives data from the detector and saves it to a text file to run under Python3, since the libraries wouldn't install in Python. Lots of '()'s needed adding to print statements, and substitution of 'input' for 'raw_input'. Tony

— Reply to this email directly, view it on GitHub https://github.com/spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75, or unsubscribe https://github.com/notifications/unsubscribe-auth/AANF5O32RW7FYFWUVISKABDUWSP6BANCNFSM5MFYUG2A. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you are subscribed to this thread.

tony1tf commented 2 years ago

Hi Spencer I am trying to run your example plotting script, and have put my file name into the code, but I can't seem to get round the following errors:

TypeError Traceback (most recent call last) /var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2022836374.py in 3 # 2. Give the size of binning in time you would like 4 cwd = os.getcwd() ----> 5 f1 = CWClass(cwd + "/background_31Jan2022.txt", bin_size = 10) 6 # f2 = CWClass(cwd + "/Sheilding/bkg_nobox_sheild_long.txt", bin_size = 60)

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2328829766.py in init(self, fname, bin_size) 80 return sum(check == l)==len(l) 81 ---> 82 if not sequential(event_number): 83 print('Events in file are not sequential.') 84

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2328829766.py in sequential(l) 67 def sequential(l): 68 l = np.asarray(l).astype(int) ---> 69 check = range(min(l),max(l)+1) 70 71 if len(l)!=len(check):

TypeError: iteration over a 0-d array ` Tony

spenceraxani commented 2 years ago

Hi Tony,

Could you send me the file you are trying to read?

Thanks,

Spencer

On Jan 31, 2022, at 9:45 AM, tony1tf @.***> wrote:

Hi Spencer I am trying to run your example plotting script, and have put my file name into the code, but I can't seem to get round the following errors:

TypeError Traceback (most recent call last) /var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2022836374.py in 3 # 2. Give the size of binning in time you would like 4 cwd = os.getcwd() ----> 5 f1 = CWClass(cwd + "/background_31Jan2022.txt", bin_size = 10) 6 # f2 = CWClass(cwd + "/Sheilding/bkg_nobox_sheild_long.txt", bin_size = 60)

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2328829766.py in init(self, fname, bin_size) 80 return sum(check == l)==len(l) 81 ---> 82 if not sequential(event_number): 83 print('Events in file are not sequential.') 84

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2328829766.py in sequential(l) 67 def sequential(l): 68 l = np.asarray(l).astype(int) ---> 69 check = range(min(l),max(l)+1) 70 71 if len(l)!=len(check):

TypeError: iteration over a 0-d array ` Tony

— Reply to this email directly, view it on GitHub https://github.com/spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75#issuecomment-1025819428, or unsubscribe https://github.com/notifications/unsubscribe-auth/AANF5O6GNNOXHPXHVBQX5JLUY2N7JANCNFSM5MFYUG2A. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you commented.

tony1tf commented 2 years ago

Here it as. Tony

On Mon, 31 Jan 2022 at 15:21, Spencer N. Axani @.***> wrote:

Hi Tony,

Could you send me the file you are trying to read?

Thanks,

Spencer

On Jan 31, 2022, at 9:45 AM, tony1tf @.***> wrote:

Hi Spencer I am trying to run your example plotting script, and have put my file name into the code, but I can't seem to get round the following errors:

TypeError Traceback (most recent call last)

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2022836374.py in 3 # 2. Give the size of binning in time you would like 4 cwd = os.getcwd() ----> 5 f1 = CWClass(cwd + "/background_31Jan2022.txt", bin_size = 10) 6 # f2 = CWClass(cwd + "/Sheilding/bkg_nobox_sheild_long.txt", bin_size = 60)

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2328829766.py in init(self, fname, bin_size) 80 return sum(check == l)==len(l) 81 ---> 82 if not sequential(event_number): 83 print('Events in file are not sequential.') 84

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2328829766.py in sequential(l) 67 def sequential(l): 68 l = np.asarray(l).astype(int) ---> 69 check = range(min(l),max(l)+1) 70 71 if len(l)!=len(check):

TypeError: iteration over a 0-d array ` Tony

— Reply to this email directly, view it on GitHub < https://github.com/spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75#issuecomment-1025819428>, or unsubscribe < https://github.com/notifications/unsubscribe-auth/AANF5O6GNNOXHPXHVBQX5JLUY2N7JANCNFSM5MFYUG2A . Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.

You are receiving this because you commented.

— Reply to this email directly, view it on GitHub https://github.com/spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75#issuecomment-1025882067, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABJKGTT75PE727ME5O7N3CTUY2SIRANCNFSM5MFYUG2A . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you authored the thread.Message ID: <spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75/1025882067@ github.com>

b'##########################################################################################\r\n'b'### CosmicWatch: The Desktop Muon Detector\r\n'b'### Questions? @.***\r\n'b'### Comp_date Comp_time Event Ardn_time[ms] ADC[0-1023] SiPM[mV] Deadtime[ms] Temp[C] Name\r\n'b'##########################################################################################\r\n'Device ID: b'\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\r\n'2022-01-31 14:15:29.843680 b'1 486 170 29.19 348 21.01\r\n'2022-01-31 14:15:29.943407 b'2 586 342 64.07 350 21.09\r\n'2022-01-31 14:15:30.039604 b'3 682 95 21.58 352 20.71\r\n'2022-01-31 14:15:30.304830 b'4 947 310 55.16 354 21.09\r\n'2022-01-31 14:15:30.655584 b'5 1297 369 73.42 444 20.90\r\n'2022-01-31 14:15:31.103117 b'6 1744 291 50.97 446 20.76\r\n'2022-01-31 14:15:31.447996 b'7 2000 55 16.58 448 20.74\r\n'2022-01-31 14:15:31.862813 b'8 2504 175 29.94 538 21.14\r\n'2022-01-31 14:15:35.187893 b'9 5827 53 16.22 804 20.79\r\n'2022-01-31 14:15:35.699327 b'10 6337 170 29.19 893 21.14\r\n'2022-01-31 14:15:35.979665 b'11 6616 438 107.18 895 21.01\r\n'2022-01-31 14:15:37.072930 b'12 7710 89 21.05 985 20.79\r\n'2022-01-31 14:15:37.566235 b'13 8202 264 45.61 1075 21.06\r\n'2022-01-31 14:15:37.676366 b'14 8312 113 23.02 1077 20.68\r\n'2022-01-31 14:15:37.691931 b'15 8317 110 22.78 1079 20.90\r\n'2022-01-31 14:15:38.469584 b'16 9105 80 20.14 1169 20.87\r\n'2022-01-31 14:15:38.522929 b'17 9158 285 49.78 1171 20.74\r\n'2022-01-31 14:15:38.600990 b'18 9236 98 21.83 1173 20.98\r\n'2022-01-31 14:15:38.938683 b'19 9573 325 59.05 1175 20.82\r\n'2022-01-31 14:15:40.244269 b'20 10878 362 70.92 1265 20.50\r\n'2022-01-31 14:15:40.455933 b'21 10999 97 21.75 1267 21.01\r\n'2022-01-31 14:15:40.799907 b'22 11433 384 80.08 1357 20.68\r\n'2022-01-31 14:15:40.836483 b'23 11470 58 17.10 1359 21.09\r\n'2022-01-31 14:15:41.344808 b'24 11978 122 23.75 1361 20.87\r\n'2022-01-31 14:15:41.520673 b'25 12154 66 18.36 1451 20.90\r\n'2022-01-31 14:15:41.875752 b'26 12508 355 68.30 1453 20.90\r\n'2022-01-31 14:15:42.074941 b'27 12707 228 39.00 1455 21.11\r\n'2022-01-31 14:15:43.461080 b'28 14093 98 21.83 1633 21.09\r\n'2022-01-31 14:15:43.914702 b'29 14546 54 16.41 1635 20.95\r\n'2022-01-31 14:15:44.711404 b'30 15341 272 47.08 1725 20.87\r\n'2022-01-31 14:15:44.975084 b'31 15605 164 28.34 1727 21.14\r\n'2022-01-31 14:15:46.327652 b'32 16957 175 29.94 1817 20.79\r\n'2022-01-31 14:15:47.835915 b'33 18465 90 21.14 1995 21.06\r\n'2022-01-31 14:15:48.699054 b'34 19327 75 19.57 2085 21.19\r\n'2022-01-31 14:15:49.029457 b'35 19657 50 15.67 2087 20.79\r\n'2022-01-31 14:15:49.548299 b'36 20175 353 67.64 2177 21.14\r\n'2022-01-31 14:15:50.462456 b'37 20992 51 15.86 2179 20.68\r\n'2022-01-31 14:15:50.710877 b'38 21337 78 19.92 2269 20.79\r\n'2022-01-31 14:15:51.352659 b'39 21979 60 17.43 2271 21.06\r\n'2022-01-31 14:15:51.894430 b'40 22520 279 48.45 2360 20.68\r\n'2022-01-31 14:15:52.181818 b'41 22807 59 17.27 2362 20.82\r\n'2022-01-31 14:15:52.206576 b'42 22831 141 25.53 2364 20.84\r\n'2022-01-31 14:15:52.857607 b'43 23482 139 25.32 2454 20.76\r\n'2022-01-31 14:15:54.824283 b'44 25448 146 26.08 2632 20.82\r\n'2022-01-31 14:15:55.726630 b'45 26349 100 22.00 2722 20.98\r\n'2022-01-31 14:15:55.923630 b'46 26547 51 15.86 2724 21.14\r\n'2022-01-31 14:15:55.939755 b'47 26555 265 45.75 2726 20.87\r\n'2022-01-31 14:15:56.124108 b'48 26747 133 24.73 2728 20.93\r\n'2022-01-31 14:15:56.583773 b'49 27207 53 16.22 2818 20.82\r\n'2022-01-31 14:15:57.322197 b'50 27944 55 16.58 2820 21.09\r\n'2022-01-31 14:15:57.467119 b'51 27987 73 19.32 2822 21.01\r\n'2022-01-31 14:15:57.860759 b'52 28482 137 25.12 2912 21.14\r\n'2022-01-31 14:15:58.137571 b'53 28759 102 22.15 2914 21.09\r\n'2022-01-31 14:15:58.803734 b'54 29425 96 21.67 3004 20.95\r\n'2022-01-31 14:15:58.840176 b'55 29461 56 16.76 3006 20.93\r\n'2022-01-31 14:15:59.604053 b'56 30224 403 88.99 3096 20.82\r\n'2022-01-31 14:16:00.244108 b'57 30864 229 39.22 3098 20.74\r\n'2022-01-31 14:16:01.842085 b'58 32460 163 28.20 3276 20.66\r\n'2022-01-31 14:16:02.333074 b'59 32951 308 54.81 3278 21.30\r\n'2022-01-31 14:16:02.536430 b'60 33154 105 22.39 3368 20.90\r\n'2022-01-31 14:16:02.885699 b'61 33504 348 65.64 3370 20.95\r\n'2022-01-31 14:16:02.901974 b'62 33507 316 56.81 3372 20.74\r\n'2022-01-31 14:16:04.612210 b'63 35230 51 15.86 3550 20.74\r\n'2022-01-31 14:16:04.806405 b'64 35424 59 17.27 3552 21.22\r\n'2022-01-31 14:16:06.645471 b'65 37261 49 15.48 3730 20.76\r\n'2022-01-31 14:16:06.724131 b'66 37340 58 17.10 3732 20.98\r\n'2022-01-31 14:16:07.212049 b'67 37827 264 45.61 3734 21.06\r\n'2022-01-31 14:16:07.654611 b'68 38269 250 43.04 3824 20.66\r\n'2022-01-31 14:16:07.917460 b'69 38531 157 27.40 3826 20.55\r\n'2022-01-31 14:16:08.189067 b'70 38803 609 211.41 3828 20.90\r\n'2022-01-31 14:16:08.705841 b'71 39320 290 50.82 3919 20.79\r\n'2022-01-31 14:16:09.476858 b'72 40090 79 20.03 4009 20.68\r\n'2022-01-31 14:16:10.283667 b'73 40897 66 18.36 4011 21.09\r\n'2022-01-31 14:16:10.743326 b'74 41356 188 32.01 4100 21.14\r\n'2022-01-31 14:16:10.919663 b'75 41532 117 23.34 4102 21.14\r\n'2022-01-31 14:16:13.597246 b'76 44208 97 21.75 4368 20.66\r\n'2022-01-31 14:16:14.093537 b'77 44704 79 20.03 4370 20.58\r\n'2022-01-31 14:16:14.207832 b'78 44818 102 22.15 4372 21.09\r\n'2022-01-31 14:16:14.263243 b'79 44873 338 62.67 4374 20.71\r\n'2022-01-31 14:16:14.530747 b'80 45141 58 17.10 4464 20.76\r\n'2022-01-31 14:16:15.037004 b'81 45647 145 25.96 4466 21.06\r\n'2022-01-31 14:16:15.539781 b'82 46149 311 55.50 4556 20.93\r\n'2022-01-31 14:16:16.153321 b'83 46762 135 24.92 4558 20.76\r\n'2022-01-31 14:16:16.620115 b'84 47228 116 23.26 4648 20.79\r\n'2022-01-31 14:16:16.639343 b'85 47248 222 37.96 4650 20.76\r\n'2022-01-31 14:16:16.718099 b'86 47327 128 24.27 4652 20.93\r\n'2022-01-31 14:16:17.570377 b'87 48178 160 27.80 4741 20.68\r\n'2022-01-31 14:16:18.813473 b'88 49421 223 38.11 4831 20.60\r\n'2022-01-31 14:16:18.829680 b'89 49427 127 24.18 4833 20.84\r\n'2022-01-31 14:16:19.510635 b'90 50117 382 78.66 4923 20.71\r\n'2022-01-31 14:16:19.737734 b'91 50344 320 57.70 4925 20.68\r\n'2022-01-31 14:16:20.087271 b'92 50694 99 21.91 4927 21.01\r\n'2022-01-31 14:16:20.576293 b'93 51182 68 18.65 5017 21.19\r\n'2022-01-31 14:16:20.592578 b'94 51190 366 72.41 5019 20.87\r\n'2022-01-31 14:16:21.071918 b'95 51677 217 37.04 5021 21.01\r\n'2022-01-31 14:16:21.164389 b'96 51769 132 24.63 5023 20.79\r\n'2022-01-31 14:16:21.223061 b'97 51829 48 15.29 5025 20.74\r\n'2022-01-31 14:16:21.879061 b'98 52483 229 39.22 5115 20.63\r\n'2022-01-31 14:16:22.159623 b'99 52764 104 22.31 5117 20.74\r\n'2022-01-31 14:16:22.328909 b'100 52933 257 44.29 5119 21.09\r\n'2022-01-31 14:16:22.345197 b'101 52944 60 17.43 5121 20.76\r\n'2022-01-31 14:16:22.693410 b'102 53297 138 25.22 5211 20.79\r\n'2022-01-31 14:16:23.120475 b'103 53724 300 52.79 5213 20.95\r\n'2022-01-31 14:16:23.670590 b'104 54274 91 21.23 5303 20.76\r\n'2022-01-31 14:16:23.727570 b'105 54331 94 21.50 5305 20.74\r\n'2022-01-31 14:16:24.160413 b'106 54763 109 22.70 5307 20.74\r\n'2022-01-31 14:16:24.910045 b'107 55512 158 27.53 5397 21.22\r\n'2022-01-31 14:16:26.808062 b'108 57409 362 70.92 5575 20.79\r\n'2022-01-31 14:16:26.843390 b'109 57444 142 25.64 5577 21.03\r\n'2022-01-31 14:16:26.901935 b'110 57503 72 19.19 5579 20.79\r\n'2022-01-31 14:16:27.093764 b'111 57695 75 19.57 5581 20.60\r\n'2022-01-31 14:16:27.236914 b'112 57837 267 46.14 5583 20.84\r\n'2022-01-31 14:16:28.359778 b'113 58959 148 26.30 5673 21.11\r\n'2022-01-31 14:16:28.536844 b'114 59137 71 19.06 5763 20.66\r\n'2022-01-31 14:16:28.907465 b'115 59507 163 28.20 5765 20.71\r\n'2022-01-31 14:16:29.084148 b'116 59683 310 55.16 5767 20.90\r\n'2022-01-31 14:16:29.225894 b'117 59825 195 33.17 5769 20.90\r\n'2022-01-31 14:16:29.746672 b'118 60345 274 47.52 5859 20.87\r\n'2022-01-31 14:16:30.956755 b'119 61555 316 56.81 5949 20.87\r\n'2022-01-31 14:16:31.201613 b'120 61800 53 16.22 5951 21.25\r\n'2022-01-31 14:16:32.959097 b'121 63556 50 15.67 6129 21.35\r\n'2022-01-31 14:16:33.318564 b'122 63915 162 28.06 6131 20.82\r\n'2022-01-31 14:16:33.846832 b'123 64443 273 47.25 6221 20.84\r\n'2022-01-31 14:16:34.966078 b'124 65561 287 50.23 6311 20.74\r\n'2022-01-31 14:16:35.230033 b'125 65825 57 16.93 6313 21.19\r\n'2022-01-31 14:16:37.817681 b'126 68411 104 22.31 6579 20.90\r\n'2022-01-31 14:16:40.003766 b'127 70595 119 23.50 6757 21.17\r\n'2022-01-31 14:16:40.072862 b'128 70665 169 29.05 6759 21.09\r\n'2022-01-31 14:16:41.589584 b'129 72180 344 64.67 6937 21.35\r\n'2022-01-31 14:16:41.655451 b'130 72247 76 19.69 6939 21.03\r\n'2022-01-31 14:16:41.697751 b'131 72289 152 26.78 6941 20.98\r\n'2022-01-31 14:16:41.818487 b'132 72409 245 42.08 6943 20.79\r\n'2022-01-31 14:16:41.876347 b'133 72467 97 21.75 6945 20.82\r\n'2022-01-31 14:16:42.069967 b'134 72660 307 54.48 6947 20.76\r\n'2022-01-31 14:16:42.631484 b'135 73221 268 46.26 7037 20.93\r\n'2022-01-31 14:16:42.669434 b'136 73259 263 45.37 7039 20.68\r\n'2022-01-31 14:16:43.009870 b'137 73600 128 24.27 7041 21.19\r\n'2022-01-31 14:16:43.770700 b'138 74360 232 39.76 7130 21.14\r\n'2022-01-31 14:16:44.148197 b'139 74738 89 21.05 7132 20.76\r\n'2022-01-31 14:16:44.869834 b'140 75458 103 22.23 7222 21.22\r\n'2022-01-31 14:16:45.189459 b'141 75777 322 58.27 7224 21.14\r\n'2022-01-31 14:16:45.741416 b'142 76330 81 20.25 7314 21.22\r\n'2022-01-31 14:16:46.187318 b'143 76775 51 15.86 7316 20.79\r\n'2022-01-31 14:16:46.343253 b'144 76930 165 28.48 7318 20.74\r\n'2022-01-31 14:16:46.740889 b'145 77328 169 29.05 7408 21.09\r\n'2022-01-31 14:16:46.950667 b'146 77537 674 306.63 7410 21.14\r\n'2022-01-31 14:16:47.030351 b'147 77617 217 37.04 7412 21.09\r\n'2022-01-31 14:16:48.154966 b'148 78742 78 19.92 7502 20.76\r\n'2022-01-31 14:16:48.323504 b'149 78910 51 15.86 7504 20.82\r\n'2022-01-31 14:16:48.675039 b'150 79261 359 69.86 7594 20.87\r\n'2022-01-31 14:16:49.182060 b'151 79768 84 20.57 7596 20.95\r\n'2022-01-31 14:16:49.757568 b'152 80342 194 33.00 7686 21.19\r\n'2022-01-31 14:16:50.033380 b'153 80619 71 19.06 7688 21.11\r\n'2022-01-31 14:16:52.272620 b'154 82856 212 36.14 7866 20.87\r\n'2022-01-31 14:16:52.584347 b'155 83168 71 19.06 7956 21.06\r\n'2022-01-31 14:16:52.646731 b'156 83230 118 23.42 7958 20.87\r\n'2022-01-31 14:16:53.065209 b'157 83648 106 22.47 7960 20.95\r\n'2022-01-31 14:16:53.577955 b'158 84160 189 32.16 8050 20.82\r\n'2022-01-31 14:16:54.073955 b'159 84656 166 28.62 8052 20.98\r\n'2022-01-31 14:16:55.182103 b'160 85763 459 117.54 8142 20.87\r\n'2022-01-31 14:16:55.282273 b'161 85864 304 53.73 8144 20.76\r\n'2022-01-31 14:16:56.296039 b'162 86877 87 20.86 8234 20.79\r\n'2022-01-31 14:16:56.616893 b'163 87197 279 48.45 8324 20.74\r\n'2022-01-31 14:16:57.118741 b'164 87699 209 35.61 8326 20.71\r\n'2022-01-31 14:16:57.574037 b'165 88153 205 34.91 8416 20.71\r\n'2022-01-31 14:16:57.742874 b'166 88322 104 22.31 8418 20.71\r\n'2022-01-31 14:16:57.806547 b'167 88386 343 64.34 8420 21.14\r\n'2022-01-31 14:16:57.905993 b'168 88485 473 126.29 8422 20.82\r\n'2022-01-31 14:16:58.107260 b'169 88686 336 61.98 8424 20.84\r\n'2022-01-31 14:16:58.780100 b'170 89359 209 35.61 8514 20.82\r\n'2022-01-31 14:16:58.827628 b'171 89407 98 21.83 8516 20.90\r\n'2022-01-31 14:17:00.049389 b'172 90627 344 64.67 8606 20.74\r\n'2022-01-31 14:17:01.167590 b'173 91745 45 14.71 8696 20.84\r\n'2022-01-31 14:17:01.644489 b'174 92222 62 17.75 8786 21.22\r\n'2022-01-31 14:17:02.068117 b'175 92645 253 43.55 8788 21.06\r\n'2022-01-31 14:17:02.109646 b'176 92686 664 270.86 8790 20.82\r\n'2022-01-31 14:17:02.896680 b'177 93473 169 29.05 8881 21.27\r\n'2022-01-31 14:17:03.528561 b'178 94104 187 31.84 8971 21.09\r\n'2022-01-31 14:17:04.027111 b'179 94602 245 42.08 8973 21.17\r\n'2022-01-31 14:17:04.270952 b'180 94845 502 141.38 8975 20.95\r\n'2022-01-31 14:17:04.297418 b'181 94873 52 16.04 8977 21.35\r\n'2022-01-31 14:17:04.758777 b'182 95333 312 55.68 9067 20.98\r\n'2022-01-31 14:17:05.143664 b'183 95718 148 26.30 9069 20.74\r\n'2022-01-31 14:17:06.106409 b'184 96680 175 29.94 9159 21.03\r\n'2022-01-31 14:17:06.337806 b'185 96912 56 16.76 9161 20.90\r\n'2022-01-31 14:17:08.161809 b'186 98734 61 17.60 9339 21.14\r\n'2022-01-31 14:17:08.684318 b'187 99256 142 25.64 9429 20.82\r\n'2022-01-31 14:17:09.805328 b'188 100376 162 28.06 9519 21.27\r\n'2022-01-31 14:17:10.546219 b'189 101117 87 20.86 9609 21.09\r\n'2022-01-31 14:17:11.133795 b'190 101704 179 30.55 9611 20.79\r\n'2022-01-31 14:17:11.578376 b'191 102148 59 17.27 9701 20.82\r\n'2022-01-31 14:17:11.608254 b'192 102177 527 155.96 9703 21.30\r\n'2022-01-31 14:17:11.625561 b'193 102191 258 44.50 9705 21.11\r\n'2022-01-31 14:17:11.648678 b'194 102219 70 18.93 9707 20.98\r\n'2022-01-31 14:17:12.308530 b'195 102878 49 15.48 9709 20.82\r\n'2022-01-31 14:17:12.527153 b'196 103096 81 20.25 9799 21.06\r\n'2022-01-31 14:17:13.299457 b'197 103867 242 41.58 9801 20.68\r\n'2022-01-31 14:17:15.246482 b'198 105813 376 76.43 9979 20.68\r\n'2022-01-31 14:17:15.639170 b'199 106205 312 55.68 10069 20.90\r\n'2022-01-31 14:17:15.935595 b'200 106502 53 16.22 10071 20.74\r\n'2022-01-31 14:17:16.328315 b'201 106894 103 22.23 10073 21.01\r\n'2022-01-31 14:17:17.614805 b'202 108180 114 23.10 10251 20.90\r\n'2022-01-31 14:17:18.563455 b'203 109127 577 186.63 10341 21.30\r\n'2022-01-31 14:17:18.723717 b'204 109288 170 29.19 10343 21.27\r\n'2022-01-31 14:17:18.784985 b'205 109349 270 46.71 10345 21.19\r\n'2022-01-31 14:17:19.762128 b'206 110326 67 18.51 10435 21.01\r\n'2022-01-31 14:17:20.193944 b'207 110757 161 27.93 10437 21.27\r\n'2022-01-31 14:17:20.211637 b'208 110760 403 88.99 10439 21.33\r\n'2022-01-31 14:17:20.833044 b'209 111395 146 26.08 10529 21.01\r\n'2022-01-31 14:17:21.546255 b'210 112108 316 56.81 10619 21.09\r\n'2022-01-31 14:17:21.563965 b'211 112125 320 57.70 10621 20.84\r\n'2022-01-31 14:17:21.697530 b'212 112259 140 25.42 10623 21.17\r\n'2022-01-31 14:17:23.183718 b'213 113744 277 48.09 10713 20.76\r\n'2022-01-31 14:17:23.238325 b'214 113799 180 30.71 10715 20.84\r\n'2022-01-31 14:17:26.033617 b'215 116593 185 31.51 10981 21.06\r\n'2022-01-31 14:17:26.096967 b'216 116655 672 306.22 10983 20.90\r\n'2022-01-31 14:17:26.675908 b'217 117234 166 28.62 11074 20.95\r\n'2022-01-31 14:17:27.218654 b'218 117777 217 37.04 11076 20.95\r\n'2022-01-31 14:17:29.015708 b'219 119572 234 40.06 11254 20.90\r\n'2022-01-31 14:17:29.203785 b'220 119761 63 17.91 11256 21.19\r\n'2022-01-31 14:17:29.250757 b'221 119808 71 19.06 11258 21.35\r\n'2022-01-31 14:17:32.193661 b'222 122748 472 125.87 11524 20.82\r\n'2022-01-31 14:17:33.020712 b'223 123575 96 21.67 11615 21.14\r\n'2022-01-31 14:17:33.868363 b'224 124422 400 87.27 11705 21.14\r\n'2022-01-31 14:17:35.537352 b'225 125998 158 27.53 11795 21.22\r\n'2022-01-31 14:17:35.974688 b'226 126527 56 16.76 11885 21.22\r\n'2022-01-31 14:17:37.538001 b'227 127989 162 28.06 11975 21.06\r\n'2022-01-31 14:17:38.271455 b'228 128822 141 25.53 12065 21.38\r\n'2022-01-31 14:17:38.339948 b'229 128890 176 30.09 12067 20.84\r\n'2022-01-31 14:17:38.606422 b'230 129157 81 20.25 12157 20.82\r\n'2022-01-31 14:17:38.753315 b'231 129304 63 17.91 12159 21.22\r\n'2022-01-31 14:17:39.539410 b'232 129997 314 56.08 12161 20.95\r\n'2022-01-31 14:17:40.000224 b'233 130550 116 23.26 12251 20.93\r\n'2022-01-31 14:17:40.205951 b'234 130755 259 44.69 12253 20.93\r\n'2022-01-31 14:17:40.971332 b'235 131520 61 17.60 12343 20.95\r\n'2022-01-31 14:17:41.266077 b'236 131815 57 16.93 12345 20.93\r\n'2022-01-31 14:17:41.295091 b'237 131843 186 31.68 12347 21.22\r\n'2022-01-31 14:17:41.312271 b'238 131858 96 21.67 12349 20.98\r\n'2022-01-31 14:17:41.389114 b'239 131938 186 31.68 12351 20.79\r\n'2022-01-31 14:17:41.842977 b'240 132391 306 54.23 12441 21.03\r\n'2022-01-31 14:17:42.008162 b'241 132556 160 27.80 12443 20.95\r\n'2022-01-31 14:17:42.418690 b'242 132967 51 15.86 12445 21.17\r\n'2022-01-31 14:17:43.030029 b'243 133577 381 78.56 12535 21.03\r\n'2022-01-31 14:17:43.075701 b'244 133622 629 221.91 12537 20.79\r\n'2022-01-31 14:17:43.292436 b'245 133840 94 21.50 12539 21.14\r\n'2022-01-31 14:17:43.839724 b'246 134387 144 25.85 12629 20.82\r\n'2022-01-31 14:17:44.282716 b'247 134829 56 16.76 12631 21.22\r\n'2022-01-31 14:17:45.227912 b'248 135774 43 14.32 12721 20.82\r\n'2022-01-31 14:17:46.164284 b'249 136709 205 34.91 12811 21.22\r\n'2022-01-31 14:17:46.710669 b'250 137255 539 169.62 12901 20.84\r\n'2022-01-31 14:17:46.763094 b'251 137308 114 23.10 12903 21.30\r\n'2022-01-31 14:17:46.897013 b'252 137442 157 27.40 12905 21.09\r\n'2022-01-31 14:17:47.682963 b'253 138228 54 16.41 12995 20.90\r\n'2022-01-31 14:17:48.780320 b'254 139324 128 24.27 13085 20.98\r\n'2022-01-31 14:17:49.901891 b'255 140445 159 27.66 13174 20.87\r\n'2022-01-31 14:17:50.680237 b'256 141222 131 24.54 13264 21.22\r\n'2022-01-31 14:17:50.797542 b'257 141340 126 24.09 13266 20.79\r\n'2022-01-31 14:17:50.815380 b'258 141345 108 22.63 13268 21.22\r\n'2022-01-31 14:17:52.429983 b'259 142971 92 21.32 13358 21.01\r\n'2022-01-31 14:17:54.230645 b'260 144770 251 43.19 13536 21.09\r\n'2022-01-31 14:17:54.375214 b'261 144915 234 40.06 13538 20.82\r\n'2022-01-31 14:17:55.717695 b'262 146257 95 21.58 13716 20.98\r\n'2022-01-31 14:17:56.101865 b'263 146641 54 16.41 13718 21.06\r\n'2022-01-31 14:17:56.551139 b'264 146988 283 49.24 13720 20.74\r\n'2022-01-31 14:17:56.896319 b'265 147434 373 75.04 13810 21.06\r\n'2022-01-31 14:17:56.914198 b'266 147452 160 27.80 13812 20.82\r\n'2022-01-31 14:17:57.689181 b'267 148226 181 30.87 13902 21.22\r\n'2022-01-31 14:17:58.929269 b'268 149466 99 21.91 13992 20.98\r\n'2022-01-31 14:17:59.438880 b'269 149975 71 19.06 13994 20.82\r\n'2022-01-31 14:17:59.754622 b'270 150290 350 66.46 14084 21.03\r\n'2022-01-31 14:17:59.888904 b'271 150425 98 21.83 14086 20.87\r\n'2022-01-31 14:18:01.256212 b'272 151791 151 26.66 14176 21.03\r\n'2022-01-31 14:18:02.947888 b'273 153481 464 121.64 14354 20.90\r\n'2022-01-31 14:18:03.325233 b'274 153859 50 15.67 14356 20.87\r\n'2022-01-31 14:18:03.987490 b'275 154520 191 32.51 14446 20.98\r\n'2022-01-31 14:18:04.134684 b'276 154667 345 64.98 14448 21.33\r\n'2022-01-31 14:18:04.398167 b'277 154931 106 22.47 14450 20.74\r\n'2022-01-31 14:18:04.708961 b'278 155241 169 29.05 14540 21.22\r\n'2022-01-31 14:18:05.167984 b'279 155701 45 14.71 14542 21.06\r\n'2022-01-31 14:18:05.215644 b'280 155747 486 135.98 14544 20.74\r\n'2022-01-31 14:18:06.143041 b'281 156674 119 23.50 14635 20.87\r\n'2022-01-31 14:18:06.168100 b'282 156700 272 47.08 14637 21.01\r\n'2022-01-31 14:18:09.442881 b'283 159972 282 49.11 14903 21.11\r\n'2022-01-31 14:18:09.897332 b'284 160426 333 61.18 14993 20.84\r\n'2022-01-31 14:18:10.055802 b'285 160584 376 76.43 14995 21.22\r\n'2022-01-31 14:18:10.614546 b'286 161143 231 39.55 15085 21.09\r\n'2022-01-31 14:18:10.644148 b'287 161172 409 91.12 15087 20.84\r\n'2022-01-31 14:18:11.091118 b'288 161619 133 24.73 15089 21.01\r\n'2022-01-31 14:18:11.961875 b'289 162489 286 49.78 15179 20.82\r\n'2022-01-31 14:18:12.288785 b'290 162816 309 55.01 15181 21.22\r\n'2022-01-31 14:18:12.897785 b'291 163425 159 27.66 15271 21.11\r\n'2022-01-31 14:18:13.643957 b'292 164170 349 66.33 15361 20.93\r\n'2022-01-31 14:18:13.912579 b'293 164438 296 52.05 15363 20.79\r\n'2022-01-31 14:18:14.611974 b'294 165138 283 49.24 15453 20.90\r\n'2022-01-31 14:18:16.388794 b'295 166914 51 15.86 15543 21.38\r\n'2022-01-31 14:18:16.566360 b'296 167091 77 19.81 15633 21.06\r\n'2022-01-31 14:18:20.634148 b'297 171156 50 15.67 15987 21.06\r\n'2022-01-31 14:18:20.651862 b'298 171164 311 55.50 15989 21.22\r\n'2022-01-31 14:18:22.836483 b'299 173356 159 27.66 16167 21.30\r\n'2022-01-31 14:18:22.898530 b'300 173418 146 26.08 16169 21.19\r\n'2022-01-31 14:18:23.695871 b'301 174216 95 21.58 16259 20.93\r\n'2022-01-31 14:18:24.036629 b'302 174556 243 41.74 16261 20.79\r\n'2022-01-31 14:18:24.099298 b'303 174618 146 26.08 16263 21.46\r\n'2022-01-31 14:18:24.635331 b'304 175154 258 44.50 16353 21.03\r\n'2022-01-31 14:18:24.860607 b'305 175379 170 29.19 16355 21.25\r\n'2022-01-31 14:18:25.665394 b'306 176184 200 34.05 16445 21.11\r\n'2022-01-31 14:18:25.804970 b'307 176323 98 21.83 16447 21.17\r\n'2022-01-31 14:18:26.023110 b'308 176542 42 14.12 16449 20.82\r\n'2022-01-31 14:18:26.329430 b'309 176847 67 18.51 16451 20.93\r\n'2022-01-31 14:18:26.684274 b'310 177202 138 25.22 16541 20.98\r\n'2022-01-31 14:18:26.709657 b'311 177227 201 34.22 16543 21.03\r\n'2022-01-31 14:18:26.916601 b'312 177434 92 21.32 16545 21.25\r\n'2022-01-31 14:18:26.996514 b'313 177514 43 14.32 16547 20.93\r\n'2022-01-31 14:18:27.192278 b'314 177708 538 158.61 16549 21.03\r\n'2022-01-31 14:18:29.426258 b'315 179942 71 19.06 16729 20.82\r\n'2022-01-31 14:18:29.739377 b'316 180255 187 31.84 16819 20.87\r\n'2022-01-31 14:18:29.756882 b'317 180269 187 31.84 16821 21.03\r\n'2022-01-31 14:18:30.853467 b'318 181368 164 28.34 16911 21.09\r\n'2022-01-31 14:18:31.239641 b'319 181754 81 20.25 16913 20.95\r\n'2022-01-31 14:18:31.949571 b'320 182463 362 70.92 17003 21.03\r\n'2022-01-31 14:18:32.451084 b'321 182965 197 33.52 17005 21.19\r\n'2022-01-31 14:18:32.468240 b'322 182968 57 16.93 17007 21.22\r\n'2022-01-31 14:18:33.121691 b'323 183634 163 28.20 17097 21.19\r\n'2022-01-31 14:18:35.107870 b'324 185619 163 28.20 17275 21.17\r\n'2022-01-31 14:18:35.596608 b'325 186108 197 33.52 17365 21.06\r\n'2022-01-31 14:18:37.057972 b'326 187568 260 44.83 17455 20.87\r\n'2022-01-31 14:18:38.113362 b'327 188622 504 143.61 17545 21.35\r\n'2022-01-31 14:18:38.184545 b'328 188694 310 55.16 17547 20.90\r\n'2022-01-31 14:18:39.814911 b'329 190323 123 23.83 17725 20.79\r\n'2022-01-31 14:18:40.411426 b'330 190919 347 65.45 17727 21.09\r\n'2022-01-31 14:18:41.355601 b'331 191863 181 30.87 17817 20.82\r\n'2022-01-31 14:18:42.170355 b'332 192676 581 201.80 17907 20.79\r\n'2022-01-31 14:18:42.802409 b'333 193309 90 21.14 17998 21.30\r\n'2022-01-31 14:18:44.248220 b'334 194754 65 18.22 18088 20.87\r\n'2022-01-31 14:18:44.356243 b'335 194861 185 31.51 18090 20.84\r\n'2022-01-31 14:18:44.454830 b'336 194960 242 41.58 18092 21.25\r\n'2022-01-31 14:18:44.622978 b'337 195128 159 27.66 18182 20.82\r\n'2022-01-31 14:18:44.677852 b'338 195182 114 23.10 18184 21.19\r\n'2022-01-31 14:18:44.917724 b'339 195422 135 24.92 18186 20.93\r\n'2022-01-31 14:18:44.990284 b'340 195495 200 34.05 18188 21.14\r\n'2022-01-31 14:18:45.231383 b'341 195736 85 20.67 18190 21.46\r\n'2022-01-31 14:18:45.299645 b'342 195804 275 47.73 18192 21.25\r\n'2022-01-31 14:18:46.443784 b'343 196947 305 53.88 18282 21.22\r\n'2022-01-31 14:18:48.164964 b'344 198667 473 126.29 18460 20.84\r\n'2022-01-31 14:18:49.771243 b'345 200273 206 35.07 18640 21.19\r\n'2022-01-31 14:18:50.290418 b'346 200792 50 15.67 18642 21.11\r\n'2022-01-31 14:18:50.649892 b'347 201150 288 50.42 18732 20.90\r\n'2022-01-31 14:18:50.891920 b'348 201393 75 19.57 18734 21.14\r\n'2022-01-31 14:18:51.015428 b'349 201516 53 16.22 18736 21.19\r\n'2022-01-31 14:18:52.055692 b'350 202556 59 17.27 18826 20.90\r\n'2022-01-31 14:18:52.774531 b'351 203274 57 16.93 18916 21.14\r\n'2022-01-31 14:18:53.824928 b'352 204324 56 16.76 19006 21.06\r\n'2022-01-31 14:18:54.013171 b'353 204512 178 30.40 19008 21.09\r\n'2022-01-31 14:18:54.821720 b'354 205320 240 41.21 19098 21.35\r\n'2022-01-31 14:18:55.592394 b'355 205997 177 30.25 19100 20.98\r\n'2022-01-31 14:18:56.242901 b'356 206740 55 16.58 19190 21.19\r\n'2022-01-31 14:18:56.883522 b'357 207380 83 20.46 19280 20.79\r\n'2022-01-31 14:18:56.917649 b'358 207414 325 59.05 19282 21.33\r\n'2022-01-31 14:18:57.110947 b'359 207608 91 21.23 19284 21.06\r\n'2022-01-31 14:18:59.100627 b'360 209595 274 47.52 19462 21.27\r\n'2022-01-31 14:19:00.601201 b'361 211095 77 19.81 19640 20.87\r\n'2022-01-31 14:19:00.747807 b'362 211242 99 21.91 19642 21.33\r\n'2022-01-31 14:19:01.221332 b'363 211715 81 20.25 19644 21.46\r\n'2022-01-31 14:19:01.325247 b'364 211818 174 29.79 19646 21.19\r\n'2022-01-31 14:19:01.597256 b'365 212090 522 154.94 19736 21.06\r\n'2022-01-31 14:19:01.813316 b'366 212307 71 19.06 19738 21.27\r\n'2022-01-31 14:19:02.187407 b'367 212680 103 22.23 19740 21.17\r\n'2022-01-31 14:19:02.865791 b'368 213358 194 33.00 19830 20.90\r\n'2022-01-31 14:19:03.783898 b'369 214276 89 21.05 19920 20.87\r\n'2022-01-31 14:19:03.990058 b'370 214482 94 21.50 19922 21.19\r\n'2022-01-31 14:19:05.147819 b'371 215638 553 176.67 20012 21.22\r\n'2022-01-31 14:19:05.307505 b'372 215798 169 29.05 20014 21.27\r\n'2022-01-31 14:19:06.790140 b'373 217279 354 67.99 20192 21.01\r\n'2022-01-31 14:19:06.854731 b'374 217344 302 53.30 20194 21.27\r\n'2022-01-31 14:19:07.392014 b'375 217881 167 28.76 20196 20.98\r\n'2022-01-31 14:19:07.470513 b'376 217960 63 17.91 20198 21.25\r\n'2022-01-31 14:19:07.716470 b'377 218206 71 19.06 20288 21.25\r\n'2022-01-31 14:19:07.831828 b'378 218321 96 21.67 20290 21.62\r\n'2022-01-31 14:19:08.231234 b'379 218720 143 25.74 20292 20.95\r\n'2022-01-31 14:19:08.257691 b'380 218746 298 52.37 20294 21.11\r\n'2022-01-31 14:19:08.679533 b'381 219168 293 51.29 20384 21.19\r\n'2022-01-31 14:19:08.705883 b'382 219194 156 27.28 20386 21.06\r\n'2022-01-31 14:19:08.941236 b'383 219429 100 22.00 20388 21.27\r\n'2022-01-31 14:19:10.787720 b'384 221274 167 28.76 20566 21.19\r\n'2022-01-31 14:19:12.328202 b'385 222814 328 59.71 20656 21.30\r\n'2022-01-31 14:19:12.413784 b'386 222900 65 18.22 20658 20.93\r\n'2022-01-31 14:19:13.185796 b'387 223671 150 26.54 20748 21.03\r\n'2022-01-31 14:19:14.762220 b'388 225247 65 18.22 20926 21.19\r\n'2022-01-31 14:19:15.007923 b'389 225492 63 17.91 20928 20.74\r\n'2022-01-31 14:19:15.695997 b'390 226179 89 21.05 21018 21.22\r\n'2022-01-31 14:19:15.713791 b'391 226184 340 63.47 21020 21.06\r\n'2022-01-31 14:19:15.856633 b'392 226340 44 14.51 21022 20.82\r\n'2022-01-31 14:19:15.909347 b'393 226393 97 21.75 21024 21.09\r\n'2022-01-31 14:19:15.927501 b'394 226400 435 104.92 21026 21.35\r\n'2022-01-31 14:19:16.013918 b'395 226497 105 22.39 21028 20.79\r\n'2022-01-31 14:19:16.690390 b'396 227173 67 18.51 21118 21.30\r\n'2022-01-31 14:19:17.191152 b'397 227673 288 50.42 21120 21.06\r\n'2022-01-31 14:19:17.938268 b'398 228420 143 25.74 21210 20.93\r\n'2022-01-31 14:19:18.440607 b'399 228922 117 23.34 21212 21.25\r\n'2022-01-31 14:19:18.502145 b'400 228983 164 28.34 21214 20.90\r\n'2022-01-31 14:19:19.029001 b'401 229511 71 19.06 21304 21.09\r\n'2022-01-31 14:19:19.732561 b'402 230212 502 141.38 21394 21.17\r\n'2022-01-31 14:19:21.088290 b'403 231568 165 28.48 21485 21.09\r\n'2022-01-31 14:19:22.179759 b'404 232658 146 26.08 21575 21.27\r\n'2022-01-31 14:19:22.664590 b'405 233143 135 24.92 21665 20.98\r\n'2022-01-31 14:19:23.112698 b'406 233591 50 15.67 21667 20.84\r\n'2022-01-31 14:19:23.993175 b'407 234471 62 17.75 21757 21.11\r\n'2022-01-31 14:19:24.085581 b'408 234563 147 26.19 21759 20.98\r\n'2022-01-31 14:19:26.067689 b'409 236544 306 54.23 21937 20.90\r\n'2022-01-31 14:19:26.084891 b'410 236554 56 16.76 21939 21.17\r\n'2022-01-31 14:19:26.318910 b'411 236795 331 60.51 21941 21.01\r\n'2022-01-31 14:19:26.670480 b'412 237146 86 20.77 22031 21.19\r\n'2022-01-31 14:19:26.719433 b'413 237195 130 24.45 22033 21.22\r\n'2022-01-31 14:19:27.117461 b'414 237593 88 20.96 22035 21.22\r\n'2022-01-31 14:19:27.153338 b'415 237629 109 22.70 22037 21.09\r\n'2022-01-31 14:19:28.129908 b'416 238605 84 20.57 22127 20.79\r\n'2022-01-31 14:19:28.896304 b'417 239370 294 51.51 22217 21.09\r\n'2022-01-31 14:19:28.913995 b'418 239384 270 46.71 22219 21.14\r\n'2022-01-31 14:19:29.438994 b'419 239912 240 41.21 22221 21.41\r\n'2022-01-31 14:19:29.904527 b'420 240378 75 19.57 22311 21.33\r\n'2022-01-31 14:19:30.379555 b'421 240853 93 21.41 22313 21.27\r\n'2022-01-31 14:19:30.809183 b'422 241282 46 14.91 22403 21.14\r\n'2022-01-31 14:19:30.880221 b'423 241353 399 87.30 22405 21.35\r\n'2022-01-31 14:19:31.324280 b'424 241797 355 68.30 22407 21.03\r\n'2022-01-31 14:19:32.209597 b'425 242681 406 89.20 22497 20.90\r\n'2022-01-31 14:19:34.777691 b'426 245248 61 17.60 22763 21.11\r\n'2022-01-31 14:19:34.913703 b'427 245384 153 26.90 22765 21.06\r\n'2022-01-31 14:19:35.172364 b'428 245642 152 26.78 22767 21.17\r\n'2022-01-31 14:19:35.462975 b'429 245932 310 55.16 22769 20.95\r\n'2022-01-31 14:19:35.695066 b'430 246164 323 58.48 22859 21.14\r\n'2022-01-31 14:19:35.872456 b'431 246342 100 22.00 22861 21.41\r\n'2022-01-31 14:19:37.406287 b'432 247875 76 19.69 22951 21.38\r\n'2022-01-31 14:19:38.946642 b'433 249413 325 59.05 23129 20.82\r\n'2022-01-31 14:19:40.250999 b'434 250718 159 27.66 23219 20.95\r\n'2022-01-31 14:19:40.282191 b'435 250749 81 20.25 23221 21.38\r\n'2022-01-31 14:19:40.623091 b'436 250994 159 27.66 23223 21.17\r\n'2022-01-31 14:19:40.770774 b'437 251237 111 22.86 23313 20.98\r\n'2022-01-31 14:19:40.861927 b'438 251328 292 51.11 23315 21.41\r\n'2022-01-31 14:19:41.741746 b'439 252207 49 15.48 23405 21.41\r\n'2022-01-31 14:19:42.217305 b'440 252683 316 56.81 23407 20.98\r\n'2022-01-31 14:19:42.872919 b'441 253337 328 59.71 23497 20.79\r\n'2022-01-31 14:19:42.971646 b'442 253436 173 29.64 23499 21.17\r\n'2022-01-31 14:19:43.624851 b'443 253997 57 16.93 23501 20.79\r\n'2022-01-31 14:19:44.203754 b'444 254667 149 26.42 23591 21.17\r\n'2022-01-31 14:19:44.453649 b'445 254917 227 38.83 23593 21.09\r\n'2022-01-31 14:19:45.245883 b'446 255709 100 22.00 23683 21.22\r\n'2022-01-31 14:19:45.752961 b'447 256216 53 16.22 23773 20.90\r\n'2022-01-31 14:19:45.801830 b'448 256264 196 33.35 23775 21.14\r\n'2022-01-31 14:19:46.349939 b'449 256812 412 92.93 23777 21.14\r\n'2022-01-31 14:19:46.839363 b'450 257302 76 19.69 23867 20.93\r\n'2022-01-31 14:19:47.425193 b'451 257887 398 85.63 23869 21.22\r\n'2022-01-31 14:19:47.778109 b'452 258239 77 19.81 23959 20.95\r\n'2022-01-31 14:19:48.969679 b'453 259430 262 45.24 24049 21.19\r\n'2022-01-31 14:19:49.004325 b'454 259465 138 25.22 24051 21.19\r\n'2022-01-31 14:19:51.665077 b'455 262123 129 24.35 24317 20.95\r\n'2022-01-31 14:19:52.376203 b'456 262834 147 26.19 24319 21.01\r\n'2022-01-31 14:19:52.999906 b'457 263457 182 31.03 24409 21.22\r\n'2022-01-31 14:19:53.104815 b'458 263562 166 28.62 24411 21.06\r\n'2022-01-31 14:19:53.349504 b'459 263807 69 18.79 24413 21.35\r\n'2022-01-31 14:19:53.522570 b'460 263979 117 23.34 24415 20.90\r\n'2022-01-31 14:19:53.865919 b'461 264322 208 35.43 24505 21.11\r\n'2022-01-31 14:19:53.889464 b'462 264346 192 32.67 24507 20.98\r\n'2022-01-31 14:19:54.092644 b'463 264549 234 40.06 24509 21.11\r\n'2022-01-31 14:19:54.286282 b'464 264743 138 25.22 24511 21.27\r\n'2022-01-31 14:19:55.217468 b'465 265674 79 20.03 24601 21.14\r\n'2022-01-31 14:19:55.858064 b'466 266314 100 22.00 24691 20.79\r\n'2022-01-31 14:19:55.983623 b'467 266439 427 101.26 24693 21.19\r\n'2022-01-31 14:19:57.355349 b'468 267810 134 24.82 24784 21.01\r\n'2022-01-31 14:19:58.212471 b'469 268667 314 56.08 24874 21.14\r\n'2022-01-31 14:19:58.947187 b'470 269401 236 40.44 24964 20.90\r\n'2022-01-31 14:20:01.302497 b'471 271754 139 25.32 25142 20.93\r\n'2022-01-31 14:20:01.434719 b'472 271887 218 37.23 25144 21.06\r\n'2022-01-31 14:20:01.499393 b'473 271951 173 29.64 25146 21.06\r\n'2022-01-31 14:20:02.913172 b'474 273364 249 42.85 25324 21.06\r\n'2022-01-31 14:20:02.957994 b'475 273409 126 24.09 25326 21.46\r\n'2022-01-31 14:20:03.152946 b'476 273603 282 49.11 25328 20.93\r\n'2022-01-31 14:20:03.379880 b'477 273831 61 17.60 25330 20.82\r\n'2022-01-31 14:20:04.763181 b'478 275213 365 71.38 25508 21.33\r\n'2022-01-31 14:20:04.888789 b'479 275339 56 16.76 25510 21.14\r\n'2022-01-31 14:20:05.387563 b'480 275837 94 21.50 25512 20.95\r\n'2022-01-31 14:20:05.451270 b'481 275900 62 17.75 25514 21.30\r\n'2022-01-31 14:20:06.070291 b'482 276519 319 57.64 25604 21.44\r\n'2022-01-31 14:20:06.183746 b'483 276632 58 17.10 25606 20.98\r\n'2022-01-31 14:20:07.985617 b'484 278433 388 81.40 25784 20.98\r\n'2022-01-31 14:20:08.724218 b'485 279171 235 40.29 25874 21.06\r\n'2022-01-31 14:20:09.139913 b'486 279586 278 48.30 25876 20.79\r\n'2022-01-31 14:20:09.426814 b'487 279873 318 57.28 25878 20.84\r\n'2022-01-31 14:20:10.062698 b'488 280508 453 113.81 25968 21.09\r\n'2022-01-31 14:20:11.463803 b'489 281908 134 24.82 26059 20.79\r\n'2022-01-31 14:20:12.130812 b'490 282575 142 25.64 26149 21.38\r\n'2022-01-31 14:20:12.224270 b'491 282668 138 25.22 26151 21.06\r\n'2022-01-31 14:20:12.412803 b'492 282857 154 27.02 26153 20.95\r\n'2022-01-31 14:20:12.473869 b'493 282918 390 82.70 26155 21.27\r\n'2022-01-31 14:20:12.491624 b'494 282931 222 37.96 26157 21.06\r\n'2022-01-31 14:20:12.763967 b'495 283208 59 17.27 26247 20.90\r\n'

spenceraxani commented 2 years ago

Can you send the txt file in an email? @. @.>

On Jan 31, 2022, at 11:07 AM, tony1tf @.***> wrote:

Here it as. Tony

On Mon, 31 Jan 2022 at 15:21, Spencer N. Axani @.***> wrote:

Hi Tony,

Could you send me the file you are trying to read?

Thanks,

Spencer

On Jan 31, 2022, at 9:45 AM, tony1tf @.***> wrote:

Hi Spencer I am trying to run your example plotting script, and have put my file name into the code, but I can't seem to get round the following errors:

TypeError Traceback (most recent call last)

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2022836374.py in 3 # 2. Give the size of binning in time you would like 4 cwd = os.getcwd() ----> 5 f1 = CWClass(cwd + "/background_31Jan2022.txt", bin_size = 10) 6 # f2 = CWClass(cwd + "/Sheilding/bkg_nobox_sheild_long.txt", bin_size = 60)

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2328829766.py in init(self, fname, bin_size) 80 return sum(check == l)==len(l) 81 ---> 82 if not sequential(event_number): 83 print('Events in file are not sequential.') 84

/var/folders/43/v1d780lj3dvff3z8g6t_qphr0000gn/T/ipykernel_63770/2328829766.py in sequential(l) 67 def sequential(l): 68 l = np.asarray(l).astype(int) ---> 69 check = range(min(l),max(l)+1) 70 71 if len(l)!=len(check):

TypeError: iteration over a 0-d array ` Tony

— Reply to this email directly, view it on GitHub < https://github.com/spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75#issuecomment-1025819428>, or unsubscribe < https://github.com/notifications/unsubscribe-auth/AANF5O6GNNOXHPXHVBQX5JLUY2N7JANCNFSM5MFYUG2A . Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.

You are receiving this because you commented.

— Reply to this email directly, view it on GitHub https://github.com/spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75#issuecomment-1025882067, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABJKGTT75PE727ME5O7N3CTUY2SIRANCNFSM5MFYUG2A . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you authored the thread.Message ID: <spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75/1025882067@ github.com>

b'##########################################################################################\r\n'b'### CosmicWatch: The Desktop Muon Detector\r\n'b'### Questions? @.***\r\n'b'### Comp_date Comp_time Event Ardn_time[ms] ADC[0-1023] SiPM[mV] Deadtime[ms] Temp[C] Name\r\n'b'##########################################################################################\r\n'Device ID: b'\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\r\n'2022-01-31 14:15:29.843680 b'1 486 170 29.19 348 21.01\r\n'2022-01-31 14:15:29.943407 b'2 586 342 64.07 350 21.09\r\n'2022-01-31 14:15:30.039604 b'3 682 95 21.58 352 20.71\r\n'2022-01-31 14:15:30.304830 b'4 947 310 55.16 354 21.09\r\n'2022-01-31 14:15:30.655584 b'5 1297 369 73.42 444 20.90\r\n'2022-01-31 14:15:31.103117 b'6 1744 291 50.97 446 20.76\r\n'2022-01-31 14:15:31.447996 b'7 2000 55 16.58 448 20.74\r\n'2022-01-31 14:15:31.862813 b'8 2504 175 29.94 538 21.14\r\n'2022-01-31 14:15:35.187893 b'9 5827 53 16.22 804 20.79\r\n'2022-01-31 14:15:35.699327 b'10 6337 170 29.19 893 21.14\r\n'2022-01-31 14:15:35.979665 b'11 6616 438 107.18 895 21.01\r\n'2022-01-31 14:15:37.072930 b'12 7710 89 21.05 985 20.79\r\n'2022-01-31 14:15:37.566235 b'13 8202 264 45.61 1075 21.06\r\n'2022-01-31 14:15:37.676366 b'14 8312 113 23.02 1077 20.68\r\n'2022-01-31 14:15:37.691931 b'15 8317 110 22.78 1079 20.90\r\n'2022-01-31 14:15:38.469584 b'16 9105 80 20.14 1169 20.87\r\n'2022-01-31 14:15:38.522929 b'17 9158 285 49.78 1171 20.74\r\n'2022-01-31 14:15:38.600990 b'18 9236 98 21.83 1173 20.98\r\n'2022-01-31 14:15:38.938683 b'19 9573 325 59.05 1175 20.82\r\n'2022-01-31 14:15:40.244269 b'20 10878 362 70.92 1265 20.50\r\n'2022-01-31 14:15:40.455933 b'21 10999 97 21.75 1267 21.01\r\n'2022-01-31 14:15:40.799907 b'22 11433 384 80.08 1357 20.68\r\n'2022-01-31 14:15:40.836483 b'23 11470 58 17.10 1359 21.09\r\n'2022-01-31 14:15:41.344808 b'24 11978 122 23.75 1361 20.87\r\n'2022-01-31 14:15:41.520673 b'25 12154 66 18.36 1451 20.90\r\n'2022-01-31 14:15:41.875752 b'26 12508 355 68.30 1453 20.90\r\n'2022-01-31 14:15:42.074941 b'27 12707 228 39.00 1455 21.11\r\n'2022-01-31 14:15:43.461080 b'28 14093 98 21.83 1633 21.09\r\n'2022-01-31 14:15:43.914702 b'29 14546 54 16.41 1635 20.95\r\n'2022-01-31 14:15:44.711404 b'30 15341 272 47.08 1725 20.87\r\n'2022-01-31 14:15:44.975084 b'31 15605 164 28.34 1727 21.14\r\n'2022-01-31 14:15:46.327652 b'32 16957 175 29.94 1817 20.79\r\n'2022-01-31 14:15:47.835915 b'33 18465 90 21.14 1995 21.06\r\n'2022-01-31 14:15:48.699054 b'34 19327 75 19.57 2085 21.19\r\n'2022-01-31 14:15:49.029457 b'35 19657 50 15.67 2087 20.79\r\n'2022-01-31 14:15:49.548299 b'36 20175 353 67.64 2177 21.14\r\n'2022-01-31 14:15:50.462456 b'37 20992 51 15.86 2179 20.68\r\n'2022-01-31 14:15:50.710877 b'38 21337 78 19.92 2269 20.79\r\n'2022-01-31 14:15:51.352659 b'39 21979 60 17.43 2271 21.06\r\n'2022-01-31 14:15:51.894430 b'40 22520 279 48.45 2360 20.68\r\n'2022-01-31 14:15:52.181818 b'41 22807 59 17.27 2362 20.82\r\n'2022-01-31 14:15:52.206576 b'42 22831 141 25.53 2364 20.84\r\n'2022-01-31 14:15:52.857607 b'43 23482 139 25.32 2454 20.76\r\n'2022-01-31 14:15:54.824283 b'44 25448 146 26.08 2632 20.82\r\n'2022-01-31 14:15:55.726630 b'45 26349 100 22.00 2722 20.98\r\n'2022-01-31 14:15:55.923630 b'46 26547 51 15.86 2724 21.14\r\n'2022-01-31 14:15:55.939755 b'47 26555 265 45.75 2726 20.87\r\n'2022-01-31 14:15:56.124108 b'48 26747 133 24.73 2728 20.93\r\n'2022-01-31 14:15:56.583773 b'49 27207 53 16.22 2818 20.82\r\n'2022-01-31 14:15:57.322197 b'50 27944 55 16.58 2820 21.09\r\n'2022-01-31 14:15:57.467119 b'51 27987 73 19.32 2822 21.01\r\n'2022-01-31 14:15:57.860759 b'52 28482 137 25.12 2912 21.14\r\n'2022-01-31 14:15:58.137571 b'53 28759 102 22.15 2914 21.09\r\n'2022-01-31 14:15:58.803734 b'54 29425 96 21.67 3004 20.95\r\n'2022-01-31 14:15:58.840176 b'55 29461 56 16.76 3006 20.93\r\n'2022-01-31 14:15:59.604053 b'56 30224 403 88.99 3096 20.82\r\n'2022-01-31 14:16:00.244108 b'57 30864 229 39.22 3098 20.74\r\n'2022-01-31 14:16:01.842085 b'58 32460 163 28.20 3276 20.66\r\n'2022-01-31 14:16:02.333074 b'59 32951 308 54.81 3278 21.30\r\n'2022-01-31 14:16:02.536430 b'60 33154 105 22.39 3368 20.90\r\n'2022-01-31 14:16:02.885699 b'61 33504 348 65.64 3370 20.95\r\n'2022-01-31 14:16:02.901974 b'62 33507 316 56.81 3372 20.74\r\n'2022-01-31 14:16:04.612210 b'63 35230 51 15.86 3550 20.74\r\n'2022-01-31 14:16:04.806405 b'64 35424 59 17.27 3552 21.22\r\n'2022-01-31 14:16:06.645471 b'65 37261 49 15.48 3730 20.76\r\n'2022-01-31 14:16:06.724131 b'66 37340 58 17.10 3732 20.98\r\n'2022-01-31 14:16:07.212049 b'67 37827 264 45.61 3734 21.06\r\n'2022-01-31 14:16:07.654611 b'68 38269 250 43.04 3824 20.66\r\n'2022-01-31 14:16:07.917460 b'69 38531 157 27.40 3826 20.55\r\n'2022-01-31 14:16:08.189067 b'70 38803 609 211.41 3828 20.90\r\n'2022-01-31 14:16:08.705841 b'71 39320 290 50.82 3919 20.79\r\n'2022-01-31 14:16:09.476858 b'72 40090 79 20.03 4009 20.68\r\n'2022-01-31 14:16:10.283667 b'73 40897 66 18.36 4011 21.09\r\n'2022-01-31 14:16:10.743326 b'74 41356 188 32.01 4100 21.14\r\n'2022-01-31 14:16:10.919663 b'75 41532 117 23.34 4102 21.14\r\n'2022-01-31 14:16:13.597246 b'76 44208 97 21.75 4368 20.66\r\n'2022-01-31 14:16:14.093537 b'77 44704 79 20.03 4370 20.58\r\n'2022-01-31 14:16:14.207832 b'78 44818 102 22.15 4372 21.09\r\n'2022-01-31 14:16:14.263243 b'79 44873 338 62.67 4374 20.71\r\n'2022-01-31 14:16:14.530747 b'80 45141 58 17.10 4464 20.76\r\n'2022-01-31 14:16:15.037004 b'81 45647 145 25.96 4466 21.06\r\n'2022-01-31 14:16:15.539781 b'82 46149 311 55.50 4556 20.93\r\n'2022-01-31 14:16:16.153321 b'83 46762 135 24.92 4558 20.76\r\n'2022-01-31 14:16:16.620115 b'84 47228 116 23.26 4648 20.79\r\n'2022-01-31 14:16:16.639343 b'85 47248 222 37.96 4650 20.76\r\n'2022-01-31 14:16:16.718099 b'86 47327 128 24.27 4652 20.93\r\n'2022-01-31 14:16:17.570377 b'87 48178 160 27.80 4741 20.68\r\n'2022-01-31 14:16:18.813473 b'88 49421 223 38.11 4831 20.60\r\n'2022-01-31 14:16:18.829680 b'89 49427 127 24.18 4833 20.84\r\n'2022-01-31 14:16:19.510635 b'90 50117 382 78.66 4923 20.71\r\n'2022-01-31 14:16:19.737734 b'91 50344 320 57.70 4925 20.68\r\n'2022-01-31 14:16:20.087271 b'92 50694 99 21.91 4927 21.01\r\n'2022-01-31 14:16:20.576293 b'93 51182 68 18.65 5017 21.19\r\n'2022-01-31 14:16:20.592578 b'94 51190 366 72.41 5019 20.87\r\n'2022-01-31 14:16:21.071918 b'95 51677 217 37.04 5021 21.01\r\n'2022-01-31 14:16:21.164389 b'96 51769 132 24.63 5023 20.79\r\n'2022-01-31 14:16:21.223061 b'97 51829 48 15.29 5025 20.74\r\n'2022-01-31 14:16:21.879061 b'98 52483 229 39.22 5115 20.63\r\n'2022-01-31 14:16:22.159623 b'99 52764 104 22.31 5117 20.74\r\n'2022-01-31 14:16:22.328909 b'100 52933 257 44.29 5119 21.09\r\n'2022-01-31 14:16:22.345197 b'101 52944 60 17.43 5121 20.76\r\n'2022-01-31 14:16:22.693410 b'102 53297 138 25.22 5211 20.79\r\n'2022-01-31 14:16:23.120475 b'103 53724 300 52.79 5213 20.95\r\n'2022-01-31 14:16:23.670590 b'104 54274 91 21.23 5303 20.76\r\n'2022-01-31 14:16:23.727570 b'105 54331 94 21.50 5305 20.74\r\n'2022-01-31 14:16:24.160413 b'106 54763 109 22.70 5307 20.74\r\n'2022-01-31 14:16:24.910045 b'107 55512 158 27.53 5397 21.22\r\n'2022-01-31 14:16:26.808062 b'108 57409 362 70.92 5575 20.79\r\n'2022-01-31 14:16:26.843390 b'109 57444 142 25.64 5577 21.03\r\n'2022-01-31 14:16:26.901935 b'110 57503 72 19.19 5579 20.79\r\n'2022-01-31 14:16:27.093764 b'111 57695 75 19.57 5581 20.60\r\n'2022-01-31 14:16:27.236914 b'112 57837 267 46.14 5583 20.84\r\n'2022-01-31 14:16:28.359778 b'113 58959 148 26.30 5673 21.11\r\n'2022-01-31 14:16:28.536844 b'114 59137 71 19.06 5763 20.66\r\n'2022-01-31 14:16:28.907465 b'115 59507 163 28.20 5765 20.71\r\n'2022-01-31 14:16:29.084148 b'116 59683 310 55.16 5767 20.90\r\n'2022-01-31 14:16:29.225894 b'117 59825 195 33.17 5769 20.90\r\n'2022-01-31 14:16:29.746672 b'118 60345 274 47.52 5859 20.87\r\n'2022-01-31 14:16:30.956755 b'119 61555 316 56.81 5949 20.87\r\n'2022-01-31 14:16:31.201613 b'120 61800 53 16.22 5951 21.25\r\n'2022-01-31 14:16:32.959097 b'121 63556 50 15.67 6129 21.35\r\n'2022-01-31 14:16:33.318564 b'122 63915 162 28.06 6131 20.82\r\n'2022-01-31 14:16:33.846832 b'123 64443 273 47.25 6221 20.84\r\n'2022-01-31 14:16:34.966078 b'124 65561 287 50.23 6311 20.74\r\n'2022-01-31 14:16:35.230033 b'125 65825 57 16.93 6313 21.19\r\n'2022-01-31 14:16:37.817681 b'126 68411 104 22.31 6579 20.90\r\n'2022-01-31 14:16:40.003766 b'127 70595 119 23.50 6757 21.17\r\n'2022-01-31 14:16:40.072862 b'128 70665 169 29.05 6759 21.09\r\n'2022-01-31 14:16:41.589584 b'129 72180 344 64.67 6937 21.35\r\n'2022-01-31 14:16:41.655451 b'130 72247 76 19.69 6939 21.03\r\n'2022-01-31 14:16:41.697751 b'131 72289 152 26.78 6941 20.98\r\n'2022-01-31 14:16:41.818487 b'132 72409 245 42.08 6943 20.79\r\n'2022-01-31 14:16:41.876347 b'133 72467 97 21.75 6945 20.82\r\n'2022-01-31 14:16:42.069967 b'134 72660 307 54.48 6947 20.76\r\n'2022-01-31 14:16:42.631484 b'135 73221 268 46.26 7037 20.93\r\n'2022-01-31 14:16:42.669434 b'136 73259 263 45.37 7039 20.68\r\n'2022-01-31 14:16:43.009870 b'137 73600 128 24.27 7041 21.19\r\n'2022-01-31 14:16:43.770700 b'138 74360 232 39.76 7130 21.14\r\n'2022-01-31 14:16:44.148197 b'139 74738 89 21.05 7132 20.76\r\n'2022-01-31 14:16:44.869834 b'140 75458 103 22.23 7222 21.22\r\n'2022-01-31 14:16:45.189459 b'141 75777 322 58.27 7224 21.14\r\n'2022-01-31 14:16:45.741416 b'142 76330 81 20.25 7314 21.22\r\n'2022-01-31 14:16:46.187318 b'143 76775 51 15.86 7316 20.79\r\n'2022-01-31 14:16:46.343253 b'144 76930 165 28.48 7318 20.74\r\n'2022-01-31 14:16:46.740889 b'145 77328 169 29.05 7408 21.09\r\n'2022-01-31 14:16:46.950667 b'146 77537 674 306.63 7410 21.14\r\n'2022-01-31 14:16:47.030351 b'147 77617 217 37.04 7412 21.09\r\n'2022-01-31 14:16:48.154966 b'148 78742 78 19.92 7502 20.76\r\n'2022-01-31 14:16:48.323504 b'149 78910 51 15.86 7504 20.82\r\n'2022-01-31 14:16:48.675039 b'150 79261 359 69.86 7594 20.87\r\n'2022-01-31 14:16:49.182060 b'151 79768 84 20.57 7596 20.95\r\n'2022-01-31 14:16:49.757568 b'152 80342 194 33.00 7686 21.19\r\n'2022-01-31 14:16:50.033380 b'153 80619 71 19.06 7688 21.11\r\n'2022-01-31 14:16:52.272620 b'154 82856 212 36.14 7866 20.87\r\n'2022-01-31 14:16:52.584347 b'155 83168 71 19.06 7956 21.06\r\n'2022-01-31 14:16:52.646731 b'156 83230 118 23.42 7958 20.87\r\n'2022-01-31 14:16:53.065209 b'157 83648 106 22.47 7960 20.95\r\n'2022-01-31 14:16:53.577955 b'158 84160 189 32.16 8050 20.82\r\n'2022-01-31 14:16:54.073955 b'159 84656 166 28.62 8052 20.98\r\n'2022-01-31 14:16:55.182103 b'160 85763 459 117.54 8142 20.87\r\n'2022-01-31 14:16:55.282273 b'161 85864 304 53.73 8144 20.76\r\n'2022-01-31 14:16:56.296039 b'162 86877 87 20.86 8234 20.79\r\n'2022-01-31 14:16:56.616893 b'163 87197 279 48.45 8324 20.74\r\n'2022-01-31 14:16:57.118741 b'164 87699 209 35.61 8326 20.71\r\n'2022-01-31 14:16:57.574037 b'165 88153 205 34.91 8416 20.71\r\n'2022-01-31 14:16:57.742874 b'166 88322 104 22.31 8418 20.71\r\n'2022-01-31 14:16:57.806547 b'167 88386 343 64.34 8420 21.14\r\n'2022-01-31 14:16:57.905993 b'168 88485 473 126.29 8422 20.82\r\n'2022-01-31 14:16:58.107260 b'169 88686 336 61.98 8424 20.84\r\n'2022-01-31 14:16:58.780100 b'170 89359 209 35.61 8514 20.82\r\n'2022-01-31 14:16:58.827628 b'171 89407 98 21.83 8516 20.90\r\n'2022-01-31 14:17:00.049389 b'172 90627 344 64.67 8606 20.74\r\n'2022-01-31 14:17:01.167590 b'173 91745 45 14.71 8696 20.84\r\n'2022-01-31 14:17:01.644489 b'174 92222 62 17.75 8786 21.22\r\n'2022-01-31 14:17:02.068117 b'175 92645 253 43.55 8788 21.06\r\n'2022-01-31 14:17:02.109646 b'176 92686 664 270.86 8790 20.82\r\n'2022-01-31 14:17:02.896680 b'177 93473 169 29.05 8881 21.27\r\n'2022-01-31 14:17:03.528561 b'178 94104 187 31.84 8971 21.09\r\n'2022-01-31 14:17:04.027111 b'179 94602 245 42.08 8973 21.17\r\n'2022-01-31 14:17:04.270952 b'180 94845 502 141.38 8975 20.95\r\n'2022-01-31 14:17:04.297418 b'181 94873 52 16.04 8977 21.35\r\n'2022-01-31 14:17:04.758777 b'182 95333 312 55.68 9067 20.98\r\n'2022-01-31 14:17:05.143664 b'183 95718 148 26.30 9069 20.74\r\n'2022-01-31 14:17:06.106409 b'184 96680 175 29.94 9159 21.03\r\n'2022-01-31 14:17:06.337806 b'185 96912 56 16.76 9161 20.90\r\n'2022-01-31 14:17:08.161809 b'186 98734 61 17.60 9339 21.14\r\n'2022-01-31 14:17:08.684318 b'187 99256 142 25.64 9429 20.82\r\n'2022-01-31 14:17:09.805328 b'188 100376 162 28.06 9519 21.27\r\n'2022-01-31 14:17:10.546219 b'189 101117 87 20.86 9609 21.09\r\n'2022-01-31 14:17:11.133795 b'190 101704 179 30.55 9611 20.79\r\n'2022-01-31 14:17:11.578376 b'191 102148 59 17.27 9701 20.82\r\n'2022-01-31 14:17:11.608254 b'192 102177 527 155.96 9703 21.30\r\n'2022-01-31 14:17:11.625561 b'193 102191 258 44.50 9705 21.11\r\n'2022-01-31 14:17:11.648678 b'194 102219 70 18.93 9707 20.98\r\n'2022-01-31 14:17:12.308530 b'195 102878 49 15.48 9709 20.82\r\n'2022-01-31 14:17:12.527153 b'196 103096 81 20.25 9799 21.06\r\n'2022-01-31 14:17:13.299457 b'197 103867 242 41.58 9801 20.68\r\n'2022-01-31 14:17:15.246482 b'198 105813 376 76.43 9979 20.68\r\n'2022-01-31 14:17:15.639170 b'199 106205 312 55.68 10069 20.90\r\n'2022-01-31 14:17:15.935595 b'200 106502 53 16.22 10071 20.74\r\n'2022-01-31 14:17:16.328315 b'201 106894 103 22.23 10073 21.01\r\n'2022-01-31 14:17:17.614805 b'202 108180 114 23.10 10251 20.90\r\n'2022-01-31 14:17:18.563455 b'203 109127 577 186.63 10341 21.30\r\n'2022-01-31 14:17:18.723717 b'204 109288 170 29.19 10343 21.27\r\n'2022-01-31 14:17:18.784985 b'205 109349 270 46.71 10345 21.19\r\n'2022-01-31 14:17:19.762128 b'206 110326 67 18.51 10435 21.01\r\n'2022-01-31 14:17:20.193944 b'207 110757 161 27.93 10437 21.27\r\n'2022-01-31 14:17:20.211637 b'208 110760 403 88.99 10439 21.33\r\n'2022-01-31 14:17:20.833044 b'209 111395 146 26.08 10529 21.01\r\n'2022-01-31 14:17:21.546255 b'210 112108 316 56.81 10619 21.09\r\n'2022-01-31 14:17:21.563965 b'211 112125 320 57.70 10621 20.84\r\n'2022-01-31 14:17:21.697530 b'212 112259 140 25.42 10623 21.17\r\n'2022-01-31 14:17:23.183718 b'213 113744 277 48.09 10713 20.76\r\n'2022-01-31 14:17:23.238325 b'214 113799 180 30.71 10715 20.84\r\n'2022-01-31 14:17:26.033617 b'215 116593 185 31.51 10981 21.06\r\n'2022-01-31 14:17:26.096967 b'216 116655 672 306.22 10983 20.90\r\n'2022-01-31 14:17:26.675908 b'217 117234 166 28.62 11074 20.95\r\n'2022-01-31 14:17:27.218654 b'218 117777 217 37.04 11076 20.95\r\n'2022-01-31 14:17:29.015708 b'219 119572 234 40.06 11254 20.90\r\n'2022-01-31 14:17:29.203785 b'220 119761 63 17.91 11256 21.19\r\n'2022-01-31 14:17:29.250757 b'221 119808 71 19.06 11258 21.35\r\n'2022-01-31 14:17:32.193661 b'222 122748 472 125.87 11524 20.82\r\n'2022-01-31 14:17:33.020712 b'223 123575 96 21.67 11615 21.14\r\n'2022-01-31 14:17:33.868363 b'224 124422 400 87.27 11705 21.14\r\n'2022-01-31 14:17:35.537352 b'225 125998 158 27.53 11795 21.22\r\n'2022-01-31 14:17:35.974688 b'226 126527 56 16.76 11885 21.22\r\n'2022-01-31 14:17:37.538001 b'227 127989 162 28.06 11975 21.06\r\n'2022-01-31 14:17:38.271455 b'228 128822 141 25.53 12065 21.38\r\n'2022-01-31 14:17:38.339948 b'229 128890 176 30.09 12067 20.84\r\n'2022-01-31 14:17:38.606422 b'230 129157 81 20.25 12157 20.82\r\n'2022-01-31 14:17:38.753315 b'231 129304 63 17.91 12159 21.22\r\n'2022-01-31 14:17:39.539410 b'232 129997 314 56.08 12161 20.95\r\n'2022-01-31 14:17:40.000224 b'233 130550 116 23.26 12251 20.93\r\n'2022-01-31 14:17:40.205951 b'234 130755 259 44.69 12253 20.93\r\n'2022-01-31 14:17:40.971332 b'235 131520 61 17.60 12343 20.95\r\n'2022-01-31 14:17:41.266077 b'236 131815 57 16.93 12345 20.93\r\n'2022-01-31 14:17:41.295091 b'237 131843 186 31.68 12347 21.22\r\n'2022-01-31 14:17:41.312271 b'238 131858 96 21.67 12349 20.98\r\n'2022-01-31 14:17:41.389114 b'239 131938 186 31.68 12351 20.79\r\n'2022-01-31 14:17:41.842977 b'240 132391 306 54.23 12441 21.03\r\n'2022-01-31 14:17:42.008162 b'241 132556 160 27.80 12443 20.95\r\n'2022-01-31 14:17:42.418690 b'242 132967 51 15.86 12445 21.17\r\n'2022-01-31 14:17:43.030029 b'243 133577 381 78.56 12535 21.03\r\n'2022-01-31 14:17:43.075701 b'244 133622 629 221.91 12537 20.79\r\n'2022-01-31 14:17:43.292436 b'245 133840 94 21.50 12539 21.14\r\n'2022-01-31 14:17:43.839724 b'246 134387 144 25.85 12629 20.82\r\n'2022-01-31 14:17:44.282716 b'247 134829 56 16.76 12631 21.22\r\n'2022-01-31 14:17:45.227912 b'248 135774 43 14.32 12721 20.82\r\n'2022-01-31 14:17:46.164284 b'249 136709 205 34.91 12811 21.22\r\n'2022-01-31 14:17:46.710669 b'250 137255 539 169.62 12901 20.84\r\n'2022-01-31 14:17:46.763094 b'251 137308 114 23.10 12903 21.30\r\n'2022-01-31 14:17:46.897013 b'252 137442 157 27.40 12905 21.09\r\n'2022-01-31 14:17:47.682963 b'253 138228 54 16.41 12995 20.90\r\n'2022-01-31 14:17:48.780320 b'254 139324 128 24.27 13085 20.98\r\n'2022-01-31 14:17:49.901891 b'255 140445 159 27.66 13174 20.87\r\n'2022-01-31 14:17:50.680237 b'256 141222 131 24.54 13264 21.22\r\n'2022-01-31 14:17:50.797542 b'257 141340 126 24.09 13266 20.79\r\n'2022-01-31 14:17:50.815380 b'258 141345 108 22.63 13268 21.22\r\n'2022-01-31 14:17:52.429983 b'259 142971 92 21.32 13358 21.01\r\n'2022-01-31 14:17:54.230645 b'260 144770 251 43.19 13536 21.09\r\n'2022-01-31 14:17:54.375214 b'261 144915 234 40.06 13538 20.82\r\n'2022-01-31 14:17:55.717695 b'262 146257 95 21.58 13716 20.98\r\n'2022-01-31 14:17:56.101865 b'263 146641 54 16.41 13718 21.06\r\n'2022-01-31 14:17:56.551139 b'264 146988 283 49.24 13720 20.74\r\n'2022-01-31 14:17:56.896319 b'265 147434 373 75.04 13810 21.06\r\n'2022-01-31 14:17:56.914198 b'266 147452 160 27.80 13812 20.82\r\n'2022-01-31 14:17:57.689181 b'267 148226 181 30.87 13902 21.22\r\n'2022-01-31 14:17:58.929269 b'268 149466 99 21.91 13992 20.98\r\n'2022-01-31 14:17:59.438880 b'269 149975 71 19.06 13994 20.82\r\n'2022-01-31 14:17:59.754622 b'270 150290 350 66.46 14084 21.03\r\n'2022-01-31 14:17:59.888904 b'271 150425 98 21.83 14086 20.87\r\n'2022-01-31 14:18:01.256212 b'272 151791 151 26.66 14176 21.03\r\n'2022-01-31 14:18:02.947888 b'273 153481 464 121.64 14354 20.90\r\n'2022-01-31 14:18:03.325233 b'274 153859 50 15.67 14356 20.87\r\n'2022-01-31 14:18:03.987490 b'275 154520 191 32.51 14446 20.98\r\n'2022-01-31 14:18:04.134684 b'276 154667 345 64.98 14448 21.33\r\n'2022-01-31 14:18:04.398167 b'277 154931 106 22.47 14450 20.74\r\n'2022-01-31 14:18:04.708961 b'278 155241 169 29.05 14540 21.22\r\n'2022-01-31 14:18:05.167984 b'279 155701 45 14.71 14542 21.06\r\n'2022-01-31 14:18:05.215644 b'280 155747 486 135.98 14544 20.74\r\n'2022-01-31 14:18:06.143041 b'281 156674 119 23.50 14635 20.87\r\n'2022-01-31 14:18:06.168100 b'282 156700 272 47.08 14637 21.01\r\n'2022-01-31 14:18:09.442881 b'283 159972 282 49.11 14903 21.11\r\n'2022-01-31 14:18:09.897332 b'284 160426 333 61.18 14993 20.84\r\n'2022-01-31 14:18:10.055802 b'285 160584 376 76.43 14995 21.22\r\n'2022-01-31 14:18:10.614546 b'286 161143 231 39.55 15085 21.09\r\n'2022-01-31 14:18:10.644148 b'287 161172 409 91.12 15087 20.84\r\n'2022-01-31 14:18:11.091118 b'288 161619 133 24.73 15089 21.01\r\n'2022-01-31 14:18:11.961875 b'289 162489 286 49.78 15179 20.82\r\n'2022-01-31 14:18:12.288785 b'290 162816 309 55.01 15181 21.22\r\n'2022-01-31 14:18:12.897785 b'291 163425 159 27.66 15271 21.11\r\n'2022-01-31 14:18:13.643957 b'292 164170 349 66.33 15361 20.93\r\n'2022-01-31 14:18:13.912579 b'293 164438 296 52.05 15363 20.79\r\n'2022-01-31 14:18:14.611974 b'294 165138 283 49.24 15453 20.90\r\n'2022-01-31 14:18:16.388794 b'295 166914 51 15.86 15543 21.38\r\n'2022-01-31 14:18:16.566360 b'296 167091 77 19.81 15633 21.06\r\n'2022-01-31 14:18:20.634148 b'297 171156 50 15.67 15987 21.06\r\n'2022-01-31 14:18:20.651862 b'298 171164 311 55.50 15989 21.22\r\n'2022-01-31 14:18:22.836483 b'299 173356 159 27.66 16167 21.30\r\n'2022-01-31 14:18:22.898530 b'300 173418 146 26.08 16169 21.19\r\n'2022-01-31 14:18:23.695871 b'301 174216 95 21.58 16259 20.93\r\n'2022-01-31 14:18:24.036629 b'302 174556 243 41.74 16261 20.79\r\n'2022-01-31 14:18:24.099298 b'303 174618 146 26.08 16263 21.46\r\n'2022-01-31 14:18:24.635331 b'304 175154 258 44.50 16353 21.03\r\n'2022-01-31 14:18:24.860607 b'305 175379 170 29.19 16355 21.25\r\n'2022-01-31 14:18:25.665394 b'306 176184 200 34.05 16445 21.11\r\n'2022-01-31 14:18:25.804970 b'307 176323 98 21.83 16447 21.17\r\n'2022-01-31 14:18:26.023110 b'308 176542 42 14.12 16449 20.82\r\n'2022-01-31 14:18:26.329430 b'309 176847 67 18.51 16451 20.93\r\n'2022-01-31 14:18:26.684274 b'310 177202 138 25.22 16541 20.98\r\n'2022-01-31 14:18:26.709657 b'311 177227 201 34.22 16543 21.03\r\n'2022-01-31 14:18:26.916601 b'312 177434 92 21.32 16545 21.25\r\n'2022-01-31 14:18:26.996514 b'313 177514 43 14.32 16547 20.93\r\n'2022-01-31 14:18:27.192278 b'314 177708 538 158.61 16549 21.03\r\n'2022-01-31 14:18:29.426258 b'315 179942 71 19.06 16729 20.82\r\n'2022-01-31 14:18:29.739377 b'316 180255 187 31.84 16819 20.87\r\n'2022-01-31 14:18:29.756882 b'317 180269 187 31.84 16821 21.03\r\n'2022-01-31 14:18:30.853467 b'318 181368 164 28.34 16911 21.09\r\n'2022-01-31 14:18:31.239641 b'319 181754 81 20.25 16913 20.95\r\n'2022-01-31 14:18:31.949571 b'320 182463 362 70.92 17003 21.03\r\n'2022-01-31 14:18:32.451084 b'321 182965 197 33.52 17005 21.19\r\n'2022-01-31 14:18:32.468240 b'322 182968 57 16.93 17007 21.22\r\n'2022-01-31 14:18:33.121691 b'323 183634 163 28.20 17097 21.19\r\n'2022-01-31 14:18:35.107870 b'324 185619 163 28.20 17275 21.17\r\n'2022-01-31 14:18:35.596608 b'325 186108 197 33.52 17365 21.06\r\n'2022-01-31 14:18:37.057972 b'326 187568 260 44.83 17455 20.87\r\n'2022-01-31 14:18:38.113362 b'327 188622 504 143.61 17545 21.35\r\n'2022-01-31 14:18:38.184545 b'328 188694 310 55.16 17547 20.90\r\n'2022-01-31 14:18:39.814911 b'329 190323 123 23.83 17725 20.79\r\n'2022-01-31 14:18:40.411426 b'330 190919 347 65.45 17727 21.09\r\n'2022-01-31 14:18:41.355601 b'331 191863 181 30.87 17817 20.82\r\n'2022-01-31 14:18:42.170355 b'332 192676 581 201.80 17907 20.79\r\n'2022-01-31 14:18:42.802409 b'333 193309 90 21.14 17998 21.30\r\n'2022-01-31 14:18:44.248220 b'334 194754 65 18.22 18088 20.87\r\n'2022-01-31 14:18:44.356243 b'335 194861 185 31.51 18090 20.84\r\n'2022-01-31 14:18:44.454830 b'336 194960 242 41.58 18092 21.25\r\n'2022-01-31 14:18:44.622978 b'337 195128 159 27.66 18182 20.82\r\n'2022-01-31 14:18:44.677852 b'338 195182 114 23.10 18184 21.19\r\n'2022-01-31 14:18:44.917724 b'339 195422 135 24.92 18186 20.93\r\n'2022-01-31 14:18:44.990284 b'340 195495 200 34.05 18188 21.14\r\n'2022-01-31 14:18:45.231383 b'341 195736 85 20.67 18190 21.46\r\n'2022-01-31 14:18:45.299645 b'342 195804 275 47.73 18192 21.25\r\n'2022-01-31 14:18:46.443784 b'343 196947 305 53.88 18282 21.22\r\n'2022-01-31 14:18:48.164964 b'344 198667 473 126.29 18460 20.84\r\n'2022-01-31 14:18:49.771243 b'345 200273 206 35.07 18640 21.19\r\n'2022-01-31 14:18:50.290418 b'346 200792 50 15.67 18642 21.11\r\n'2022-01-31 14:18:50.649892 b'347 201150 288 50.42 18732 20.90\r\n'2022-01-31 14:18:50.891920 b'348 201393 75 19.57 18734 21.14\r\n'2022-01-31 14:18:51.015428 b'349 201516 53 16.22 18736 21.19\r\n'2022-01-31 14:18:52.055692 b'350 202556 59 17.27 18826 20.90\r\n'2022-01-31 14:18:52.774531 b'351 203274 57 16.93 18916 21.14\r\n'2022-01-31 14:18:53.824928 b'352 204324 56 16.76 19006 21.06\r\n'2022-01-31 14:18:54.013171 b'353 204512 178 30.40 19008 21.09\r\n'2022-01-31 14:18:54.821720 b'354 205320 240 41.21 19098 21.35\r\n'2022-01-31 14:18:55.592394 b'355 205997 177 30.25 19100 20.98\r\n'2022-01-31 14:18:56.242901 b'356 206740 55 16.58 19190 21.19\r\n'2022-01-31 14:18:56.883522 b'357 207380 83 20.46 19280 20.79\r\n'2022-01-31 14:18:56.917649 b'358 207414 325 59.05 19282 21.33\r\n'2022-01-31 14:18:57.110947 b'359 207608 91 21.23 19284 21.06\r\n'2022-01-31 14:18:59.100627 b'360 209595 274 47.52 19462 21.27\r\n'2022-01-31 14:19:00.601201 b'361 211095 77 19.81 19640 20.87\r\n'2022-01-31 14:19:00.747807 b'362 211242 99 21.91 19642 21.33\r\n'2022-01-31 14:19:01.221332 b'363 211715 81 20.25 19644 21.46\r\n'2022-01-31 14:19:01.325247 b'364 211818 174 29.79 19646 21.19\r\n'2022-01-31 14:19:01.597256 b'365 212090 522 154.94 19736 21.06\r\n'2022-01-31 14:19:01.813316 b'366 212307 71 19.06 19738 21.27\r\n'2022-01-31 14:19:02.187407 b'367 212680 103 22.23 19740 21.17\r\n'2022-01-31 14:19:02.865791 b'368 213358 194 33.00 19830 20.90\r\n'2022-01-31 14:19:03.783898 b'369 214276 89 21.05 19920 20.87\r\n'2022-01-31 14:19:03.990058 b'370 214482 94 21.50 19922 21.19\r\n'2022-01-31 14:19:05.147819 b'371 215638 553 176.67 20012 21.22\r\n'2022-01-31 14:19:05.307505 b'372 215798 169 29.05 20014 21.27\r\n'2022-01-31 14:19:06.790140 b'373 217279 354 67.99 20192 21.01\r\n'2022-01-31 14:19:06.854731 b'374 217344 302 53.30 20194 21.27\r\n'2022-01-31 14:19:07.392014 b'375 217881 167 28.76 20196 20.98\r\n'2022-01-31 14:19:07.470513 b'376 217960 63 17.91 20198 21.25\r\n'2022-01-31 14:19:07.716470 b'377 218206 71 19.06 20288 21.25\r\n'2022-01-31 14:19:07.831828 b'378 218321 96 21.67 20290 21.62\r\n'2022-01-31 14:19:08.231234 b'379 218720 143 25.74 20292 20.95\r\n'2022-01-31 14:19:08.257691 b'380 218746 298 52.37 20294 21.11\r\n'2022-01-31 14:19:08.679533 b'381 219168 293 51.29 20384 21.19\r\n'2022-01-31 14:19:08.705883 b'382 219194 156 27.28 20386 21.06\r\n'2022-01-31 14:19:08.941236 b'383 219429 100 22.00 20388 21.27\r\n'2022-01-31 14:19:10.787720 b'384 221274 167 28.76 20566 21.19\r\n'2022-01-31 14:19:12.328202 b'385 222814 328 59.71 20656 21.30\r\n'2022-01-31 14:19:12.413784 b'386 222900 65 18.22 20658 20.93\r\n'2022-01-31 14:19:13.185796 b'387 223671 150 26.54 20748 21.03\r\n'2022-01-31 14:19:14.762220 b'388 225247 65 18.22 20926 21.19\r\n'2022-01-31 14:19:15.007923 b'389 225492 63 17.91 20928 20.74\r\n'2022-01-31 14:19:15.695997 b'390 226179 89 21.05 21018 21.22\r\n'2022-01-31 14:19:15.713791 b'391 226184 340 63.47 21020 21.06\r\n'2022-01-31 14:19:15.856633 b'392 226340 44 14.51 21022 20.82\r\n'2022-01-31 14:19:15.909347 b'393 226393 97 21.75 21024 21.09\r\n'2022-01-31 14:19:15.927501 b'394 226400 435 104.92 21026 21.35\r\n'2022-01-31 14:19:16.013918 b'395 226497 105 22.39 21028 20.79\r\n'2022-01-31 14:19:16.690390 b'396 227173 67 18.51 21118 21.30\r\n'2022-01-31 14:19:17.191152 b'397 227673 288 50.42 21120 21.06\r\n'2022-01-31 14:19:17.938268 b'398 228420 143 25.74 21210 20.93\r\n'2022-01-31 14:19:18.440607 b'399 228922 117 23.34 21212 21.25\r\n'2022-01-31 14:19:18.502145 b'400 228983 164 28.34 21214 20.90\r\n'2022-01-31 14:19:19.029001 b'401 229511 71 19.06 21304 21.09\r\n'2022-01-31 14:19:19.732561 b'402 230212 502 141.38 21394 21.17\r\n'2022-01-31 14:19:21.088290 b'403 231568 165 28.48 21485 21.09\r\n'2022-01-31 14:19:22.179759 b'404 232658 146 26.08 21575 21.27\r\n'2022-01-31 14:19:22.664590 b'405 233143 135 24.92 21665 20.98\r\n'2022-01-31 14:19:23.112698 b'406 233591 50 15.67 21667 20.84\r\n'2022-01-31 14:19:23.993175 b'407 234471 62 17.75 21757 21.11\r\n'2022-01-31 14:19:24.085581 b'408 234563 147 26.19 21759 20.98\r\n'2022-01-31 14:19:26.067689 b'409 236544 306 54.23 21937 20.90\r\n'2022-01-31 14:19:26.084891 b'410 236554 56 16.76 21939 21.17\r\n'2022-01-31 14:19:26.318910 b'411 236795 331 60.51 21941 21.01\r\n'2022-01-31 14:19:26.670480 b'412 237146 86 20.77 22031 21.19\r\n'2022-01-31 14:19:26.719433 b'413 237195 130 24.45 22033 21.22\r\n'2022-01-31 14:19:27.117461 b'414 237593 88 20.96 22035 21.22\r\n'2022-01-31 14:19:27.153338 b'415 237629 109 22.70 22037 21.09\r\n'2022-01-31 14:19:28.129908 b'416 238605 84 20.57 22127 20.79\r\n'2022-01-31 14:19:28.896304 b'417 239370 294 51.51 22217 21.09\r\n'2022-01-31 14:19:28.913995 b'418 239384 270 46.71 22219 21.14\r\n'2022-01-31 14:19:29.438994 b'419 239912 240 41.21 22221 21.41\r\n'2022-01-31 14:19:29.904527 b'420 240378 75 19.57 22311 21.33\r\n'2022-01-31 14:19:30.379555 b'421 240853 93 21.41 22313 21.27\r\n'2022-01-31 14:19:30.809183 b'422 241282 46 14.91 22403 21.14\r\n'2022-01-31 14:19:30.880221 b'423 241353 399 87.30 22405 21.35\r\n'2022-01-31 14:19:31.324280 b'424 241797 355 68.30 22407 21.03\r\n'2022-01-31 14:19:32.209597 b'425 242681 406 89.20 22497 20.90\r\n'2022-01-31 14:19:34.777691 b'426 245248 61 17.60 22763 21.11\r\n'2022-01-31 14:19:34.913703 b'427 245384 153 26.90 22765 21.06\r\n'2022-01-31 14:19:35.172364 b'428 245642 152 26.78 22767 21.17\r\n'2022-01-31 14:19:35.462975 b'429 245932 310 55.16 22769 20.95\r\n'2022-01-31 14:19:35.695066 b'430 246164 323 58.48 22859 21.14\r\n'2022-01-31 14:19:35.872456 b'431 246342 100 22.00 22861 21.41\r\n'2022-01-31 14:19:37.406287 b'432 247875 76 19.69 22951 21.38\r\n'2022-01-31 14:19:38.946642 b'433 249413 325 59.05 23129 20.82\r\n'2022-01-31 14:19:40.250999 b'434 250718 159 27.66 23219 20.95\r\n'2022-01-31 14:19:40.282191 b'435 250749 81 20.25 23221 21.38\r\n'2022-01-31 14:19:40.623091 b'436 250994 159 27.66 23223 21.17\r\n'2022-01-31 14:19:40.770774 b'437 251237 111 22.86 23313 20.98\r\n'2022-01-31 14:19:40.861927 b'438 251328 292 51.11 23315 21.41\r\n'2022-01-31 14:19:41.741746 b'439 252207 49 15.48 23405 21.41\r\n'2022-01-31 14:19:42.217305 b'440 252683 316 56.81 23407 20.98\r\n'2022-01-31 14:19:42.872919 b'441 253337 328 59.71 23497 20.79\r\n'2022-01-31 14:19:42.971646 b'442 253436 173 29.64 23499 21.17\r\n'2022-01-31 14:19:43.624851 b'443 253997 57 16.93 23501 20.79\r\n'2022-01-31 14:19:44.203754 b'444 254667 149 26.42 23591 21.17\r\n'2022-01-31 14:19:44.453649 b'445 254917 227 38.83 23593 21.09\r\n'2022-01-31 14:19:45.245883 b'446 255709 100 22.00 23683 21.22\r\n'2022-01-31 14:19:45.752961 b'447 256216 53 16.22 23773 20.90\r\n'2022-01-31 14:19:45.801830 b'448 256264 196 33.35 23775 21.14\r\n'2022-01-31 14:19:46.349939 b'449 256812 412 92.93 23777 21.14\r\n'2022-01-31 14:19:46.839363 b'450 257302 76 19.69 23867 20.93\r\n'2022-01-31 14:19:47.425193 b'451 257887 398 85.63 23869 21.22\r\n'2022-01-31 14:19:47.778109 b'452 258239 77 19.81 23959 20.95\r\n'2022-01-31 14:19:48.969679 b'453 259430 262 45.24 24049 21.19\r\n'2022-01-31 14:19:49.004325 b'454 259465 138 25.22 24051 21.19\r\n'2022-01-31 14:19:51.665077 b'455 262123 129 24.35 24317 20.95\r\n'2022-01-31 14:19:52.376203 b'456 262834 147 26.19 24319 21.01\r\n'2022-01-31 14:19:52.999906 b'457 263457 182 31.03 24409 21.22\r\n'2022-01-31 14:19:53.104815 b'458 263562 166 28.62 24411 21.06\r\n'2022-01-31 14:19:53.349504 b'459 263807 69 18.79 24413 21.35\r\n'2022-01-31 14:19:53.522570 b'460 263979 117 23.34 24415 20.90\r\n'2022-01-31 14:19:53.865919 b'461 264322 208 35.43 24505 21.11\r\n'2022-01-31 14:19:53.889464 b'462 264346 192 32.67 24507 20.98\r\n'2022-01-31 14:19:54.092644 b'463 264549 234 40.06 24509 21.11\r\n'2022-01-31 14:19:54.286282 b'464 264743 138 25.22 24511 21.27\r\n'2022-01-31 14:19:55.217468 b'465 265674 79 20.03 24601 21.14\r\n'2022-01-31 14:19:55.858064 b'466 266314 100 22.00 24691 20.79\r\n'2022-01-31 14:19:55.983623 b'467 266439 427 101.26 24693 21.19\r\n'2022-01-31 14:19:57.355349 b'468 267810 134 24.82 24784 21.01\r\n'2022-01-31 14:19:58.212471 b'469 268667 314 56.08 24874 21.14\r\n'2022-01-31 14:19:58.947187 b'470 269401 236 40.44 24964 20.90\r\n'2022-01-31 14:20:01.302497 b'471 271754 139 25.32 25142 20.93\r\n'2022-01-31 14:20:01.434719 b'472 271887 218 37.23 25144 21.06\r\n'2022-01-31 14:20:01.499393 b'473 271951 173 29.64 25146 21.06\r\n'2022-01-31 14:20:02.913172 b'474 273364 249 42.85 25324 21.06\r\n'2022-01-31 14:20:02.957994 b'475 273409 126 24.09 25326 21.46\r\n'2022-01-31 14:20:03.152946 b'476 273603 282 49.11 25328 20.93\r\n'2022-01-31 14:20:03.379880 b'477 273831 61 17.60 25330 20.82\r\n'2022-01-31 14:20:04.763181 b'478 275213 365 71.38 25508 21.33\r\n'2022-01-31 14:20:04.888789 b'479 275339 56 16.76 25510 21.14\r\n'2022-01-31 14:20:05.387563 b'480 275837 94 21.50 25512 20.95\r\n'2022-01-31 14:20:05.451270 b'481 275900 62 17.75 25514 21.30\r\n'2022-01-31 14:20:06.070291 b'482 276519 319 57.64 25604 21.44\r\n'2022-01-31 14:20:06.183746 b'483 276632 58 17.10 25606 20.98\r\n'2022-01-31 14:20:07.985617 b'484 278433 388 81.40 25784 20.98\r\n'2022-01-31 14:20:08.724218 b'485 279171 235 40.29 25874 21.06\r\n'2022-01-31 14:20:09.139913 b'486 279586 278 48.30 25876 20.79\r\n'2022-01-31 14:20:09.426814 b'487 279873 318 57.28 25878 20.84\r\n'2022-01-31 14:20:10.062698 b'488 280508 453 113.81 25968 21.09\r\n'2022-01-31 14:20:11.463803 b'489 281908 134 24.82 26059 20.79\r\n'2022-01-31 14:20:12.130812 b'490 282575 142 25.64 26149 21.38\r\n'2022-01-31 14:20:12.224270 b'491 282668 138 25.22 26151 21.06\r\n'2022-01-31 14:20:12.412803 b'492 282857 154 27.02 26153 20.95\r\n'2022-01-31 14:20:12.473869 b'493 282918 390 82.70 26155 21.27\r\n'2022-01-31 14:20:12.491624 b'494 282931 222 37.96 26157 21.06\r\n'2022-01-31 14:20:12.763967 b'495 283208 59 17.27 26247 20.90\r\n' — Reply to this email directly, view it on GitHub https://github.com/spenceraxani/CosmicWatch-Desktop-Muon-Detector-v2/issues/75#issuecomment-1025943286, or unsubscribe https://github.com/notifications/unsubscribe-auth/AANF5OZZRSMIHJKQHWSK57TUY2XULANCNFSM5MFYUG2A. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you commented.

tony1tf commented 2 years ago

I did attach the text file to an email, but it seems to have appeared inside the email above - very strange. I'll try again with an email just to you. Tony

tony1tf commented 2 years ago

I've sent it to your MIT email. Tony