EPICS Home

Experimental Physics and Industrial Control System


 
1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  <20192020  2021  2022  2023  2024  Index 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  <20192020  2021  2022  2023  2024 
<== Date ==> <== Thread ==>

Subject: RE: generalTime/epicsTimeGetCurrent and casr questions
From: Mark Rivers via Tech-talk <[email protected]>
To: "'Brands Helge (PSI)'" <[email protected]>
Cc: "'[email protected]'" <[email protected]>
Date: Thu, 14 Mar 2019 00:16:58 +0000

Hi Helge,

 

Ø  caQtDM gives you only the possibility to do something, we are not responsible what users do.

 

You provide a slider widget.  Are users not supposed to use it?

 

Ø  But even then the optimization will not help against of the huge amount of SETS of an EPICS channel during a movement of a slider!

 

The problem is not the huge amounts of SET operations when moving a slider.  If you have a dedicated chid then your messages are only going to the single IOC with that PV.  That is fine.  However, the way caQtDM is designed now, every time I move the slider caQtDM is sending a broadcast message across the network to do a channel lookup.  That means you are impacting not just the IOC that holds that PV, but also every other IOC on the subnet!  Each IOC receives that broadcast and needs to search to see if it has that PV.

 

I just proved this is indeed the case.  I ran caQtDM on a Windows machine (named camaro), and ran both a DAC slider and a motor tweak button the same as I might in normal operation.  Those PVs are hosted in a VME crate.  I then listened for broadcast messages on a Linux machine that were originating on the Windows machine running caQtDM.  That capture text file is attached. 

 

When the DAC slider is moved there are hundreds of broadcasts like this:

 

19:01:46.642081 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56

     0x0000:  4500 0054 3af0 0000 8011 762d a436 a00f  E..T:.....v-.6..

     0x0010:  a436 a0ff d56b 13c8 0040 750b 0000 0000  .6...k...@u.....

     0x0020:  0001 000d 0000 01d6 0000 0000 0006 0018  ................

     0x0030:  0005 000d 0000 03cf 0000 03cf 3133 424d  ............13BM

     0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....

     0x0050:  0000 0000                                ....

19:01:46.667054 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56

     0x0000:  4500 0054 3af8 0000 8011 7625 a436 a00f  E..T:.....v%.6..

     0x0010:  a436 a0ff d56b 13c8 0040 7508 0000 0000  .6...k...@u.....

     0x0020:  0001 000d 0000 01d7 0000 0000 0006 0018  ................

     0x0030:  0005 000d 0000 03d0 0000 03d0 3133 424d  ............13BM

     0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....

     0x0050:  0000 0000                                ....

 

When the motor tweak forward and tweak reverse buttons are pressed there are dozens of broadcasts like this:

 

19:01:57.142552 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48

     0x0000:  4500 004c 42c0 0000 8011 6e65 a436 a00f  E..LB.....ne.6..

     0x0010:  a436 a0ff d56b 13c8 0038 8a29 0000 0000  .6...k...8.)....

     0x0020:  0001 000d 0000 02ad 0000 0000 0006 0010  ................

     0x0030:  0005 000d 0000 04a6 0000 04a6 3133 424d  ............13BM

     0x0040:  443a 6d35 372e 5457 4600 0000            D:m57.TWF...

19:01:58.241582 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48

     0x0000:  4500 004c 42db 0000 8011 6e4a a436 a00f  E..LB.....nJ.6..

     0x0010:  a436 a0ff d56b 13c8 0038 7e26 0000 0000  .6...k...8~&....

     0x0020:  0001 000d 0000 02ae 0000 0000 0006 0010  ................

     0x0030:  0005 000d 0000 04a7 0000 04a7 3133 424d  ............13BM

     0x0040:  443a 6d35 372e 5457 5200 0000            D:m57.TWR...

 

Other display managers do not have this problem, including medm.  I really think it needs to be fixed in caQtDM.  caQtDm is being widely deployed on APS beamlines, but they did not realize it could be having this impact on the network and IOC performance.

 

Mark

 

 

 

 

From: Brands Helge (PSI) <[email protected]>
Sent: Wednesday, March 13, 2019 3:16 AM
To: Mark Rivers <[email protected]>
Cc: '[email protected]' <[email protected]>
Subject: AW: generalTime/epicsTimeGetCurrent and casr questions

 

Hi Mark,

 

yes, you are completely right! I can give you much more examples then a slider, where this is for a small IOC a nightmare.

But what should be the best case. For a Message-Button this is enough and for other widgets too. The Plugin is only a link between the EPICS library, that could  buffer such connections. You as a designer of a panel can do the same job with some Softchannels!

 

caQtDM gives you only the possibility to do something, we are not responsible what users do.

 

The problem in this is the housekeeping of channels together with the optimization of monitoring with the visibility and multiple windows.

But even then the optimization will not help against of the huge amount of SETS of an EPICS channel during a movement of a slider!

 

Best regards

                Helge

19:01:46.642081 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3af0 0000 8011 762d a436 a00f  E..T:.....v-.6..
	0x0010:  a436 a0ff d56b 13c8 0040 750b 0000 0000  .6...k...@u.....
	0x0020:  0001 000d 0000 01d6 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03cf 0000 03cf 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.667054 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3af8 0000 8011 7625 a436 a00f  E..T:.....v%.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7508 0000 0000  .6...k...@u.....
	0x0020:  0001 000d 0000 01d7 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d0 0000 03d0 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.692046 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b01 0000 8011 761c a436 a00f  E..T;.....v..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7505 0000 0000  .6...k...@u.....
	0x0020:  0001 000d 0000 01d8 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d1 0000 03d1 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.717790 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b09 0000 8011 7614 a436 a00f  E..T;.....v..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7502 0000 0000  .6...k...@u.....
	0x0020:  0001 000d 0000 01d9 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d2 0000 03d2 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.742061 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b13 0000 8011 760a a436 a00f  E..T;.....v..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74ff 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01da 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d3 0000 03d3 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.768073 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b1b 0000 8011 7602 a436 a00f  E..T;.....v..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74fc 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01db 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d4 0000 03d4 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.793018 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b24 0000 8011 75f9 a436 a00f  E..T;$....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74f9 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01dc 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d5 0000 03d5 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.819093 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b2c 0000 8011 75f1 a436 a00f  E..T;,....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74f6 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01dd 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d6 0000 03d6 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.843356 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b36 0000 8011 75e7 a436 a00f  E..T;6....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74f3 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01de 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d7 0000 03d7 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.869172 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b3e 0000 8011 75df a436 a00f  E..T;>....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74f0 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01df 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d8 0000 03d8 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.920284 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b47 0000 8011 75d6 a436 a00f  E..T;G....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74ed 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e0 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03d9 0000 03d9 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.946181 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b50 0000 8011 75cd a436 a00f  E..T;P....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74ea 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e1 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03da 0000 03da 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.970396 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b58 0000 8011 75c5 a436 a00f  E..T;X....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74e7 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e2 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03db 0000 03db 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:46.996237 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b61 0000 8011 75bc a436 a00f  E..T;a....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74e4 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e3 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03dc 0000 03dc 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.022283 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b69 0000 8011 75b4 a436 a00f  E..T;i....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74e1 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e4 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03dd 0000 03dd 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.047490 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b73 0000 8011 75aa a436 a00f  E..T;s....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74de 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e5 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03de 0000 03de 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.073356 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b7b 0000 8011 75a2 a436 a00f  E..T;{....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74db 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e6 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03df 0000 03df 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.098424 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b84 0000 8011 7599 a436 a00f  E..T;.....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74d8 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e7 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e0 0000 03e0 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.123514 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b8c 0000 8011 7591 a436 a00f  E..T;.....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74d5 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e8 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e1 0000 03e1 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.149436 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b96 0000 8011 7587 a436 a00f  E..T;.....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74d2 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01e9 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e2 0000 03e2 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.173630 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3b9e 0000 8011 757f a436 a00f  E..T;.....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74cf 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01ea 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e3 0000 03e3 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.199474 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ba7 0000 8011 7576 a436 a00f  E..T;.....uv.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74cc 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01eb 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e4 0000 03e4 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.224489 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3baf 0000 8011 756e a436 a00f  E..T;.....un.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74c9 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01ec 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e5 0000 03e5 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.249553 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3bb9 0000 8011 7564 a436 a00f  E..T;.....ud.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74c6 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01ed 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e6 0000 03e6 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.274539 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3bc1 0000 8011 755c a436 a00f  E..T;.....u\.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74c3 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01ee 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e7 0000 03e7 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.300543 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3bca 0000 8011 7553 a436 a00f  E..T;.....uS.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74c0 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01ef 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e8 0000 03e8 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.325695 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3bd2 0000 8011 754b a436 a00f  E..T;.....uK.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74bd 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f0 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03e9 0000 03e9 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.350593 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3be2 0000 8011 753b a436 a00f  E..T;.....u;.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74ba 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f1 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03ea 0000 03ea 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.374810 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3bea 0000 8011 7533 a436 a00f  E..T;.....u3.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74b7 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f2 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03eb 0000 03eb 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.400638 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3bf3 0000 8011 752a a436 a00f  E..T;.....u*.6..
	0x0010:  a436 a0ff d56b 13c8 0040 74b4 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f3 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03ec 0000 03ec 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.426659 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3bfb 0000 8011 7522 a436 a00f  E..T;.....u".6..
	0x0010:  a436 a0ff d56b 13c8 0040 74b1 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f4 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03ed 0000 03ed 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.451682 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c06 0000 8011 7517 a436 a00f  E..T<.....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74ae 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f5 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03ee 0000 03ee 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.476752 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c0e 0000 8011 750f a436 a00f  E..T<.....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74ab 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f6 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03ef 0000 03ef 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.502732 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c17 0000 8011 7506 a436 a00f  E..T<.....u..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74a8 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f7 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f0 0000 03f0 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.527812 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c1f 0000 8011 74fe a436 a00f  E..T<.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74a5 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f8 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f1 0000 03f1 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.552928 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c29 0000 8011 74f4 a436 a00f  E..T<)....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 74a2 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01f9 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f2 0000 03f2 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.578740 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c32 0000 8011 74eb a436 a00f  E..T<2....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 749f 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01fa 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f3 0000 03f3 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.603940 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c3b 0000 8011 74e2 a436 a00f  E..T<;....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 749c 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01fb 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f4 0000 03f4 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.628871 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c43 0000 8011 74da a436 a00f  E..T<C....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7499 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01fc 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f5 0000 03f5 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.654793 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c4d 0000 8011 74d0 a436 a00f  E..T<M....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7496 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01fd 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f6 0000 03f6 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.679933 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c55 0000 8011 74c8 a436 a00f  E..T<U....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7493 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01fe 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f7 0000 03f7 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.705843 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c5e 0000 8011 74bf a436 a00f  E..T<^....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7490 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 01ff 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f8 0000 03f8 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.730197 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c66 0000 8011 74b7 a436 a00f  E..T<f....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 748d 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0200 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03f9 0000 03f9 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.755109 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c70 0000 8011 74ad a436 a00f  E..T<p....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 748a 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0201 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03fa 0000 03fa 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.781013 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c78 0000 8011 74a5 a436 a00f  E..T<x....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7487 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0202 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03fb 0000 03fb 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.806125 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c81 0000 8011 749c a436 a00f  E..T<.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7484 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0203 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03fc 0000 03fc 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.831048 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c89 0000 8011 7494 a436 a00f  E..T<.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7481 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0204 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03fd 0000 03fd 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:47.856172 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c93 0000 8011 748a a436 a00f  E..T<.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 747e 0000 0000  .6...k...@t~....
	0x0020:  0001 000d 0000 0205 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03fe 0000 03fe 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.161358 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3c9e 0000 8011 747f a436 a00f  E..T<.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 747b 0000 0000  .6...k...@t{....
	0x0020:  0001 000d 0000 0206 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 03ff 0000 03ff 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.187487 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ca6 0000 8011 7477 a436 a00f  E..T<.....tw.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7478 0000 0000  .6...k...@tx....
	0x0020:  0001 000d 0000 0207 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0400 0000 0400 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.212577 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3caf 0000 8011 746e a436 a00f  E..T<.....tn.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7475 0000 0000  .6...k...@tu....
	0x0020:  0001 000d 0000 0208 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0401 0000 0401 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.237646 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3cb8 0000 8011 7465 a436 a00f  E..T<.....te.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7472 0000 0000  .6...k...@tr....
	0x0020:  0001 000d 0000 0209 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0402 0000 0402 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.262520 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3cc1 0000 8011 745c a436 a00f  E..T<.....t\.6..
	0x0010:  a436 a0ff d56b 13c8 0040 746f 0000 0000  .6...k...@to....
	0x0020:  0001 000d 0000 020a 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0403 0000 0403 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.287520 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3cca 0000 8011 7453 a436 a00f  E..T<.....tS.6..
	0x0010:  a436 a0ff d56b 13c8 0040 746c 0000 0000  .6...k...@tl....
	0x0020:  0001 000d 0000 020b 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0404 0000 0404 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.313021 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3cd4 0000 8011 7449 a436 a00f  E..T<.....tI.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7469 0000 0000  .6...k...@ti....
	0x0020:  0001 000d 0000 020c 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0405 0000 0405 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.337955 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3cdd 0000 8011 7440 a436 a00f  E..T<[email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7466 0000 0000  .6...k...@tf....
	0x0020:  0001 000d 0000 020d 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0406 0000 0406 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.362302 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3cec 0000 8011 7431 a436 a00f  E..T<.....t1.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7463 0000 0000  .6...k...@tc....
	0x0020:  0001 000d 0000 020e 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0407 0000 0407 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.387570 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3cf4 0000 8011 7429 a436 a00f  E..T<.....t).6..
	0x0010:  a436 a0ff d56b 13c8 0040 7460 0000 0000  .6...k...@t`....
	0x0020:  0001 000d 0000 020f 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0408 0000 0408 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.412149 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3cfd 0000 8011 7420 a436 a00f  E..T<.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 745d 0000 0000  .6...k...@t]....
	0x0020:  0001 000d 0000 0210 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0409 0000 0409 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.438171 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d06 0000 8011 7417 a436 a00f  E..T=.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 745a 0000 0000  .6...k...@tZ....
	0x0020:  0001 000d 0000 0211 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 040a 0000 040a 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.463181 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d0f 0000 8011 740e a436 a00f  E..T=.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7457 0000 0000  .6...k...@tW....
	0x0020:  0001 000d 0000 0212 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 040b 0000 040b 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.488207 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d17 0000 8011 7406 a436 a00f  E..T=.....t..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7454 0000 0000  .6...k...@tT....
	0x0020:  0001 000d 0000 0213 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 040c 0000 040c 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.512977 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d20 0000 8011 73fd a436 a00f  E..T=.....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7451 0000 0000  .6...k...@tQ....
	0x0020:  0001 000d 0000 0214 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 040d 0000 040d 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.537456 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d29 0000 8011 73f4 a436 a00f  E..T=)....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 744e 0000 0000  .6...k...@tN....
	0x0020:  0001 000d 0000 0215 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 040e 0000 040e 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.563206 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d32 0000 8011 73eb a436 a00f  E..T=2....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 744b 0000 0000  .6...k...@tK....
	0x0020:  0001 000d 0000 0216 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 040f 0000 040f 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.588120 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d3a 0000 8011 73e3 a436 a00f  E..T=:....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7448 0000 0000  .6...k...@tH....
	0x0020:  0001 000d 0000 0217 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0410 0000 0410 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.613054 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d43 0000 8011 73da a436 a00f  E..T=C....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7445 0000 0000  .6...k...@tE....
	0x0020:  0001 000d 0000 0218 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0411 0000 0411 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.638103 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d4c 0000 8011 73d1 a436 a00f  E..T=L....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7442 0000 0000  .6...k...@tB....
	0x0020:  0001 000d 0000 0219 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0412 0000 0412 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.663240 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d55 0000 8011 73c8 a436 a00f  E..T=U....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 743f 0000 0000  .6...k...@t?....
	0x0020:  0001 000d 0000 021a 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0413 0000 0413 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.688258 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d5d 0000 8011 73c0 a436 a00f  E..T=]....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 743c 0000 0000  .6...k...@t<....
	0x0020:  0001 000d 0000 021b 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0414 0000 0414 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.714191 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d66 0000 8011 73b7 a436 a00f  E..T=f....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7439 0000 0000  .6...k...@t9....
	0x0020:  0001 000d 0000 021c 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0415 0000 0415 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.739235 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d6f 0000 8011 73ae a436 a00f  E..T=o....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7436 0000 0000  .6...k...@t6....
	0x0020:  0001 000d 0000 021d 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0416 0000 0416 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.765233 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d78 0000 8011 73a5 a436 a00f  E..T=x....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7433 0000 0000  .6...k...@t3....
	0x0020:  0001 000d 0000 021e 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0417 0000 0417 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.790293 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d80 0000 8011 739d a436 a00f  E..T=.....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7430 0000 0000  .6...k...@t0....
	0x0020:  0001 000d 0000 021f 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0418 0000 0418 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:48.815186 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d89 0000 8011 7394 a436 a00f  E..T=.....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 742d 0000 0000  .6...k...@t-....
	0x0020:  0001 000d 0000 0220 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0419 0000 0419 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.396775 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3d9d 0000 8011 7380 a436 a00f  E..T=.....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 742a 0000 0000  .6...k...@t*....
	0x0020:  0001 000d 0000 0221 0000 0000 0006 0018  .......!........
	0x0030:  0005 000d 0000 041a 0000 041a 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.420990 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3da5 0000 8011 7378 a436 a00f  E..T=.....sx.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7427 0000 0000  .6...k...@t'....
	0x0020:  0001 000d 0000 0222 0000 0000 0006 0018  ......."........
	0x0030:  0005 000d 0000 041b 0000 041b 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.446799 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3daf 0000 8011 736e a436 a00f  E..T=.....sn.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7424 0000 0000  .6...k...@t$....
	0x0020:  0001 000d 0000 0223 0000 0000 0006 0018  .......#........
	0x0030:  0005 000d 0000 041c 0000 041c 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.472789 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3db7 0000 8011 7366 a436 a00f  E..T=.....sf.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7421 0000 0000  .6...k...@t!....
	0x0020:  0001 000d 0000 0224 0000 0000 0006 0018  .......$........
	0x0030:  0005 000d 0000 041d 0000 041d 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.498046 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3dc0 0000 8011 735d a436 a00f  E..T=.....s].6..
	0x0010:  a436 a0ff d56b 13c8 0040 741e 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0225 0000 0000 0006 0018  .......%........
	0x0030:  0005 000d 0000 041e 0000 041e 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.522904 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3dc8 0000 8011 7355 a436 a00f  E..T=.....sU.6..
	0x0010:  a436 a0ff d56b 13c8 0040 741b 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0226 0000 0000 0006 0018  .......&........
	0x0030:  0005 000d 0000 041f 0000 041f 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.547930 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3dd2 0000 8011 734b a436 a00f  E..T=.....sK.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7418 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0227 0000 0000 0006 0018  .......'........
	0x0030:  0005 000d 0000 0420 0000 0420 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.572998 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3dda 0000 8011 7343 a436 a00f  E..T=.....sC.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7415 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0228 0000 0000 0006 0018  .......(........
	0x0030:  0005 000d 0000 0421 0000 0421 3133 424d  .......!...!13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.597984 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3de3 0000 8011 733a a436 a00f  E..T=.....s:.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7412 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 0229 0000 0000 0006 0018  .......)........
	0x0030:  0005 000d 0000 0422 0000 0422 3133 424d  ......."..."13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.623106 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3deb 0000 8011 7332 a436 a00f  E..T=.....s2.6..
	0x0010:  a436 a0ff d56b 13c8 0040 740f 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 022a 0000 0000 0006 0018  .......*........
	0x0030:  0005 000d 0000 0423 0000 0423 3133 424d  .......#...#13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.648068 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3df5 0000 8011 7328 a436 a00f  E..T=.....s(.6..
	0x0010:  a436 a0ff d56b 13c8 0040 740c 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 022b 0000 0000 0006 0018  .......+........
	0x0030:  0005 000d 0000 0424 0000 0424 3133 424d  .......$...$13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.673112 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3dfd 0000 8011 7320 a436 a00f  E..T=.....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7409 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 022c 0000 0000 0006 0018  .......,........
	0x0030:  0005 000d 0000 0425 0000 0425 3133 424d  .......%...%13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.698113 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e06 0000 8011 7317 a436 a00f  E..T>.....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7406 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 022d 0000 0000 0006 0018  .......-........
	0x0030:  0005 000d 0000 0426 0000 0426 3133 424d  .......&...&13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.725328 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e0e 0000 8011 730f a436 a00f  E..T>.....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7403 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 022e 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0427 0000 0427 3133 424d  .......'...'13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.750247 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e18 0000 8011 7305 a436 a00f  E..T>.....s..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7400 0000 0000  .6...k...@t.....
	0x0020:  0001 000d 0000 022f 0000 0000 0006 0018  ......./........
	0x0030:  0005 000d 0000 0428 0000 0428 3133 424d  .......(...(13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.776153 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e20 0000 8011 72fd a436 a00f  E..T>.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73fd 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0230 0000 0000 0006 0018  .......0........
	0x0030:  0005 000d 0000 0429 0000 0429 3133 424d  .......)...)13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.801241 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e29 0000 8011 72f4 a436 a00f  E..T>)....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73fa 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0231 0000 0000 0006 0018  .......1........
	0x0030:  0005 000d 0000 042a 0000 042a 3133 424d  .......*...*13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.827188 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e31 0000 8011 72ec a436 a00f  E..T>1....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73f7 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0232 0000 0000 0006 0018  .......2........
	0x0030:  0005 000d 0000 042b 0000 042b 3133 424d  .......+...+13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.852118 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e3b 0000 8011 72e2 a436 a00f  E..T>;....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73f4 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0233 0000 0000 0006 0018  .......3........
	0x0030:  0005 000d 0000 042c 0000 042c 3133 424d  .......,...,13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.877296 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e43 0000 8011 72da a436 a00f  E..T>C....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73f1 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0234 0000 0000 0006 0018  .......4........
	0x0030:  0005 000d 0000 042d 0000 042d 3133 424d  .......-...-13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.928298 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e4c 0000 8011 72d1 a436 a00f  E..T>L....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73ee 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0235 0000 0000 0006 0018  .......5........
	0x0030:  0005 000d 0000 042e 0000 042e 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.954318 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e55 0000 8011 72c8 a436 a00f  E..T>U....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73eb 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0236 0000 0000 0006 0018  .......6........
	0x0030:  0005 000d 0000 042f 0000 042f 3133 424d  ......./.../13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:49.979422 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e5d 0000 8011 72c0 a436 a00f  E..T>]....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73e8 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0237 0000 0000 0006 0018  .......7........
	0x0030:  0005 000d 0000 0430 0000 0430 3133 424d  .......0...013BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.003583 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e66 0000 8011 72b7 a436 a00f  E..T>f....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73e5 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0238 0000 0000 0006 0018  .......8........
	0x0030:  0005 000d 0000 0431 0000 0431 3133 424d  .......1...113BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.028408 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e6e 0000 8011 72af a436 a00f  E..T>n....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73e2 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0239 0000 0000 0006 0018  .......9........
	0x0030:  0005 000d 0000 0432 0000 0432 3133 424d  .......2...213BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.054430 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e78 0000 8011 72a5 a436 a00f  E..T>x....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73df 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 023a 0000 0000 0006 0018  .......:........
	0x0030:  0005 000d 0000 0433 0000 0433 3133 424d  .......3...313BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.079435 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e80 0000 8011 729d a436 a00f  E..T>.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73dc 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 023b 0000 0000 0006 0018  .......;........
	0x0030:  0005 000d 0000 0434 0000 0434 3133 424d  .......4...413BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.104501 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e89 0000 8011 7294 a436 a00f  E..T>.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73d9 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 023c 0000 0000 0006 0018  .......<........
	0x0030:  0005 000d 0000 0435 0000 0435 3133 424d  .......5...513BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.130609 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e91 0000 8011 728c a436 a00f  E..T>.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73d6 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 023d 0000 0000 0006 0018  .......=........
	0x0030:  0005 000d 0000 0436 0000 0436 3133 424d  .......6...613BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.155529 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3e9b 0000 8011 7282 a436 a00f  E..T>.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73d3 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 023e 0000 0000 0006 0018  .......>........
	0x0030:  0005 000d 0000 0437 0000 0437 3133 424d  .......7...713BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.181485 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ea3 0000 8011 727a a436 a00f  E..T>.....rz.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73d0 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 023f 0000 0000 0006 0018  .......?........
	0x0030:  0005 000d 0000 0438 0000 0438 3133 424d  .......8...813BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.205790 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3eac 0000 8011 7271 a436 a00f  E..T>.....rq.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73cd 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0240 0000 0000 0006 0018  .......@........
	0x0030:  0005 000d 0000 0439 0000 0439 3133 424d  .......9...913BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.231585 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3eb4 0000 8011 7269 a436 a00f  E..T>.....ri.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73ca 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0241 0000 0000 0006 0018  .......A........
	0x0030:  0005 000d 0000 043a 0000 043a 3133 424d  .......:...:13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.256732 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ebe 0000 8011 725f a436 a00f  E..T>.....r_.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73c7 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0242 0000 0000 0006 0018  .......B........
	0x0030:  0005 000d 0000 043b 0000 043b 3133 424d  .......;...;13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.281849 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ec6 0000 8011 7257 a436 a00f  E..T>.....rW.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73c4 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0243 0000 0000 0006 0018  .......C........
	0x0030:  0005 000d 0000 043c 0000 043c 3133 424d  .......<...<13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.306765 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ecf 0000 8011 724e a436 a00f  E..T>.....rN.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73c1 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0244 0000 0000 0006 0018  .......D........
	0x0030:  0005 000d 0000 043d 0000 043d 3133 424d  .......=...=13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.331829 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ed7 0000 8011 7246 a436 a00f  E..T>.....rF.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73be 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0245 0000 0000 0006 0018  .......E........
	0x0030:  0005 000d 0000 043e 0000 043e 3133 424d  .......>...>13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.356865 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ee7 0000 8011 7236 a436 a00f  E..T>.....r6.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73bb 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0246 0000 0000 0006 0018  .......F........
	0x0030:  0005 000d 0000 043f 0000 043f 3133 424d  .......?...?13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.381758 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3eef 0000 8011 722e a436 a00f  E..T>.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73b8 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0247 0000 0000 0006 0018  .......G........
	0x0030:  0005 000d 0000 0440 0000 0440 3133 424d  .......@...@13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.405924 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ef8 0000 8011 7225 a436 a00f  E..T>.....r%.6..
	0x0010:  a436 a0ff d56b 13c8 0040 73b5 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0248 0000 0000 0006 0018  .......H........
	0x0030:  0005 000d 0000 0441 0000 0441 3133 424d  .......A...A13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.431800 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f00 0000 8011 721d a436 a00f  E..T?.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73b2 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0249 0000 0000 0006 0018  .......I........
	0x0030:  0005 000d 0000 0442 0000 0442 3133 424d  .......B...B13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.455973 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f0a 0000 8011 7213 a436 a00f  E..T?.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73af 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 024a 0000 0000 0006 0018  .......J........
	0x0030:  0005 000d 0000 0443 0000 0443 3133 424d  .......C...C13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.481935 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f12 0000 8011 720b a436 a00f  E..T?.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73ac 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 024b 0000 0000 0006 0018  .......K........
	0x0030:  0005 000d 0000 0444 0000 0444 3133 424d  .......D...D13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.506088 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f1b 0000 8011 7202 a436 a00f  E..T?.....r..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73a9 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 024c 0000 0000 0006 0018  .......L........
	0x0030:  0005 000d 0000 0445 0000 0445 3133 424d  .......E...E13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.530896 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f23 0000 8011 71fa a436 a00f  E..T?#....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73a6 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 024d 0000 0000 0006 0018  .......M........
	0x0030:  0005 000d 0000 0446 0000 0446 3133 424d  .......F...F13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.555889 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f2d 0000 8011 71f0 a436 a00f  E..T?-....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73a3 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 024e 0000 0000 0006 0018  .......N........
	0x0030:  0005 000d 0000 0447 0000 0447 3133 424d  .......G...G13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.580043 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f35 0000 8011 71e8 a436 a00f  E..T?5....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 73a0 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 024f 0000 0000 0006 0018  .......O........
	0x0030:  0005 000d 0000 0448 0000 0448 3133 424d  .......H...H13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.604956 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f3e 0000 8011 71df a436 a00f  E..T?>....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 739d 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0250 0000 0000 0006 0018  .......P........
	0x0030:  0005 000d 0000 0449 0000 0449 3133 424d  .......I...I13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.629168 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f46 0000 8011 71d7 a436 a00f  E..T?F....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 739a 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0251 0000 0000 0006 0018  .......Q........
	0x0030:  0005 000d 0000 044a 0000 044a 3133 424d  .......J...J13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.654993 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f50 0000 8011 71cd a436 a00f  E..T?P....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7397 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0252 0000 0000 0006 0018  .......R........
	0x0030:  0005 000d 0000 044b 0000 044b 3133 424d  .......K...K13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.679988 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f58 0000 8011 71c5 a436 a00f  E..T?X....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7394 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0253 0000 0000 0006 0018  .......S........
	0x0030:  0005 000d 0000 044c 0000 044c 3133 424d  .......L...L13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.705009 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f61 0000 8011 71bc a436 a00f  E..T?a....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7391 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0254 0000 0000 0006 0018  .......T........
	0x0030:  0005 000d 0000 044d 0000 044d 3133 424d  .......M...M13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.730099 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f69 0000 8011 71b4 a436 a00f  E..T?i....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 738e 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0255 0000 0000 0006 0018  .......U........
	0x0030:  0005 000d 0000 044e 0000 044e 3133 424d  .......N...N13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.755209 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f73 0000 8011 71aa a436 a00f  E..T?s....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 738b 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0256 0000 0000 0006 0018  .......V........
	0x0030:  0005 000d 0000 044f 0000 044f 3133 424d  .......O...O13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.780351 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f7b 0000 8011 71a2 a436 a00f  E..T?{....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7388 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0257 0000 0000 0006 0018  .......W........
	0x0030:  0005 000d 0000 0450 0000 0450 3133 424d  .......P...P13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.805256 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f84 0000 8011 7199 a436 a00f  E..T?.....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7385 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0258 0000 0000 0006 0018  .......X........
	0x0030:  0005 000d 0000 0451 0000 0451 3133 424d  .......Q...Q13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.830145 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f8c 0000 8011 7191 a436 a00f  E..T?.....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7382 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0259 0000 0000 0006 0018  .......Y........
	0x0030:  0005 000d 0000 0452 0000 0452 3133 424d  .......R...R13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.854330 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f96 0000 8011 7187 a436 a00f  E..T?.....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 737f 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 025a 0000 0000 0006 0018  .......Z........
	0x0030:  0005 000d 0000 0453 0000 0453 3133 424d  .......S...S13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.930415 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3f9e 0000 8011 717f a436 a00f  E..T?.....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 737c 0000 0000  .6...k...@s|....
	0x0020:  0001 000d 0000 025b 0000 0000 0006 0018  .......[........
	0x0030:  0005 000d 0000 0454 0000 0454 3133 424d  .......T...T13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.956260 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3fa7 0000 8011 7176 a436 a00f  E..T?.....qv.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7379 0000 0000  .6...k...@sy....
	0x0020:  0001 000d 0000 025c 0000 0000 0006 0018  .......\........
	0x0030:  0005 000d 0000 0455 0000 0455 3133 424d  .......U...U13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:50.981304 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3faf 0000 8011 716e a436 a00f  E..T?.....qn.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7376 0000 0000  .6...k...@sv....
	0x0020:  0001 000d 0000 025d 0000 0000 0006 0018  .......]........
	0x0030:  0005 000d 0000 0456 0000 0456 3133 424d  .......V...V13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.006384 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3fb8 0000 8011 7165 a436 a00f  E..T?.....qe.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7373 0000 0000  .6...k...@ss....
	0x0020:  0001 000d 0000 025e 0000 0000 0006 0018  .......^........
	0x0030:  0005 000d 0000 0457 0000 0457 3133 424d  .......W...W13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.031442 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3fc0 0000 8011 715d a436 a00f  E..T?.....q].6..
	0x0010:  a436 a0ff d56b 13c8 0040 7370 0000 0000  .6...k...@sp....
	0x0020:  0001 000d 0000 025f 0000 0000 0006 0018  ......._........
	0x0030:  0005 000d 0000 0458 0000 0458 3133 424d  .......X...X13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.056413 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3fca 0000 8011 7153 a436 a00f  E..T?.....qS.6..
	0x0010:  a436 a0ff d56b 13c8 0040 736d 0000 0000  .6...k...@sm....
	0x0020:  0001 000d 0000 0260 0000 0000 0006 0018  .......`........
	0x0030:  0005 000d 0000 0459 0000 0459 3133 424d  .......Y...Y13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.082281 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3fd2 0000 8011 714b a436 a00f  E..T?.....qK.6..
	0x0010:  a436 a0ff d56b 13c8 0040 736a 0000 0000  .6...k...@sj....
	0x0020:  0001 000d 0000 0261 0000 0000 0006 0018  .......a........
	0x0030:  0005 000d 0000 045a 0000 045a 3133 424d  .......Z...Z13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.107446 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3fdb 0000 8011 7142 a436 a00f  E..T?.....qB.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7367 0000 0000  .6...k...@sg....
	0x0020:  0001 000d 0000 0262 0000 0000 0006 0018  .......b........
	0x0030:  0005 000d 0000 045b 0000 045b 3133 424d  .......[...[13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.158512 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3fe5 0000 8011 7138 a436 a00f  E..T?.....q8.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7364 0000 0000  .6...k...@sd....
	0x0020:  0001 000d 0000 0263 0000 0000 0006 0018  .......c........
	0x0030:  0005 000d 0000 045c 0000 045c 3133 424d  .......\...\13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.412767 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3ff6 0000 8011 7127 a436 a00f  E..T?.....q'.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7361 0000 0000  .6...k...@sa....
	0x0020:  0001 000d 0000 0264 0000 0000 0006 0018  .......d........
	0x0030:  0005 000d 0000 045d 0000 045d 3133 424d  .......]...]13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.437763 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 3fff 0000 8011 711e a436 a00f  E..T?.....q..6..
	0x0010:  a436 a0ff d56b 13c8 0040 735e 0000 0000  .6...k...@s^....
	0x0020:  0001 000d 0000 0265 0000 0000 0006 0018  .......e........
	0x0030:  0005 000d 0000 045e 0000 045e 3133 424d  .......^...^13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.462852 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4008 0000 8011 7115 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 735b 0000 0000  .6...k...@s[....
	0x0020:  0001 000d 0000 0266 0000 0000 0006 0018  .......f........
	0x0030:  0005 000d 0000 045f 0000 045f 3133 424d  ......._..._13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.487755 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4011 0000 8011 710c a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7358 0000 0000  .6...k...@sX....
	0x0020:  0001 000d 0000 0267 0000 0000 0006 0018  .......g........
	0x0030:  0005 000d 0000 0460 0000 0460 3133 424d  .......`...`13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.512785 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 401a 0000 8011 7103 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7355 0000 0000  .6...k...@sU....
	0x0020:  0001 000d 0000 0268 0000 0000 0006 0018  .......h........
	0x0030:  0005 000d 0000 0461 0000 0461 3133 424d  .......a...a13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.537834 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4023 0000 8011 70fa a436 a00f  E..T@#....p..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7352 0000 0000  .6...k...@sR....
	0x0020:  0001 000d 0000 0269 0000 0000 0006 0018  .......i........
	0x0030:  0005 000d 0000 0462 0000 0462 3133 424d  .......b...b13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.563780 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 402c 0000 8011 70f1 a436 a00f  E..T@,....p..6..
	0x0010:  a436 a0ff d56b 13c8 0040 734f 0000 0000  .6...k...@sO....
	0x0020:  0001 000d 0000 026a 0000 0000 0006 0018  .......j........
	0x0030:  0005 000d 0000 0463 0000 0463 3133 424d  .......c...c13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.588905 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4034 0000 8011 70e9 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 734c 0000 0000  .6...k...@sL....
	0x0020:  0001 000d 0000 026b 0000 0000 0006 0018  .......k........
	0x0030:  0005 000d 0000 0464 0000 0464 3133 424d  .......d...d13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.614921 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 403d 0000 8011 70e0 a436 a00f  E..T@=....p..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7349 0000 0000  .6...k...@sI....
	0x0020:  0001 000d 0000 026c 0000 0000 0006 0018  .......l........
	0x0030:  0005 000d 0000 0465 0000 0465 3133 424d  .......e...e13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.639999 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4046 0000 8011 70d7 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7346 0000 0000  .6...k...@sF....
	0x0020:  0001 000d 0000 026d 0000 0000 0006 0018  .......m........
	0x0030:  0005 000d 0000 0466 0000 0466 3133 424d  .......f...f13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.665958 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 404f 0000 8011 70ce a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7343 0000 0000  .6...k...@sC....
	0x0020:  0001 000d 0000 026e 0000 0000 0006 0018  .......n........
	0x0030:  0005 000d 0000 0467 0000 0467 3133 424d  .......g...g13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.691112 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4057 0000 8011 70c6 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7340 0000 0000  .6...k...@s@....
	0x0020:  0001 000d 0000 026f 0000 0000 0006 0018  .......o........
	0x0030:  0005 000d 0000 0468 0000 0468 3133 424d  .......h...h13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.716090 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4060 0000 8011 70bd a436 a00f  E..T@`....p..6..
	0x0010:  a436 a0ff d56b 13c8 0040 733d 0000 0000  .6...k...@s=....
	0x0020:  0001 000d 0000 0270 0000 0000 0006 0018  .......p........
	0x0030:  0005 000d 0000 0469 0000 0469 3133 424d  .......i...i13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.741117 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4069 0000 8011 70b4 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 733a 0000 0000  .6...k...@s:....
	0x0020:  0001 000d 0000 0271 0000 0000 0006 0018  .......q........
	0x0030:  0005 000d 0000 046a 0000 046a 3133 424d  .......j...j13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.766322 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4072 0000 8011 70ab a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7337 0000 0000  .6...k...@s7....
	0x0020:  0001 000d 0000 0272 0000 0000 0006 0018  .......r........
	0x0030:  0005 000d 0000 046b 0000 046b 3133 424d  .......k...k13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.791156 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 407a 0000 8011 70a3 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7334 0000 0000  .6...k...@s4....
	0x0020:  0001 000d 0000 0273 0000 0000 0006 0018  .......s........
	0x0030:  0005 000d 0000 046c 0000 046c 3133 424d  .......l...l13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.817084 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4083 0000 8011 709a a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7331 0000 0000  .6...k...@s1....
	0x0020:  0001 000d 0000 0274 0000 0000 0006 0018  .......t........
	0x0030:  0005 000d 0000 046d 0000 046d 3133 424d  .......m...m13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.841259 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 408c 0000 8011 7091 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 732e 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0275 0000 0000 0006 0018  .......u........
	0x0030:  0005 000d 0000 046e 0000 046e 3133 424d  .......n...n13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.866300 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4095 0000 8011 7088 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 732b 0000 0000  .6...k...@s+....
	0x0020:  0001 000d 0000 0276 0000 0000 0006 0018  .......v........
	0x0030:  0005 000d 0000 046f 0000 046f 3133 424d  .......o...o13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.916125 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 409d 0000 8011 7080 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7328 0000 0000  .6...k...@s(....
	0x0020:  0001 000d 0000 0277 0000 0000 0006 0018  .......w........
	0x0030:  0005 000d 0000 0470 0000 0470 3133 424d  .......p...p13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.942108 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40a6 0000 8011 7077 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7325 0000 0000  .6...k...@s%....
	0x0020:  0001 000d 0000 0278 0000 0000 0006 0018  .......x........
	0x0030:  0005 000d 0000 0471 0000 0471 3133 424d  .......q...q13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.966420 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40ae 0000 8011 706f a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7322 0000 0000  .6...k...@s"....
	0x0020:  0001 000d 0000 0279 0000 0000 0006 0018  .......y........
	0x0030:  0005 000d 0000 0472 0000 0472 3133 424d  .......r...r13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:51.991253 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40b7 0000 8011 7066 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 731f 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 027a 0000 0000 0006 0018  .......z........
	0x0030:  0005 000d 0000 0473 0000 0473 3133 424d  .......s...s13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.017260 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40bf 0000 8011 705e a436 a00f  [email protected]^.6..
	0x0010:  a436 a0ff d56b 13c8 0040 731c 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 027b 0000 0000 0006 0018  .......{........
	0x0030:  0005 000d 0000 0474 0000 0474 3133 424d  .......t...t13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.042285 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40c9 0000 8011 7054 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7319 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 027c 0000 0000 0006 0018  .......|........
	0x0030:  0005 000d 0000 0475 0000 0475 3133 424d  .......u...u13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.068301 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40d1 0000 8011 704c a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7316 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 027d 0000 0000 0006 0018  .......}........
	0x0030:  0005 000d 0000 0476 0000 0476 3133 424d  .......v...v13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.093320 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40da 0000 8011 7043 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7313 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 027e 0000 0000 0006 0018  .......~........
	0x0030:  0005 000d 0000 0477 0000 0477 3133 424d  .......w...w13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.118373 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40e2 0000 8011 703b a436 a00f  [email protected];.6..
	0x0010:  a436 a0ff d56b 13c8 0040 7310 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 027f 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0478 0000 0478 3133 424d  .......x...x13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.143366 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40ec 0000 8011 7031 a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 730d 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0280 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0479 0000 0479 3133 424d  .......y...y13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.168500 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40f4 0000 8011 7029 a436 a00f  [email protected]).6..
	0x0010:  a436 a0ff d56b 13c8 0040 730a 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0281 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 047a 0000 047a 3133 424d  .......z...z13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.193523 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 40fe 0000 8011 701f a436 a00f  [email protected]..
	0x0010:  a436 a0ff d56b 13c8 0040 7307 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0282 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 047b 0000 047b 3133 424d  .......{...{13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.218461 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4106 0000 8011 7017 a436 a00f  E..TA.....p..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7304 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0283 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 047c 0000 047c 3133 424d  .......|...|13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.244380 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4110 0000 8011 700d a436 a00f  E..TA.....p..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7301 0000 0000  .6...k...@s.....
	0x0020:  0001 000d 0000 0284 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 047d 0000 047d 3133 424d  .......}...}13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.270498 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4118 0000 8011 7005 a436 a00f  E..TA.....p..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72fe 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0285 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 047e 0000 047e 3133 424d  .......~...~13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.296484 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4121 0000 8011 6ffc a436 a00f  E..TA!....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72fb 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0286 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 047f 0000 047f 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.321563 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4129 0000 8011 6ff4 a436 a00f  E..TA)....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72f8 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0287 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0480 0000 0480 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.347546 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4139 0000 8011 6fe4 a436 a00f  E..TA9....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72f5 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0288 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0481 0000 0481 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.372725 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4141 0000 8011 6fdc a436 a00f  E..TAA....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72f2 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0289 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0482 0000 0482 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.398545 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 414a 0000 8011 6fd3 a436 a00f  E..TAJ....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72ef 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 028a 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0483 0000 0483 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.422793 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4152 0000 8011 6fcb a436 a00f  E..TAR....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72ec 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 028b 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0484 0000 0484 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.447761 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 415c 0000 8011 6fc1 a436 a00f  E..TA\....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72e9 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 028c 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0485 0000 0485 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.473744 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4164 0000 8011 6fb9 a436 a00f  E..TAd....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72e6 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 028d 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0486 0000 0486 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.499761 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 416d 0000 8011 6fb0 a436 a00f  E..TAm....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72e3 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 028e 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0487 0000 0487 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.524844 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4175 0000 8011 6fa8 a436 a00f  E..TAu....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72e0 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 028f 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0488 0000 0488 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.550749 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 417f 0000 8011 6f9e a436 a00f  E..TA.....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72dd 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0290 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0489 0000 0489 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.575906 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4187 0000 8011 6f96 a436 a00f  E..TA.....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72da 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0291 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 048a 0000 048a 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.600878 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4190 0000 8011 6f8d a436 a00f  E..TA.....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72d7 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0292 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 048b 0000 048b 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.625822 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4198 0000 8011 6f85 a436 a00f  E..TA.....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72d4 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0293 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 048c 0000 048c 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.650889 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41a2 0000 8011 6f7b a436 a00f  E..TA.....o{.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72d1 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0294 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 048d 0000 048d 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.676792 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41aa 0000 8011 6f73 a436 a00f  E..TA.....os.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72ce 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0295 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 048e 0000 048e 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.701992 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41b3 0000 8011 6f6a a436 a00f  E..TA.....oj.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72cb 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0296 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 048f 0000 048f 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.727042 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41bb 0000 8011 6f62 a436 a00f  E..TA.....ob.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72c8 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0297 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0490 0000 0490 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.751937 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41c5 0000 8011 6f58 a436 a00f  E..TA.....oX.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72c5 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0298 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0491 0000 0491 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.776962 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41cd 0000 8011 6f50 a436 a00f  E..TA.....oP.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72c2 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 0299 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0492 0000 0492 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.801919 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41d6 0000 8011 6f47 a436 a00f  E..TA.....oG.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72bf 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 029a 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0493 0000 0493 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.827028 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41de 0000 8011 6f3f a436 a00f  E..TA.....o?.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72bc 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 029b 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0494 0000 0494 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.852078 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41e8 0000 8011 6f35 a436 a00f  E..TA.....o5.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72b9 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 029c 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0495 0000 0495 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.877083 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41f0 0000 8011 6f2d a436 a00f  E..TA.....o-.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72b6 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 029d 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0496 0000 0496 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.928102 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 41f9 0000 8011 6f24 a436 a00f  E..TA.....o$.6..
	0x0010:  a436 a0ff d56b 13c8 0040 72b3 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 029e 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0497 0000 0497 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.953060 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4202 0000 8011 6f1b a436 a00f  E..TB.....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72b0 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 029f 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0498 0000 0498 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:52.977266 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 420a 0000 8011 6f13 a436 a00f  E..TB.....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72ad 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 02a0 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 0499 0000 0499 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:53.027382 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4213 0000 8011 6f0a a436 a00f  E..TB.....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72aa 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 02a1 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 049a 0000 049a 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:53.053178 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 421c 0000 8011 6f01 a436 a00f  E..TB.....o..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72a7 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 02a2 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 049b 0000 049b 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:53.078330 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4225 0000 8011 6ef8 a436 a00f  E..TB%....n..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72a4 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 02a3 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 049c 0000 049c 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:53.103391 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 422d 0000 8011 6ef0 a436 a00f  E..TB-....n..6..
	0x0010:  a436 a0ff d56b 13c8 0040 72a1 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 02a4 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 049d 0000 049d 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:53.155303 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4237 0000 8011 6ee6 a436 a00f  E..TB7....n..6..
	0x0010:  a436 a0ff d56b 13c8 0040 729e 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 02a5 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 049e 0000 049e 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:53.181325 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 423f 0000 8011 6ede a436 a00f  E..TB?....n..6..
	0x0010:  a436 a0ff d56b 13c8 0040 729b 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 02a6 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 049f 0000 049f 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:53.206389 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 56
	0x0000:  4500 0054 4248 0000 8011 6ed5 a436 a00f  E..TBH....n..6..
	0x0010:  a436 a0ff d56b 13c8 0040 7298 0000 0000  .6...k...@r.....
	0x0020:  0001 000d 0000 02a7 0000 0000 0006 0018  ................
	0x0030:  0005 000d 0000 04a0 0000 04a0 3133 424d  ............13BM
	0x0040:  443a 4441 4331 5f31 2e56 414c 0000 0000  D:DAC1_1.VAL....
	0x0050:  0000 0000                                ....
19:01:55.145155 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 426d 0000 8011 6eb8 a436 a00f  E..LBm....n..6..
	0x0010:  a436 a0ff d56b 13c8 0038 8a38 0000 0000  .6...k...8.8....
	0x0020:  0001 000d 0000 02a8 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a1 0000 04a1 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 4600 0000            D:m57.TWF...
19:01:55.647266 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 4282 0000 8011 6ea3 a436 a00f  E..LB.....n..6..
	0x0010:  a436 a0ff d56b 13c8 0038 8a35 0000 0000  .6...k...8.5....
	0x0020:  0001 000d 0000 02a9 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a2 0000 04a2 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 4600 0000            D:m57.TWF...
19:01:56.000504 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 4291 0000 8011 6e94 a436 a00f  E..LB.....n..6..
	0x0010:  a436 a0ff d56b 13c8 0038 8a32 0000 0000  .6...k...8.2....
	0x0020:  0001 000d 0000 02aa 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a3 0000 04a3 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 4600 0000            D:m57.TWF...
19:01:56.382994 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 42a5 0000 8011 6e80 a436 a00f  E..LB.....n..6..
	0x0010:  a436 a0ff d56b 13c8 0038 8a2f 0000 0000  .6...k...8./....
	0x0020:  0001 000d 0000 02ab 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a4 0000 04a4 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 4600 0000            D:m57.TWF...
19:01:56.760265 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 42b3 0000 8011 6e72 a436 a00f  E..LB.....nr.6..
	0x0010:  a436 a0ff d56b 13c8 0038 8a2c 0000 0000  .6...k...8.,....
	0x0020:  0001 000d 0000 02ac 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a5 0000 04a5 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 4600 0000            D:m57.TWF...
19:01:57.142552 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 42c0 0000 8011 6e65 a436 a00f  E..LB.....ne.6..
	0x0010:  a436 a0ff d56b 13c8 0038 8a29 0000 0000  .6...k...8.)....
	0x0020:  0001 000d 0000 02ad 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a6 0000 04a6 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 4600 0000            D:m57.TWF...
19:01:58.241582 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 42db 0000 8011 6e4a a436 a00f  E..LB.....nJ.6..
	0x0010:  a436 a0ff d56b 13c8 0038 7e26 0000 0000  .6...k...8~&....
	0x0020:  0001 000d 0000 02ae 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a7 0000 04a7 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 5200 0000            D:m57.TWR...
19:01:58.649142 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 42ef 0000 8011 6e36 a436 a00f  E..LB.....n6.6..
	0x0010:  a436 a0ff d56b 13c8 0038 7e23 0000 0000  .6...k...8~#....
	0x0020:  0001 000d 0000 02af 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a8 0000 04a8 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 5200 0000            D:m57.TWR...
19:01:59.049367 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 42fd 0000 8011 6e28 a436 a00f  E..LB.....n(.6..
	0x0010:  a436 a0ff d56b 13c8 0038 7e20 0000 0000  .6...k...8~.....
	0x0020:  0001 000d 0000 02b0 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04a9 0000 04a9 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 5200 0000            D:m57.TWR...
19:01:59.430702 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 4310 0000 8011 6e15 a436 a00f  E..LC.....n..6..
	0x0010:  a436 a0ff d56b 13c8 0038 7e1d 0000 0000  .6...k...8~.....
	0x0020:  0001 000d 0000 02b1 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04aa 0000 04aa 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 5200 0000            D:m57.TWR...
19:01:59.859101 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 431f 0000 8011 6e06 a436 a00f  E..LC.....n..6..
	0x0010:  a436 a0ff d56b 13c8 0038 7e1a 0000 0000  .6...k...8~.....
	0x0020:  0001 000d 0000 02b2 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04ab 0000 04ab 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 5200 0000            D:m57.TWR...
19:02:00.391782 IP camaro.cars.aps.anl.gov.54635 > 164.54.160.255.ca-1: UDP, length 48
	0x0000:  4500 004c 4334 0000 8011 6df1 a436 a00f  E..LC4....m..6..
	0x0010:  a436 a0ff d56b 13c8 0038 7e17 0000 0000  .6...k...8~.....
	0x0020:  0001 000d 0000 02b3 0000 0000 0006 0010  ................
	0x0030:  0005 000d 0000 04ac 0000 04ac 3133 424d  ............13BM
	0x0040:  443a 6d35 372e 5457 5200 0000            D:m57.TWR...

References:
generalTime/epicsTimeGetCurrent and casr questions Layne (US), William C via Tech-talk
Re: generalTime/epicsTimeGetCurrent and casr questions Mark Rivers via Tech-talk
Re: generalTime/epicsTimeGetCurrent and casr questions Johnson, Andrew N. via Tech-talk
RE: generalTime/epicsTimeGetCurrent and casr questions Mark Rivers via Tech-talk
RE: generalTime/epicsTimeGetCurrent and casr questions Mark Rivers via Tech-talk
AW: generalTime/epicsTimeGetCurrent and casr questions Brands Helge (PSI) via Tech-talk
RE: generalTime/epicsTimeGetCurrent and casr questions Mark Rivers via Tech-talk
AW: generalTime/epicsTimeGetCurrent and casr questions Brands Helge (PSI) via Tech-talk

Navigate by Date:
Prev: Re: Count record that resets by date Diego Omitto via Tech-talk
Next: Re: I'm looking for a pvacces example to read PVStructure Marty Kraimer via Tech-talk
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  <20192020  2021  2022  2023  2024 
Navigate by Thread:
Prev: Re: generalTime/epicsTimeGetCurrent and casr questions Hugo Slepicka via Tech-talk
Next: Re: generalTime/epicsTimeGetCurrent and casr questions Michael Davidsaver via Tech-talk
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  <20192020  2021  2022  2023  2024