tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
February 2019
- 16 participants
- 1788 discussions
commit cea5002514638c308231e0e606baa26b989cec74
Author: Iain R. Learmonth <irl(a)fsfe.org>
Date: Tue Feb 19 09:13:31 2019 +0000
Adds a helper script to run tests
---
run_tests.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/run_tests.sh b/run_tests.sh
new file mode 100755
index 0000000..c0bf555
--- /dev/null
+++ b/run_tests.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+PYTHONPATH=. python -m nose
1
0

19 Feb '19
commit 66f5f7de2cf9764c80f15d9af2b3ce1a5f31b844
Author: Ana Custura <ana(a)nestat.org.uk>
Date: Sat Feb 16 21:13:48 2019 +0100
Refactors some code to make it testable
---
onionperf/util.py | 36 ++++++++++++++++++++++--------------
1 file changed, 22 insertions(+), 14 deletions(-)
diff --git a/onionperf/util.py b/onionperf/util.py
index fbc61cb..d4aebcf 100644
--- a/onionperf/util.py
+++ b/onionperf/util.py
@@ -58,12 +58,12 @@ def find_file_paths_pairs(searchpath, patterns_a, patterns_b):
paths.append((paths_a, paths_b))
return paths
-def find_path(binpath, defaultname):
+def find_path(binpath, defaultname, search_path=None):
# find the path to tor
if binpath is not None:
binpath = os.path.abspath(os.path.expanduser(binpath))
else:
- w = which(defaultname)
+ w = which(defaultname, search_path)
if w is not None:
binpath = os.path.abspath(os.path.expanduser(w))
else:
@@ -78,15 +78,18 @@ def find_path(binpath, defaultname):
# we found it and it exists
return binpath
-def which(program):
- def is_exe(fpath):
- return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
+def is_exe(fpath):
+ return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
+
+def which(program, search_path=None):
+ if search_path is None:
+ search_path = os.environ["PATH"]
fpath, fname = os.path.split(program)
if fpath:
if is_exe(program):
return program
else:
- for path in os.environ["PATH"].split(os.pathsep):
+ for path in search_path.split(os.pathsep):
exe_file = os.path.join(path, program)
if is_exe(exe_file):
return exe_file
@@ -110,21 +113,26 @@ def do_dates_match(date1, date2):
else:
return False
-def get_ip_address():
+def find_ip_address_url(data):
ip_address = None
-
- data = urllib.urlopen('https://check.torproject.org/').read()
if data is not None and len(data) > 0:
ip_list = re.findall(r'[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}', data)
if ip_list is not None and len(ip_list) > 0:
ip_address = ip_list[0]
+ return ip_address
+def find_ip_address_local():
+ s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
+ s.connect(("8.8.8.8", 53))
+ ip_address = s.getsockname()[0]
+ s.close()
+ return ip_address
+
+def get_ip_address():
+ data = urllib.urlopen('https://check.torproject.org/').read()
+ ip_address = find_ip_address_url(data)
if ip_address is None:
- s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
- s.connect(("8.8.8.8", 53))
- ip_address = s.getsockname()[0]
- s.close()
-
+ ip_address = find_ip_address_local()
return ip_address
def get_random_free_port():
1
0

19 Feb '19
commit 4f2738b4f9966c943001edc8dd36c79984c4eee8
Author: Ana Custura <ana(a)nestat.org.uk>
Date: Sat Feb 16 21:14:37 2019 +0100
Adds tests and associated files for util.py
---
onionperf/tests/data/bin/script | 0
onionperf/tests/data/bin/script_non_exe | 0
onionperf/tests/data/dirs/abcdefg.txt | 0
onionperf/tests/data/logs/onionperf.tgen.log | 6510 ++++++++++++++++++++
onionperf/tests/data/logs/onionperf.torctl.log | 976 +++
.../tests/data/logs/onionperf20190101.tgen.log | 6510 ++++++++++++++++++++
.../tests/data/logs/onionperf20190101.torctl.log | 976 +++
onionperf/tests/data/simplefile | 1 +
onionperf/tests/data/simplefile.xz | Bin 0 -> 68 bytes
onionperf/tests/test_utils.py | 289 +
10 files changed, 15262 insertions(+)
diff --git a/onionperf/tests/data/bin/script b/onionperf/tests/data/bin/script
new file mode 100755
index 0000000..e69de29
diff --git a/onionperf/tests/data/bin/script_non_exe b/onionperf/tests/data/bin/script_non_exe
new file mode 100644
index 0000000..e69de29
diff --git a/onionperf/tests/data/dirs/abcdefg.txt b/onionperf/tests/data/dirs/abcdefg.txt
new file mode 100644
index 0000000..e69de29
diff --git a/onionperf/tests/data/logs/onionperf.tgen.log b/onionperf/tests/data/logs/onionperf.tgen.log
new file mode 100644
index 0000000..f668945
--- /dev/null
+++ b/onionperf/tests/data/logs/onionperf.tgen.log
@@ -0,0 +1,6510 @@
+2019-01-31 11:29:51 1548934191.144294 [message] [shd-tgen-main.c:82] [_tgenmain_run] Initializing traffic generator on host phlox process id 10659
+2019-01-31 11:29:51 1548934191.144855 [message] [shd-tgen-graph.c:757] [tgengraph_new] successfully loaded graphml file '/home/ana/onionperf-data/tgen-client/tgen.graphml.xml' and validated actions: graph is weakly connected with 1 cluster, 2 vertices, and 2 edges
+2019-01-31 11:29:51 1548934191.144936 [info] [shd-tgen-driver.c:737] [_tgendriver_setHeartbeatTimerHelper] set heartbeat timer using descriptor 5
+2019-01-31 11:29:51 1548934191.145016 [message] [shd-tgen-server.c:136] [tgenserver_new] server listening at 0.0.0.0:46152
+2019-01-31 11:29:51 1548934191.145061 [info] [shd-tgen-driver.c:679] [_tgendriver_startServerHelper] started server using descriptor 9
+2019-01-31 11:29:51 1548934191.145118 [info] [shd-tgen-driver.c:707] [_tgendriver_setStartClientTimerHelper] set startClient timer using descriptor 12
+2019-01-31 11:29:51 1548934191.145174 [message] [shd-tgen-main.c:153] [_tgenmain_run] entering main loop to watch descriptors
+2019-01-31 11:29:51 1548934191.145236 [message] [shd-tgen-driver.c:797] [_tgendriver_onStartClientTimerExpired] starting client using action graph '/home/ana/onionperf-data/tgen-client/tgen.graphml.xml'
+2019-01-31 11:29:51 1548934191.145366 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:29:51 1548934191.145449 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:29:51 1548934191.145522 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:29:51 1548934191.145565 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:29:51 1548934191.145626 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:29:55 1548934195.606144 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:29:55 1548934195.606223 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:29:55 1548934195.606309 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36384 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:29:55 1548934195.606355 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:29:55 1548934195.606437 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,1,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:29:56 1548934196.295183 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:29:56 1548934196.295279 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:29:56 1548934196.418955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:29:56 1548934196.467390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5009 total-bytes-write=52 payload-bytes-read=4980/5242880 (0.09%)
+2019-01-31 11:29:56 1548934196.472538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=8993 total-bytes-write=52 payload-bytes-read=8964/5242880 (0.17%)
+2019-01-31 11:29:56 1548934196.550385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=13973 total-bytes-write=52 payload-bytes-read=13944/5242880 (0.27%)
+2019-01-31 11:29:56 1548934196.556140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=17907 total-bytes-write=52 payload-bytes-read=17878/5242880 (0.34%)
+2019-01-31 11:29:56 1548934196.556197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=18405 total-bytes-write=52 payload-bytes-read=18376/5242880 (0.35%)
+2019-01-31 11:29:56 1548934196.585028 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=22887 total-bytes-write=52 payload-bytes-read=22858/5242880 (0.44%)
+2019-01-31 11:29:56 1548934196.585088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=23385 total-bytes-write=52 payload-bytes-read=23356/5242880 (0.45%)
+2019-01-31 11:29:56 1548934196.586105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=25377 total-bytes-write=52 payload-bytes-read=25348/5242880 (0.48%)
+2019-01-31 11:29:56 1548934196.635623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=28863 total-bytes-write=52 payload-bytes-read=28834/5242880 (0.55%)
+2019-01-31 11:29:56 1548934196.640270 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=32797 total-bytes-write=52 payload-bytes-read=32768/5242880 (0.62%)
+2019-01-31 11:29:56 1548934196.640325 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=33295 total-bytes-write=52 payload-bytes-read=33266/5242880 (0.63%)
+2019-01-31 11:29:56 1548934196.642378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=36283 total-bytes-write=52 payload-bytes-read=36254/5242880 (0.69%)
+2019-01-31 11:29:56 1548934196.643280 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=39769 total-bytes-write=52 payload-bytes-read=39740/5242880 (0.76%)
+2019-01-31 11:29:56 1548934196.644343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=40765 total-bytes-write=52 payload-bytes-read=40736/5242880 (0.78%)
+2019-01-31 11:29:56 1548934196.644637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=41761 total-bytes-write=52 payload-bytes-read=41732/5242880 (0.80%)
+2019-01-31 11:29:56 1548934196.666894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=45809 total-bytes-write=52 payload-bytes-read=45780/5242880 (0.87%)
+2019-01-31 11:29:56 1548934196.708376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=49679 total-bytes-write=52 payload-bytes-read=49650/5242880 (0.95%)
+2019-01-31 11:29:56 1548934196.710372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=53165 total-bytes-write=52 payload-bytes-read=53136/5242880 (1.01%)
+2019-01-31 11:29:56 1548934196.710790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=57149 total-bytes-write=52 payload-bytes-read=57120/5242880 (1.09%)
+2019-01-31 11:29:56 1548934196.744773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=58145 total-bytes-write=52 payload-bytes-read=58116/5242880 (1.11%)
+2019-01-31 11:29:56 1548934196.745199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=61133 total-bytes-write=52 payload-bytes-read=61104/5242880 (1.17%)
+2019-01-31 11:29:56 1548934196.757388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=64619 total-bytes-write=52 payload-bytes-read=64590/5242880 (1.23%)
+2019-01-31 11:29:56 1548934196.813633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=68055 total-bytes-write=52 payload-bytes-read=68026/5242880 (1.30%)
+2019-01-31 11:29:56 1548934196.822409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=71541 total-bytes-write=52 payload-bytes-read=71512/5242880 (1.36%)
+2019-01-31 11:29:56 1548934196.823171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=75589 total-bytes-write=52 payload-bytes-read=75560/5242880 (1.44%)
+2019-01-31 11:29:56 1548934196.864411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=93901 total-bytes-write=52 payload-bytes-read=93872/5242880 (1.79%)
+2019-01-31 11:29:56 1548934196.908380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=111779 total-bytes-write=52 payload-bytes-read=111750/5242880 (2.13%)
+2019-01-31 11:29:56 1548934196.934018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=115215 total-bytes-write=52 payload-bytes-read=115186/5242880 (2.20%)
+2019-01-31 11:29:56 1548934196.934769 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=119199 total-bytes-write=52 payload-bytes-read=119170/5242880 (2.27%)
+2019-01-31 11:29:56 1548934196.935187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=123183 total-bytes-write=52 payload-bytes-read=123154/5242880 (2.35%)
+2019-01-31 11:29:56 1548934196.968990 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=124179 total-bytes-write=52 payload-bytes-read=124150/5242880 (2.37%)
+2019-01-31 11:29:56 1548934196.969443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=127665 total-bytes-write=52 payload-bytes-read=127636/5242880 (2.43%)
+2019-01-31 11:29:56 1548934196.970084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=131599 total-bytes-write=52 payload-bytes-read=131570/5242880 (2.51%)
+2019-01-31 11:29:56 1548934196.971245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=135085 total-bytes-write=52 payload-bytes-read=135056/5242880 (2.58%)
+2019-01-31 11:29:57 1548934197.012406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=136081 total-bytes-write=52 payload-bytes-read=136052/5242880 (2.59%)
+2019-01-31 11:29:57 1548934197.012986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=139567 total-bytes-write=52 payload-bytes-read=139538/5242880 (2.66%)
+2019-01-31 11:29:57 1548934197.013383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=141559 total-bytes-write=52 payload-bytes-read=141530/5242880 (2.70%)
+2019-01-31 11:29:57 1548934197.014492 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=145045 total-bytes-write=52 payload-bytes-read=145016/5242880 (2.77%)
+2019-01-31 11:29:57 1548934197.015018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=146041 total-bytes-write=52 payload-bytes-read=146012/5242880 (2.78%)
+2019-01-31 11:29:57 1548934197.016411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=149477 total-bytes-write=52 payload-bytes-read=149448/5242880 (2.85%)
+2019-01-31 11:29:57 1548934197.050794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=153525 total-bytes-write=52 payload-bytes-read=153496/5242880 (2.93%)
+2019-01-31 11:29:57 1548934197.092436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=176817 total-bytes-write=52 payload-bytes-read=176788/5242880 (3.37%)
+2019-01-31 11:29:57 1548934197.136411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=200123 total-bytes-write=52 payload-bytes-read=200094/5242880 (3.82%)
+2019-01-31 11:29:57 1548934197.180393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=216009 total-bytes-write=52 payload-bytes-read=215980/5242880 (4.12%)
+2019-01-31 11:29:57 1548934197.195993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=217005 total-bytes-write=52 payload-bytes-read=216976/5242880 (4.14%)
+2019-01-31 11:29:57 1548934197.196945 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=220491 total-bytes-write=52 payload-bytes-read=220462/5242880 (4.20%)
+2019-01-31 11:29:57 1548934197.197734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=224475 total-bytes-write=52 payload-bytes-read=224446/5242880 (4.28%)
+2019-01-31 11:29:57 1548934197.198372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=228459 total-bytes-write=52 payload-bytes-read=228430/5242880 (4.36%)
+2019-01-31 11:29:57 1548934197.240408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=253259 total-bytes-write=52 payload-bytes-read=253230/5242880 (4.83%)
+2019-01-31 11:29:57 1548934197.284383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=256745 total-bytes-write=52 payload-bytes-read=256716/5242880 (4.90%)
+2019-01-31 11:29:57 1548934197.346009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=258239 total-bytes-write=52 payload-bytes-read=258210/5242880 (4.92%)
+2019-01-31 11:29:57 1548934197.386149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=261725 total-bytes-write=52 payload-bytes-read=261696/5242880 (4.99%)
+2019-01-31 11:29:57 1548934197.395829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=262173 total-bytes-write=52 payload-bytes-read=262144/5242880 (5.00%)
+2019-01-31 11:29:57 1548934197.396277 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=265659 total-bytes-write=52 payload-bytes-read=265630/5242880 (5.07%)
+2019-01-31 11:29:57 1548934197.430365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=269145 total-bytes-write=52 payload-bytes-read=269116/5242880 (5.13%)
+2019-01-31 11:29:57 1548934197.472396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:29:57 1548934197.516381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=294493 total-bytes-write=52 payload-bytes-read=294464/5242880 (5.62%)
+2019-01-31 11:29:57 1548934197.552909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=297929 total-bytes-write=52 payload-bytes-read=297900/5242880 (5.68%)
+2019-01-31 11:29:57 1548934197.554833 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=305897 total-bytes-write=52 payload-bytes-read=305868/5242880 (5.83%)
+2019-01-31 11:29:57 1548934197.554906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=308387 total-bytes-write=52 payload-bytes-read=308358/5242880 (5.88%)
+2019-01-31 11:29:57 1548934197.558174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=309881 total-bytes-write=52 payload-bytes-read=309852/5242880 (5.91%)
+2019-01-31 11:29:57 1548934197.565274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=313317 total-bytes-write=52 payload-bytes-read=313288/5242880 (5.98%)
+2019-01-31 11:29:57 1548934197.604014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=317799 total-bytes-write=52 payload-bytes-read=317770/5242880 (6.06%)
+2019-01-31 11:29:57 1548934197.605049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=325767 total-bytes-write=52 payload-bytes-read=325738/5242880 (6.21%)
+2019-01-31 11:29:57 1548934197.605158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=330199 total-bytes-write=52 payload-bytes-read=330170/5242880 (6.30%)
+2019-01-31 11:29:57 1548934197.605411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=336673 total-bytes-write=52 payload-bytes-read=336644/5242880 (6.42%)
+2019-01-31 11:29:57 1548934197.642540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=340159 total-bytes-write=52 payload-bytes-read=340130/5242880 (6.49%)
+2019-01-31 11:29:57 1548934197.652014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=343645 total-bytes-write=52 payload-bytes-read=343616/5242880 (6.55%)
+2019-01-31 11:29:57 1548934197.696398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=365457 total-bytes-write=52 payload-bytes-read=365428/5242880 (6.97%)
+2019-01-31 11:29:57 1548934197.759472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=368943 total-bytes-write=52 payload-bytes-read=368914/5242880 (7.04%)
+2019-01-31 11:29:57 1548934197.763309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=372927 total-bytes-write=52 payload-bytes-read=372898/5242880 (7.11%)
+2019-01-31 11:29:57 1548934197.766623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=376861 total-bytes-write=52 payload-bytes-read=376832/5242880 (7.19%)
+2019-01-31 11:29:57 1548934197.767863 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=380845 total-bytes-write=52 payload-bytes-read=380816/5242880 (7.26%)
+2019-01-31 11:29:57 1548934197.770656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=382339 total-bytes-write=52 payload-bytes-read=382310/5242880 (7.29%)
+2019-01-31 11:29:57 1548934197.772025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=389809 total-bytes-write=52 payload-bytes-read=389780/5242880 (7.43%)
+2019-01-31 11:29:57 1548934197.819681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=391303 total-bytes-write=52 payload-bytes-read=391274/5242880 (7.46%)
+2019-01-31 11:29:57 1548934197.821523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=398723 total-bytes-write=52 payload-bytes-read=398694/5242880 (7.60%)
+2019-01-31 11:29:57 1548934197.822416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=406691 total-bytes-write=52 payload-bytes-read=406662/5242880 (7.76%)
+2019-01-31 11:29:57 1548934197.823879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=407189 total-bytes-write=52 payload-bytes-read=407160/5242880 (7.77%)
+2019-01-31 11:29:57 1548934197.824913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=413115 total-bytes-write=52 payload-bytes-read=413086/5242880 (7.88%)
+2019-01-31 11:29:57 1548934197.833651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=415605 total-bytes-write=52 payload-bytes-read=415576/5242880 (7.93%)
+2019-01-31 11:29:57 1548934197.844989 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=423075 total-bytes-write=52 payload-bytes-read=423046/5242880 (8.07%)
+2019-01-31 11:29:57 1548934197.845128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=427009 total-bytes-write=52 payload-bytes-read=426980/5242880 (8.14%)
+2019-01-31 11:29:57 1548934197.853290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=430495 total-bytes-write=52 payload-bytes-read=430466/5242880 (8.21%)
+2019-01-31 11:29:57 1548934197.853931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=434479 total-bytes-write=52 payload-bytes-read=434450/5242880 (8.29%)
+2019-01-31 11:29:57 1548934197.875116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=434977 total-bytes-write=52 payload-bytes-read=434948/5242880 (8.30%)
+2019-01-31 11:29:57 1548934197.876614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=442397 total-bytes-write=52 payload-bytes-read=442368/5242880 (8.44%)
+2019-01-31 11:29:57 1548934197.878030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=450365 total-bytes-write=52 payload-bytes-read=450336/5242880 (8.59%)
+2019-01-31 11:29:57 1548934197.889231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=453851 total-bytes-write=52 payload-bytes-read=453822/5242880 (8.66%)
+2019-01-31 11:29:57 1548934197.890591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=461271 total-bytes-write=52 payload-bytes-read=461242/5242880 (8.80%)
+2019-01-31 11:29:57 1548934197.897498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=462267 total-bytes-write=52 payload-bytes-read=462238/5242880 (8.82%)
+2019-01-31 11:29:57 1548934197.897984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=465753 total-bytes-write=52 payload-bytes-read=465724/5242880 (8.88%)
+2019-01-31 11:29:57 1548934197.920074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=469239 total-bytes-write=52 payload-bytes-read=469210/5242880 (8.95%)
+2019-01-31 11:29:57 1548934197.964397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=492545 total-bytes-write=52 payload-bytes-read=492516/5242880 (9.39%)
+2019-01-31 11:29:58 1548934198.008391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=496031 total-bytes-write=52 payload-bytes-read=496002/5242880 (9.46%)
+2019-01-31 11:29:58 1548934198.049616 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=499517 total-bytes-write=52 payload-bytes-read=499488/5242880 (9.53%)
+2019-01-31 11:29:58 1548934198.092395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=519387 total-bytes-write=52 payload-bytes-read=519358/5242880 (9.91%)
+2019-01-31 11:29:58 1548934198.136402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=536269 total-bytes-write=52 payload-bytes-read=536240/5242880 (10.23%)
+2019-01-31 11:29:58 1548934198.136746 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=536767 total-bytes-write=52 payload-bytes-read=536738/5242880 (10.24%)
+2019-01-31 11:29:58 1548934198.137248 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=539755 total-bytes-write=52 payload-bytes-read=539726/5242880 (10.29%)
+2019-01-31 11:29:58 1548934198.242568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=540253 total-bytes-write=52 payload-bytes-read=540224/5242880 (10.30%)
+2019-01-31 11:29:58 1548934198.449132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=543689 total-bytes-write=52 payload-bytes-read=543660/5242880 (10.37%)
+2019-01-31 11:29:58 1548934198.449754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=544685 total-bytes-write=52 payload-bytes-read=544656/5242880 (10.39%)
+2019-01-31 11:29:58 1548934198.450090 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=548171 total-bytes-write=52 payload-bytes-read=548142/5242880 (10.45%)
+2019-01-31 11:29:58 1548934198.471608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=549167 total-bytes-write=52 payload-bytes-read=549138/5242880 (10.47%)
+2019-01-31 11:29:58 1548934198.472390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=552653 total-bytes-write=52 payload-bytes-read=552624/5242880 (10.54%)
+2019-01-31 11:29:58 1548934198.473029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=556139 total-bytes-write=52 payload-bytes-read=556110/5242880 (10.61%)
+2019-01-31 11:29:58 1548934198.516392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=563559 total-bytes-write=52 payload-bytes-read=563530/5242880 (10.75%)
+2019-01-31 11:29:58 1548934198.560358 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=567543 total-bytes-write=52 payload-bytes-read=567514/5242880 (10.82%)
+2019-01-31 11:29:58 1548934198.577079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=568041 total-bytes-write=52 payload-bytes-read=568012/5242880 (10.83%)
+2019-01-31 11:29:58 1548934198.577472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=570531 total-bytes-write=52 payload-bytes-read=570502/5242880 (10.88%)
+2019-01-31 11:29:58 1548934198.610631 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=573967 total-bytes-write=52 payload-bytes-read=573938/5242880 (10.95%)
+2019-01-31 11:29:58 1548934198.611309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=577951 total-bytes-write=52 payload-bytes-read=577922/5242880 (11.02%)
+2019-01-31 11:29:58 1548934198.611851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=581935 total-bytes-write=52 payload-bytes-read=581906/5242880 (11.10%)
+2019-01-31 11:29:58 1548934198.652415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=610221 total-bytes-write=52 payload-bytes-read=610192/5242880 (11.64%)
+2019-01-31 11:29:58 1548934198.696378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=625111 total-bytes-write=52 payload-bytes-read=625082/5242880 (11.92%)
+2019-01-31 11:29:58 1548934198.700418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=625609 total-bytes-write=52 payload-bytes-read=625580/5242880 (11.93%)
+2019-01-31 11:29:58 1548934198.701851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=629095 total-bytes-write=52 payload-bytes-read=629066/5242880 (12.00%)
+2019-01-31 11:29:58 1548934198.702640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=633079 total-bytes-write=52 payload-bytes-read=633050/5242880 (12.07%)
+2019-01-31 11:29:58 1548934198.703272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=639005 total-bytes-write=52 payload-bytes-read=638976/5242880 (12.19%)
+2019-01-31 11:29:58 1548934198.714038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=646475 total-bytes-write=52 payload-bytes-read=646446/5242880 (12.33%)
+2019-01-31 11:29:58 1548934198.714740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=652949 total-bytes-write=52 payload-bytes-read=652920/5242880 (12.45%)
+2019-01-31 11:29:58 1548934198.726158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=656385 total-bytes-write=52 payload-bytes-read=656356/5242880 (12.52%)
+2019-01-31 11:29:58 1548934198.734488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=657381 total-bytes-write=52 payload-bytes-read=657352/5242880 (12.54%)
+2019-01-31 11:29:58 1548934198.735458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=660867 total-bytes-write=52 payload-bytes-read=660838/5242880 (12.60%)
+2019-01-31 11:29:58 1548934198.737024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=668835 total-bytes-write=52 payload-bytes-read=668806/5242880 (12.76%)
+2019-01-31 11:29:58 1548934198.778243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=672271 total-bytes-write=52 payload-bytes-read=672242/5242880 (12.82%)
+2019-01-31 11:29:58 1548934198.814693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=672769 total-bytes-write=52 payload-bytes-read=672740/5242880 (12.83%)
+2019-01-31 11:29:58 1548934198.815558 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=676255 total-bytes-write=52 payload-bytes-read=676226/5242880 (12.90%)
+2019-01-31 11:29:58 1548934198.831842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=679741 total-bytes-write=52 payload-bytes-read=679712/5242880 (12.96%)
+2019-01-31 11:29:58 1548934198.872451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=723415 total-bytes-write=52 payload-bytes-read=723386/5242880 (13.80%)
+2019-01-31 11:29:58 1548934198.916435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=762657 total-bytes-write=52 payload-bytes-read=762628/5242880 (14.55%)
+2019-01-31 11:29:58 1548934198.959281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=763653 total-bytes-write=52 payload-bytes-read=763624/5242880 (14.56%)
+2019-01-31 11:29:59 1548934199.032274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=765147 total-bytes-write=52 payload-bytes-read=765118/5242880 (14.59%)
+2019-01-31 11:29:59 1548934199.065077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=768633 total-bytes-write=52 payload-bytes-read=768604/5242880 (14.66%)
+2019-01-31 11:29:59 1548934199.076457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=770077 total-bytes-write=52 payload-bytes-read=770048/5242880 (14.69%)
+2019-01-31 11:29:59 1548934199.077789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=773563 total-bytes-write=52 payload-bytes-read=773534/5242880 (14.75%)
+2019-01-31 11:29:59 1548934199.087598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=777049 total-bytes-write=52 payload-bytes-read=777020/5242880 (14.82%)
+2019-01-31 11:29:59 1548934199.128406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=785017 total-bytes-write=52 payload-bytes-read=784988/5242880 (14.97%)
+2019-01-31 11:29:59 1548934199.196176 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=785515 total-bytes-write=52 payload-bytes-read=785486/5242880 (14.98%)
+2019-01-31 11:29:59 1548934199.199555 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=788951 total-bytes-write=52 payload-bytes-read=788922/5242880 (15.05%)
+2019-01-31 11:29:59 1548934199.243373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=789449 total-bytes-write=52 payload-bytes-read=789420/5242880 (15.06%)
+2019-01-31 11:29:59 1548934199.243763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=792935 total-bytes-write=52 payload-bytes-read=792906/5242880 (15.12%)
+2019-01-31 11:29:59 1548934199.253932 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=796421 total-bytes-write=52 payload-bytes-read=796392/5242880 (15.19%)
+2019-01-31 11:29:59 1548934199.296408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=815793 total-bytes-write=52 payload-bytes-read=815764/5242880 (15.56%)
+2019-01-31 11:29:59 1548934199.340398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=824707 total-bytes-write=52 payload-bytes-read=824678/5242880 (15.73%)
+2019-01-31 11:29:59 1548934199.346789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=825205 total-bytes-write=52 payload-bytes-read=825176/5242880 (15.74%)
+2019-01-31 11:29:59 1548934199.347910 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=828691 total-bytes-write=52 payload-bytes-read=828662/5242880 (15.81%)
+2019-01-31 11:29:59 1548934199.357019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=829189 total-bytes-write=52 payload-bytes-read=829160/5242880 (15.81%)
+2019-01-31 11:29:59 1548934199.357894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=832675 total-bytes-write=52 payload-bytes-read=832646/5242880 (15.88%)
+2019-01-31 11:29:59 1548934199.358846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=834667 total-bytes-write=52 payload-bytes-read=834638/5242880 (15.92%)
+2019-01-31 11:29:59 1548934199.379664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=838103 total-bytes-write=52 payload-bytes-read=838074/5242880 (15.98%)
+2019-01-31 11:29:59 1548934199.380124 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=840095 total-bytes-write=52 payload-bytes-read=840066/5242880 (16.02%)
+2019-01-31 11:29:59 1548934199.391379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=843581 total-bytes-write=52 payload-bytes-read=843552/5242880 (16.09%)
+2019-01-31 11:29:59 1548934199.392333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=847067 total-bytes-write=52 payload-bytes-read=847038/5242880 (16.16%)
+2019-01-31 11:29:59 1548934199.436375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=857973 total-bytes-write=52 payload-bytes-read=857944/5242880 (16.36%)
+2019-01-31 11:29:59 1548934199.480454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=891737 total-bytes-write=52 payload-bytes-read=891708/5242880 (17.01%)
+2019-01-31 11:29:59 1548934199.524447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=925003 total-bytes-write=52 payload-bytes-read=924974/5242880 (17.64%)
+2019-01-31 11:29:59 1548934199.524636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=932473 total-bytes-write=52 payload-bytes-read=932444/5242880 (17.78%)
+2019-01-31 11:29:59 1548934199.526362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=939893 total-bytes-write=52 payload-bytes-read=939864/5242880 (17.93%)
+2019-01-31 11:29:59 1548934199.546403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=943379 total-bytes-write=52 payload-bytes-read=943350/5242880 (17.99%)
+2019-01-31 11:29:59 1548934199.577964 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=943877 total-bytes-write=52 payload-bytes-read=943848/5242880 (18.00%)
+2019-01-31 11:29:59 1548934199.580911 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=947363 total-bytes-write=52 payload-bytes-read=947334/5242880 (18.07%)
+2019-01-31 11:29:59 1548934199.581468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=955281 total-bytes-write=52 payload-bytes-read=955252/5242880 (18.22%)
+2019-01-31 11:29:59 1548934199.601547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=956775 total-bytes-write=52 payload-bytes-read=956746/5242880 (18.25%)
+2019-01-31 11:29:59 1548934199.602016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=960261 total-bytes-write=52 payload-bytes-read=960232/5242880 (18.31%)
+2019-01-31 11:29:59 1548934199.614916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=961257 total-bytes-write=52 payload-bytes-read=961228/5242880 (18.33%)
+2019-01-31 11:29:59 1548934199.616369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=968677 total-bytes-write=52 payload-bytes-read=968648/5242880 (18.48%)
+2019-01-31 11:29:59 1548934199.617432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=972163 total-bytes-write=52 payload-bytes-read=972134/5242880 (18.54%)
+2019-01-31 11:29:59 1548934199.622842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=975649 total-bytes-write=52 payload-bytes-read=975620/5242880 (18.61%)
+2019-01-31 11:29:59 1548934199.664363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=982621 total-bytes-write=52 payload-bytes-read=982592/5242880 (18.74%)
+2019-01-31 11:29:59 1548934199.708415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1007421 total-bytes-write=52 payload-bytes-read=1007392/5242880 (19.21%)
+2019-01-31 11:29:59 1548934199.752387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1010907 total-bytes-write=52 payload-bytes-read=1010878/5242880 (19.28%)
+2019-01-31 11:29:59 1548934199.794350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1011903 total-bytes-write=52 payload-bytes-read=1011874/5242880 (19.30%)
+2019-01-31 11:29:59 1548934199.821929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1015389 total-bytes-write=52 payload-bytes-read=1015360/5242880 (19.37%)
+2019-01-31 11:29:59 1548934199.822849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1019323 total-bytes-write=52 payload-bytes-read=1019294/5242880 (19.44%)
+2019-01-31 11:29:59 1548934199.823552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1027291 total-bytes-write=52 payload-bytes-read=1027262/5242880 (19.59%)
+2019-01-31 11:29:59 1548934199.826194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1027789 total-bytes-write=52 payload-bytes-read=1027760/5242880 (19.60%)
+2019-01-31 11:29:59 1548934199.829307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1029283 total-bytes-write=52 payload-bytes-read=1029254/5242880 (19.63%)
+2019-01-31 11:29:59 1548934199.849607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1032719 total-bytes-write=52 payload-bytes-read=1032690/5242880 (19.70%)
+2019-01-31 11:29:59 1548934199.883318 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1036205 total-bytes-write=52 payload-bytes-read=1036176/5242880 (19.76%)
+2019-01-31 11:29:59 1548934199.918600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1040189 total-bytes-write=52 payload-bytes-read=1040160/5242880 (19.84%)
+2019-01-31 11:29:59 1548934199.918878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1048157 total-bytes-write=52 payload-bytes-read=1048128/5242880 (19.99%)
+2019-01-31 11:29:59 1548934199.918993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1052091 total-bytes-write=52 payload-bytes-read=1052062/5242880 (20.07%)
+2019-01-31 11:29:59 1548934199.920289 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1056075 total-bytes-write=52 payload-bytes-read=1056046/5242880 (20.14%)
+2019-01-31 11:29:59 1548934199.926418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1056573 total-bytes-write=52 payload-bytes-read=1056544/5242880 (20.15%)
+2019-01-31 11:29:59 1548934199.926836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1060059 total-bytes-write=52 payload-bytes-read=1060030/5242880 (20.22%)
+2019-01-31 11:29:59 1548934199.948843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1061553 total-bytes-write=52 payload-bytes-read=1061524/5242880 (20.25%)
+2019-01-31 11:30:00 1548934200.023478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1064989 total-bytes-write=52 payload-bytes-read=1064960/5242880 (20.31%)
+2019-01-31 11:30:00 1548934200.034178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1068475 total-bytes-write=52 payload-bytes-read=1068446/5242880 (20.38%)
+2019-01-31 11:30:00 1548934200.046600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1071961 total-bytes-write=52 payload-bytes-read=1071932/5242880 (20.45%)
+2019-01-31 11:30:00 1548934200.088386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1084361 total-bytes-write=52 payload-bytes-read=1084332/5242880 (20.68%)
+2019-01-31 11:30:00 1548934200.132402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1098753 total-bytes-write=52 payload-bytes-read=1098724/5242880 (20.96%)
+2019-01-31 11:30:00 1548934200.207422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1099749 total-bytes-write=52 payload-bytes-read=1099720/5242880 (20.98%)
+2019-01-31 11:30:00 1548934200.224625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1107219 total-bytes-write=52 payload-bytes-read=1107190/5242880 (21.12%)
+2019-01-31 11:30:00 1548934200.226001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1114141 total-bytes-write=52 payload-bytes-read=1114112/5242880 (21.25%)
+2019-01-31 11:30:00 1548934200.233298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1117627 total-bytes-write=52 payload-bytes-read=1117598/5242880 (21.32%)
+2019-01-31 11:30:00 1548934200.233674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1120615 total-bytes-write=52 payload-bytes-read=1120586/5242880 (21.37%)
+2019-01-31 11:30:00 1548934200.245100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1124101 total-bytes-write=52 payload-bytes-read=1124072/5242880 (21.44%)
+2019-01-31 11:30:00 1548934200.246472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1132019 total-bytes-write=52 payload-bytes-read=1131990/5242880 (21.59%)
+2019-01-31 11:30:00 1548934200.247233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1136003 total-bytes-write=52 payload-bytes-read=1135974/5242880 (21.67%)
+2019-01-31 11:30:00 1548934200.248239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1139987 total-bytes-write=52 payload-bytes-read=1139958/5242880 (21.74%)
+2019-01-31 11:30:00 1548934200.288412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1151889 total-bytes-write=52 payload-bytes-read=1151860/5242880 (21.97%)
+2019-01-31 11:30:00 1548934200.336450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1179677 total-bytes-write=52 payload-bytes-read=1179648/5242880 (22.50%)
+2019-01-31 11:30:00 1548934200.380482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1212445 total-bytes-write=52 payload-bytes-read=1212416/5242880 (23.12%)
+2019-01-31 11:30:00 1548934200.424407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1236299 total-bytes-write=52 payload-bytes-read=1236270/5242880 (23.58%)
+2019-01-31 11:30:00 1548934200.455835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1239287 total-bytes-write=52 payload-bytes-read=1239258/5242880 (23.64%)
+2019-01-31 11:30:00 1548934200.466965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1242773 total-bytes-write=52 payload-bytes-read=1242744/5242880 (23.70%)
+2019-01-31 11:30:00 1548934200.467909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1246707 total-bytes-write=52 payload-bytes-read=1246678/5242880 (23.78%)
+2019-01-31 11:30:00 1548934200.468540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1250691 total-bytes-write=52 payload-bytes-read=1250662/5242880 (23.85%)
+2019-01-31 11:30:00 1548934200.469115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1254675 total-bytes-write=52 payload-bytes-read=1254646/5242880 (23.93%)
+2019-01-31 11:30:00 1548934200.512445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1282961 total-bytes-write=52 payload-bytes-read=1282932/5242880 (24.47%)
+2019-01-31 11:30:00 1548934200.556384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1297851 total-bytes-write=52 payload-bytes-read=1297822/5242880 (24.75%)
+2019-01-31 11:30:00 1548934200.556502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1303827 total-bytes-write=52 payload-bytes-read=1303798/5242880 (24.87%)
+2019-01-31 11:30:00 1548934200.577259 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1307313 total-bytes-write=52 payload-bytes-read=1307284/5242880 (24.93%)
+2019-01-31 11:30:00 1548934200.599658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1308309 total-bytes-write=52 payload-bytes-read=1308280/5242880 (24.95%)
+2019-01-31 11:30:00 1548934200.600381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1309803 total-bytes-write=52 payload-bytes-read=1309774/5242880 (24.98%)
+2019-01-31 11:30:00 1548934200.646241 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1313239 total-bytes-write=52 payload-bytes-read=1313210/5242880 (25.05%)
+2019-01-31 11:30:00 1548934200.648028 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1320709 total-bytes-write=52 payload-bytes-read=1320680/5242880 (25.19%)
+2019-01-31 11:30:00 1548934200.659921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1328129 total-bytes-write=52 payload-bytes-read=1328100/5242880 (25.33%)
+2019-01-31 11:30:00 1548934200.660005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:30:00 1548934200.682032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1333607 total-bytes-write=52 payload-bytes-read=1333578/5242880 (25.44%)
+2019-01-31 11:30:00 1548934200.726918 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1337093 total-bytes-write=52 payload-bytes-read=1337064/5242880 (25.50%)
+2019-01-31 11:30:00 1548934200.768397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1353975 total-bytes-write=52 payload-bytes-read=1353946/5242880 (25.82%)
+2019-01-31 11:30:00 1548934200.814992 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1357461 total-bytes-write=52 payload-bytes-read=1357432/5242880 (25.89%)
+2019-01-31 11:30:00 1548934200.850800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1357959 total-bytes-write=52 payload-bytes-read=1357930/5242880 (25.90%)
+2019-01-31 11:30:00 1548934200.851473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1361395 total-bytes-write=52 payload-bytes-read=1361366/5242880 (25.97%)
+2019-01-31 11:30:00 1548934200.877802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1365379 total-bytes-write=52 payload-bytes-read=1365350/5242880 (26.04%)
+2019-01-31 11:30:00 1548934200.878803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1373347 total-bytes-write=52 payload-bytes-read=1373318/5242880 (26.19%)
+2019-01-31 11:30:00 1548934200.878880 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1376285 total-bytes-write=52 payload-bytes-read=1376256/5242880 (26.25%)
+2019-01-31 11:30:00 1548934200.898084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1379771 total-bytes-write=52 payload-bytes-read=1379742/5242880 (26.32%)
+2019-01-31 11:30:00 1548934200.920025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1383257 total-bytes-write=52 payload-bytes-read=1383228/5242880 (26.38%)
+2019-01-31 11:30:00 1548934200.964732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1383755 total-bytes-write=52 payload-bytes-read=1383726/5242880 (26.39%)
+2019-01-31 11:30:00 1548934200.965462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1387241 total-bytes-write=52 payload-bytes-read=1387212/5242880 (26.46%)
+2019-01-31 11:30:01 1548934201.008426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1408605 total-bytes-write=52 payload-bytes-read=1408576/5242880 (26.87%)
+2019-01-31 11:30:01 1548934201.052402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1416523 total-bytes-write=52 payload-bytes-read=1416494/5242880 (27.02%)
+2019-01-31 11:30:01 1548934201.053114 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1420507 total-bytes-write=52 payload-bytes-read=1420478/5242880 (27.09%)
+2019-01-31 11:30:01 1548934201.053475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1424989 total-bytes-write=52 payload-bytes-read=1424960/5242880 (27.18%)
+2019-01-31 11:30:01 1548934201.053655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1430417 total-bytes-write=52 payload-bytes-read=1430388/5242880 (27.28%)
+2019-01-31 11:30:01 1548934201.060296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1433903 total-bytes-write=52 payload-bytes-read=1433874/5242880 (27.35%)
+2019-01-31 11:30:01 1548934201.063085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1441821 total-bytes-write=52 payload-bytes-read=1441792/5242880 (27.50%)
+2019-01-31 11:30:01 1548934201.063169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1445805 total-bytes-write=52 payload-bytes-read=1445776/5242880 (27.58%)
+2019-01-31 11:30:01 1548934201.063608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1449291 total-bytes-write=52 payload-bytes-read=1449262/5242880 (27.64%)
+2019-01-31 11:30:01 1548934201.088604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1456761 total-bytes-write=52 payload-bytes-read=1456732/5242880 (27.78%)
+2019-01-31 11:30:01 1548934201.094609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1457259 total-bytes-write=52 payload-bytes-read=1457230/5242880 (27.79%)
+2019-01-31 11:30:01 1548934201.096075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1464679 total-bytes-write=52 payload-bytes-read=1464650/5242880 (27.94%)
+2019-01-31 11:30:01 1548934201.098056 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1472647 total-bytes-write=52 payload-bytes-read=1472618/5242880 (28.09%)
+2019-01-31 11:30:01 1548934201.098160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1476581 total-bytes-write=52 payload-bytes-read=1476552/5242880 (28.16%)
+2019-01-31 11:30:01 1548934201.122155 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1478075 total-bytes-write=52 payload-bytes-read=1478046/5242880 (28.19%)
+2019-01-31 11:30:01 1548934201.122798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1481561 total-bytes-write=52 payload-bytes-read=1481532/5242880 (28.26%)
+2019-01-31 11:30:01 1548934201.181150 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1482059 total-bytes-write=52 payload-bytes-read=1482030/5242880 (28.27%)
+2019-01-31 11:30:01 1548934201.183695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1483553 total-bytes-write=52 payload-bytes-read=1483524/5242880 (28.30%)
+2019-01-31 11:30:01 1548934201.239364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1490973 total-bytes-write=52 payload-bytes-read=1490944/5242880 (28.44%)
+2019-01-31 11:30:01 1548934201.239471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1494957 total-bytes-write=52 payload-bytes-read=1494928/5242880 (28.51%)
+2019-01-31 11:30:01 1548934201.247927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1497945 total-bytes-write=52 payload-bytes-read=1497916/5242880 (28.57%)
+2019-01-31 11:30:01 1548934201.258327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1505415 total-bytes-write=52 payload-bytes-read=1505386/5242880 (28.71%)
+2019-01-31 11:30:01 1548934201.332981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1506909 total-bytes-write=52 payload-bytes-read=1506880/5242880 (28.74%)
+2019-01-31 11:30:01 1548934201.334140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1510345 total-bytes-write=52 payload-bytes-read=1510316/5242880 (28.81%)
+2019-01-31 11:30:01 1548934201.345442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1511341 total-bytes-write=52 payload-bytes-read=1511312/5242880 (28.83%)
+2019-01-31 11:30:01 1548934201.346480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1514827 total-bytes-write=52 payload-bytes-read=1514798/5242880 (28.89%)
+2019-01-31 11:30:01 1548934201.355933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1516321 total-bytes-write=52 payload-bytes-read=1516292/5242880 (28.92%)
+2019-01-31 11:30:01 1548934201.357048 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1523741 total-bytes-write=52 payload-bytes-read=1523712/5242880 (29.06%)
+2019-01-31 11:30:01 1548934201.368222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1524239 total-bytes-write=52 payload-bytes-read=1524210/5242880 (29.07%)
+2019-01-31 11:30:01 1548934201.369633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1531709 total-bytes-write=52 payload-bytes-read=1531680/5242880 (29.21%)
+2019-01-31 11:30:01 1548934201.369807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1537685 total-bytes-write=52 payload-bytes-read=1537656/5242880 (29.33%)
+2019-01-31 11:30:01 1548934201.378441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1540125 total-bytes-write=52 payload-bytes-read=1540096/5242880 (29.38%)
+2019-01-31 11:30:01 1548934201.391487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1547595 total-bytes-write=52 payload-bytes-read=1547566/5242880 (29.52%)
+2019-01-31 11:30:01 1548934201.396247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1554567 total-bytes-write=52 payload-bytes-read=1554538/5242880 (29.65%)
+2019-01-31 11:30:01 1548934201.401360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1558003 total-bytes-write=52 payload-bytes-read=1557974/5242880 (29.72%)
+2019-01-31 11:30:01 1548934201.441218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1558501 total-bytes-write=52 payload-bytes-read=1558472/5242880 (29.73%)
+2019-01-31 11:30:01 1548934201.441852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1561987 total-bytes-write=52 payload-bytes-read=1561958/5242880 (29.79%)
+2019-01-31 11:30:01 1548934201.453238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1563481 total-bytes-write=52 payload-bytes-read=1563452/5242880 (29.82%)
+2019-01-31 11:30:01 1548934201.454765 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1566967 total-bytes-write=52 payload-bytes-read=1566938/5242880 (29.89%)
+2019-01-31 11:30:01 1548934201.457441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1574885 total-bytes-write=52 payload-bytes-read=1574856/5242880 (30.04%)
+2019-01-31 11:30:01 1548934201.457534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1579367 total-bytes-write=52 payload-bytes-read=1579338/5242880 (30.12%)
+2019-01-31 11:30:01 1548934201.457606 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1581857 total-bytes-write=52 payload-bytes-read=1581828/5242880 (30.17%)
+2019-01-31 11:30:01 1548934201.475749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1583849 total-bytes-write=52 payload-bytes-read=1583820/5242880 (30.21%)
+2019-01-31 11:30:01 1548934201.497300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1591269 total-bytes-write=52 payload-bytes-read=1591240/5242880 (30.35%)
+2019-01-31 11:30:01 1548934201.508682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1591767 total-bytes-write=52 payload-bytes-read=1591738/5242880 (30.36%)
+2019-01-31 11:30:01 1548934201.509987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1597245 total-bytes-write=52 payload-bytes-read=1597216/5242880 (30.46%)
+2019-01-31 11:30:01 1548934201.518488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1600731 total-bytes-write=52 payload-bytes-read=1600702/5242880 (30.53%)
+2019-01-31 11:30:01 1548934201.522815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1604715 total-bytes-write=52 payload-bytes-read=1604686/5242880 (30.61%)
+2019-01-31 11:30:01 1548934201.552443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1605213 total-bytes-write=52 payload-bytes-read=1605184/5242880 (30.62%)
+2019-01-31 11:30:01 1548934201.555335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1608649 total-bytes-write=52 payload-bytes-read=1608620/5242880 (30.68%)
+2019-01-31 11:30:01 1548934201.573543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1612135 total-bytes-write=52 payload-bytes-read=1612106/5242880 (30.75%)
+2019-01-31 11:30:01 1548934201.584007 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1613131 total-bytes-write=52 payload-bytes-read=1613102/5242880 (30.77%)
+2019-01-31 11:30:01 1548934201.585849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1616617 total-bytes-write=52 payload-bytes-read=1616588/5242880 (30.83%)
+2019-01-31 11:30:01 1548934201.593971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1624535 total-bytes-write=52 payload-bytes-read=1624506/5242880 (30.98%)
+2019-01-31 11:30:01 1548934201.594046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1627523 total-bytes-write=52 payload-bytes-read=1627494/5242880 (31.04%)
+2019-01-31 11:30:01 1548934201.596033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1631009 total-bytes-write=52 payload-bytes-read=1630980/5242880 (31.11%)
+2019-01-31 11:30:01 1548934201.642849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1635491 total-bytes-write=52 payload-bytes-read=1635462/5242880 (31.19%)
+2019-01-31 11:30:01 1548934201.660438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1639425 total-bytes-write=52 payload-bytes-read=1639396/5242880 (31.27%)
+2019-01-31 11:30:01 1548934201.663132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1647393 total-bytes-write=52 payload-bytes-read=1647364/5242880 (31.42%)
+2019-01-31 11:30:01 1548934201.668811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1651875 total-bytes-write=52 payload-bytes-read=1651846/5242880 (31.51%)
+2019-01-31 11:30:01 1548934201.668883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1654365 total-bytes-write=52 payload-bytes-read=1654336/5242880 (31.55%)
+2019-01-31 11:30:01 1548934201.693376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1657801 total-bytes-write=52 payload-bytes-read=1657772/5242880 (31.62%)
+2019-01-31 11:30:01 1548934201.702238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1661287 total-bytes-write=52 payload-bytes-read=1661258/5242880 (31.69%)
+2019-01-31 11:30:01 1548934201.764193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1665271 total-bytes-write=52 payload-bytes-read=1665242/5242880 (31.76%)
+2019-01-31 11:30:01 1548934201.764409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1673189 total-bytes-write=52 payload-bytes-read=1673160/5242880 (31.91%)
+2019-01-31 11:30:01 1548934201.774134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1674185 total-bytes-write=52 payload-bytes-read=1674156/5242880 (31.93%)
+2019-01-31 11:30:01 1548934201.775591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1677671 total-bytes-write=52 payload-bytes-read=1677642/5242880 (32.00%)
+2019-01-31 11:30:01 1548934201.827658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1678667 total-bytes-write=52 payload-bytes-read=1678638/5242880 (32.02%)
+2019-01-31 11:30:01 1548934201.827862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1682153 total-bytes-write=52 payload-bytes-read=1682124/5242880 (32.08%)
+2019-01-31 11:30:01 1548934201.866646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1683647 total-bytes-write=52 payload-bytes-read=1683618/5242880 (32.11%)
+2019-01-31 11:30:01 1548934201.867016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1687133 total-bytes-write=52 payload-bytes-read=1687104/5242880 (32.18%)
+2019-01-31 11:30:01 1548934201.867718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1691067 total-bytes-write=52 payload-bytes-read=1691038/5242880 (32.25%)
+2019-01-31 11:30:01 1548934201.869780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1699035 total-bytes-write=52 payload-bytes-read=1699006/5242880 (32.41%)
+2019-01-31 11:30:01 1548934201.878150 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1700031 total-bytes-write=52 payload-bytes-read=1700002/5242880 (32.42%)
+2019-01-31 11:30:01 1548934201.879415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1703517 total-bytes-write=52 payload-bytes-read=1703488/5242880 (32.49%)
+2019-01-31 11:30:01 1548934201.929980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1704463 total-bytes-write=52 payload-bytes-read=1704434/5242880 (32.51%)
+2019-01-31 11:30:01 1548934201.930390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1706455 total-bytes-write=52 payload-bytes-read=1706426/5242880 (32.55%)
+2019-01-31 11:30:01 1548934201.942833 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1713925 total-bytes-write=52 payload-bytes-read=1713896/5242880 (32.69%)
+2019-01-31 11:30:01 1548934201.952706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1714921 total-bytes-write=52 payload-bytes-read=1714892/5242880 (32.71%)
+2019-01-31 11:30:01 1548934201.955267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1718407 total-bytes-write=52 payload-bytes-read=1718378/5242880 (32.78%)
+2019-01-31 11:30:01 1548934201.958040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1722341 total-bytes-write=52 payload-bytes-read=1722312/5242880 (32.85%)
+2019-01-31 11:30:01 1548934201.963664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1726325 total-bytes-write=52 payload-bytes-read=1726296/5242880 (32.93%)
+2019-01-31 11:30:01 1548934201.972152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1730807 total-bytes-write=52 payload-bytes-read=1730778/5242880 (33.01%)
+2019-01-31 11:30:01 1548934201.972313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1737231 total-bytes-write=52 payload-bytes-read=1737202/5242880 (33.13%)
+2019-01-31 11:30:01 1548934201.972622 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1745199 total-bytes-write=52 payload-bytes-read=1745170/5242880 (33.29%)
+2019-01-31 11:30:01 1548934201.977363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1749681 total-bytes-write=52 payload-bytes-read=1749652/5242880 (33.37%)
+2019-01-31 11:30:02 1548934202.005815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1753615 total-bytes-write=52 payload-bytes-read=1753586/5242880 (33.45%)
+2019-01-31 11:30:02 1548934202.031651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1754611 total-bytes-write=52 payload-bytes-read=1754582/5242880 (33.47%)
+2019-01-31 11:30:02 1548934202.032340 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1758097 total-bytes-write=52 payload-bytes-read=1758068/5242880 (33.53%)
+2019-01-31 11:30:02 1548934202.033853 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1762081 total-bytes-write=52 payload-bytes-read=1762052/5242880 (33.61%)
+2019-01-31 11:30:02 1548934202.037878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1763575 total-bytes-write=52 payload-bytes-read=1763546/5242880 (33.64%)
+2019-01-31 11:30:02 1548934202.043924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1767061 total-bytes-write=52 payload-bytes-read=1767032/5242880 (33.70%)
+2019-01-31 11:30:02 1548934202.045069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1770995 total-bytes-write=52 payload-bytes-read=1770966/5242880 (33.78%)
+2019-01-31 11:30:02 1548934202.046233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1778963 total-bytes-write=52 payload-bytes-read=1778934/5242880 (33.93%)
+2019-01-31 11:30:02 1548934202.066576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1779461 total-bytes-write=52 payload-bytes-read=1779432/5242880 (33.94%)
+2019-01-31 11:30:02 1548934202.067552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1785437 total-bytes-write=52 payload-bytes-read=1785408/5242880 (34.05%)
+2019-01-31 11:30:02 1548934202.077337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1788873 total-bytes-write=52 payload-bytes-read=1788844/5242880 (34.12%)
+2019-01-31 11:30:02 1548934202.078964 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1792857 total-bytes-write=52 payload-bytes-read=1792828/5242880 (34.20%)
+2019-01-31 11:30:02 1548934202.088961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1793853 total-bytes-write=52 payload-bytes-read=1793824/5242880 (34.21%)
+2019-01-31 11:30:02 1548934202.090690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1797339 total-bytes-write=52 payload-bytes-read=1797310/5242880 (34.28%)
+2019-01-31 11:30:02 1548934202.100695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1797837 total-bytes-write=52 payload-bytes-read=1797808/5242880 (34.29%)
+2019-01-31 11:30:02 1548934202.103660 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1805257 total-bytes-write=52 payload-bytes-read=1805228/5242880 (34.43%)
+2019-01-31 11:30:02 1548934202.144909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1808743 total-bytes-write=52 payload-bytes-read=1808714/5242880 (34.50%)
+2019-01-31 11:30:02 1548934202.256977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1809739 total-bytes-write=52 payload-bytes-read=1809710/5242880 (34.52%)
+2019-01-31 11:30:02 1548934202.257254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1811731 total-bytes-write=52 payload-bytes-read=1811702/5242880 (34.56%)
+2019-01-31 11:30:02 1548934202.269581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1819151 total-bytes-write=52 payload-bytes-read=1819122/5242880 (34.70%)
+2019-01-31 11:30:02 1548934202.270691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1822139 total-bytes-write=52 payload-bytes-read=1822110/5242880 (34.75%)
+2019-01-31 11:30:02 1548934202.278343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1825625 total-bytes-write=52 payload-bytes-read=1825596/5242880 (34.82%)
+2019-01-31 11:30:02 1548934202.279506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1829609 total-bytes-write=52 payload-bytes-read=1829580/5242880 (34.90%)
+2019-01-31 11:30:02 1548934202.279683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1833593 total-bytes-write=52 payload-bytes-read=1833564/5242880 (34.97%)
+2019-01-31 11:30:02 1548934202.320429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1858393 total-bytes-write=52 payload-bytes-read=1858364/5242880 (35.45%)
+2019-01-31 11:30:02 1548934202.364411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1861381 total-bytes-write=52 payload-bytes-read=1861352/5242880 (35.50%)
+2019-01-31 11:30:02 1548934202.449431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1868801 total-bytes-write=52 payload-bytes-read=1868772/5242880 (35.64%)
+2019-01-31 11:30:02 1548934202.451469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1872785 total-bytes-write=52 payload-bytes-read=1872756/5242880 (35.72%)
+2019-01-31 11:30:02 1548934202.477066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1880255 total-bytes-write=52 payload-bytes-read=1880226/5242880 (35.86%)
+2019-01-31 11:30:02 1548934202.477164 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1884189 total-bytes-write=52 payload-bytes-read=1884160/5242880 (35.94%)
+2019-01-31 11:30:02 1548934202.484796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1887675 total-bytes-write=52 payload-bytes-read=1887646/5242880 (36.00%)
+2019-01-31 11:30:02 1548934202.493574 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1888173 total-bytes-write=52 payload-bytes-read=1888144/5242880 (36.01%)
+2019-01-31 11:30:02 1548934202.495247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1895643 total-bytes-write=52 payload-bytes-read=1895614/5242880 (36.16%)
+2019-01-31 11:30:02 1548934202.495737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1898631 total-bytes-write=52 payload-bytes-read=1898602/5242880 (36.21%)
+2019-01-31 11:30:02 1548934202.505892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1902067 total-bytes-write=52 payload-bytes-read=1902038/5242880 (36.28%)
+2019-01-31 11:30:02 1548934202.506716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1906051 total-bytes-write=52 payload-bytes-read=1906022/5242880 (36.35%)
+2019-01-31 11:30:02 1548934202.508019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1914019 total-bytes-write=52 payload-bytes-read=1913990/5242880 (36.51%)
+2019-01-31 11:30:02 1548934202.514827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1917953 total-bytes-write=52 payload-bytes-read=1917924/5242880 (36.58%)
+2019-01-31 11:30:02 1548934202.516634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1925921 total-bytes-write=52 payload-bytes-read=1925892/5242880 (36.73%)
+2019-01-31 11:30:02 1548934202.516725 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1930403 total-bytes-write=52 payload-bytes-read=1930374/5242880 (36.82%)
+2019-01-31 11:30:02 1548934202.517417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1936329 total-bytes-write=52 payload-bytes-read=1936300/5242880 (36.93%)
+2019-01-31 11:30:02 1548934202.526931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1939815 total-bytes-write=52 payload-bytes-read=1939786/5242880 (37.00%)
+2019-01-31 11:30:02 1548934202.527724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1943799 total-bytes-write=52 payload-bytes-read=1943770/5242880 (37.07%)
+2019-01-31 11:30:02 1548934202.528816 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1947783 total-bytes-write=52 payload-bytes-read=1947754/5242880 (37.15%)
+2019-01-31 11:30:02 1548934202.572395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1954705 total-bytes-write=52 payload-bytes-read=1954676/5242880 (37.28%)
+2019-01-31 11:30:02 1548934202.616446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1997931 total-bytes-write=52 payload-bytes-read=1997902/5242880 (38.11%)
+2019-01-31 11:30:02 1548934202.660378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2007841 total-bytes-write=52 payload-bytes-read=2007812/5242880 (38.30%)
+2019-01-31 11:30:02 1548934202.660854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2011825 total-bytes-write=52 payload-bytes-read=2011796/5242880 (38.37%)
+2019-01-31 11:30:02 1548934202.669120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2015261 total-bytes-write=52 payload-bytes-read=2015232/5242880 (38.44%)
+2019-01-31 11:30:02 1548934202.669551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2017253 total-bytes-write=52 payload-bytes-read=2017224/5242880 (38.48%)
+2019-01-31 11:30:02 1548934202.681701 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2020739 total-bytes-write=52 payload-bytes-read=2020710/5242880 (38.54%)
+2019-01-31 11:30:02 1548934202.690742 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2021237 total-bytes-write=52 payload-bytes-read=2021208/5242880 (38.55%)
+2019-01-31 11:30:02 1548934202.691315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2024723 total-bytes-write=52 payload-bytes-read=2024694/5242880 (38.62%)
+2019-01-31 11:30:02 1548934202.701710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2028209 total-bytes-write=52 payload-bytes-read=2028180/5242880 (38.68%)
+2019-01-31 11:30:02 1548934202.744376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2032143 total-bytes-write=52 payload-bytes-read=2032114/5242880 (38.76%)
+2019-01-31 11:30:02 1548934202.788347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2033139 total-bytes-write=52 payload-bytes-read=2033110/5242880 (38.78%)
+2019-01-31 11:30:02 1548934202.816548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2035131 total-bytes-write=52 payload-bytes-read=2035102/5242880 (38.82%)
+2019-01-31 11:30:02 1548934202.828581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2038617 total-bytes-write=52 payload-bytes-read=2038588/5242880 (38.88%)
+2019-01-31 11:30:02 1548934202.829279 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2042601 total-bytes-write=52 payload-bytes-read=2042572/5242880 (38.96%)
+2019-01-31 11:30:02 1548934202.872407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2055499 total-bytes-write=52 payload-bytes-read=2055470/5242880 (39.20%)
+2019-01-31 11:30:02 1548934202.916402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2073875 total-bytes-write=52 payload-bytes-read=2073846/5242880 (39.56%)
+2019-01-31 11:30:02 1548934202.964374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2080349 total-bytes-write=52 payload-bytes-read=2080320/5242880 (39.68%)
+2019-01-31 11:30:03 1548934203.026905 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2083785 total-bytes-write=52 payload-bytes-read=2083756/5242880 (39.74%)
+2019-01-31 11:30:03 1548934203.053884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2091255 total-bytes-write=52 payload-bytes-read=2091226/5242880 (39.89%)
+2019-01-31 11:30:03 1548934203.055005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2099173 total-bytes-write=52 payload-bytes-read=2099144/5242880 (40.04%)
+2019-01-31 11:30:03 1548934203.088412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2100667 total-bytes-write=52 payload-bytes-read=2100638/5242880 (40.07%)
+2019-01-31 11:30:03 1548934203.092281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2104153 total-bytes-write=52 payload-bytes-read=2104124/5242880 (40.13%)
+2019-01-31 11:30:03 1548934203.146108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2107639 total-bytes-write=52 payload-bytes-read=2107610/5242880 (40.20%)
+2019-01-31 11:30:03 1548934203.188357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2109631 total-bytes-write=52 payload-bytes-read=2109602/5242880 (40.24%)
+2019-01-31 11:30:03 1548934203.215466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2113117 total-bytes-write=52 payload-bytes-read=2113088/5242880 (40.30%)
+2019-01-31 11:30:03 1548934203.256393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2135925 total-bytes-write=52 payload-bytes-read=2135896/5242880 (40.74%)
+2019-01-31 11:30:03 1548934203.297194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2203453 total-bytes-write=52 payload-bytes-read=2203424/5242880 (42.03%)
+2019-01-31 11:30:03 1548934203.301332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2206939 total-bytes-write=52 payload-bytes-read=2206910/5242880 (42.09%)
+2019-01-31 11:30:03 1548934203.302195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2209927 total-bytes-write=52 payload-bytes-read=2209898/5242880 (42.15%)
+2019-01-31 11:30:03 1548934203.313788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2213363 total-bytes-write=52 payload-bytes-read=2213334/5242880 (42.22%)
+2019-01-31 11:30:03 1548934203.323791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2214857 total-bytes-write=52 payload-bytes-read=2214828/5242880 (42.24%)
+2019-01-31 11:30:03 1548934203.325143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2218343 total-bytes-write=52 payload-bytes-read=2218314/5242880 (42.31%)
+2019-01-31 11:30:03 1548934203.325765 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2222327 total-bytes-write=52 payload-bytes-read=2222298/5242880 (42.39%)
+2019-01-31 11:30:03 1548934203.326527 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2225813 total-bytes-write=52 payload-bytes-read=2225784/5242880 (42.45%)
+2019-01-31 11:30:03 1548934203.358815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2233233 total-bytes-write=52 payload-bytes-read=2233204/5242880 (42.59%)
+2019-01-31 11:30:03 1548934203.369615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2233731 total-bytes-write=52 payload-bytes-read=2233702/5242880 (42.60%)
+2019-01-31 11:30:03 1548934203.371137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2237217 total-bytes-write=52 payload-bytes-read=2237188/5242880 (42.67%)
+2019-01-31 11:30:03 1548934203.371547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2244637 total-bytes-write=52 payload-bytes-read=2244608/5242880 (42.81%)
+2019-01-31 11:30:03 1548934203.381464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2246131 total-bytes-write=52 payload-bytes-read=2246102/5242880 (42.84%)
+2019-01-31 11:30:03 1548934203.402444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2249119 total-bytes-write=52 payload-bytes-read=2249090/5242880 (42.90%)
+2019-01-31 11:30:03 1548934203.447375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2255593 total-bytes-write=52 payload-bytes-read=2255564/5242880 (43.02%)
+2019-01-31 11:30:03 1548934203.457072 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2259079 total-bytes-write=52 payload-bytes-read=2259050/5242880 (43.09%)
+2019-01-31 11:30:03 1548934203.457682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2263013 total-bytes-write=52 payload-bytes-read=2262984/5242880 (43.16%)
+2019-01-31 11:30:03 1548934203.471021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2267993 total-bytes-write=52 payload-bytes-read=2267964/5242880 (43.26%)
+2019-01-31 11:30:03 1548934203.513381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2268491 total-bytes-write=52 payload-bytes-read=2268462/5242880 (43.27%)
+2019-01-31 11:30:03 1548934203.513892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2271977 total-bytes-write=52 payload-bytes-read=2271948/5242880 (43.33%)
+2019-01-31 11:30:03 1548934203.559788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2275463 total-bytes-write=52 payload-bytes-read=2275434/5242880 (43.40%)
+2019-01-31 11:30:03 1548934203.600390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:30:03 1548934203.644389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2302255 total-bytes-write=52 payload-bytes-read=2302226/5242880 (43.91%)
+2019-01-31 11:30:03 1548934203.688388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2311667 total-bytes-write=52 payload-bytes-read=2311638/5242880 (44.09%)
+2019-01-31 11:30:03 1548934203.697791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2315153 total-bytes-write=52 payload-bytes-read=2315124/5242880 (44.16%)
+2019-01-31 11:30:03 1548934203.698211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2317145 total-bytes-write=52 payload-bytes-read=2317116/5242880 (44.20%)
+2019-01-31 11:30:03 1548934203.709935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2320631 total-bytes-write=52 payload-bytes-read=2320602/5242880 (44.26%)
+2019-01-31 11:30:03 1548934203.712703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2328549 total-bytes-write=52 payload-bytes-read=2328520/5242880 (44.41%)
+2019-01-31 11:30:03 1548934203.797106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2329545 total-bytes-write=52 payload-bytes-read=2329516/5242880 (44.43%)
+2019-01-31 11:30:03 1548934203.812780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2332533 total-bytes-write=52 payload-bytes-read=2332504/5242880 (44.49%)
+2019-01-31 11:30:03 1548934203.824498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2336019 total-bytes-write=52 payload-bytes-read=2335990/5242880 (44.56%)
+2019-01-31 11:30:03 1548934203.825961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2340003 total-bytes-write=52 payload-bytes-read=2339974/5242880 (44.63%)
+2019-01-31 11:30:03 1548934203.827213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2347921 total-bytes-write=52 payload-bytes-read=2347892/5242880 (44.78%)
+2019-01-31 11:30:03 1548934203.869686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2350411 total-bytes-write=52 payload-bytes-read=2350382/5242880 (44.83%)
+2019-01-31 11:30:03 1548934203.883410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2357881 total-bytes-write=52 payload-bytes-read=2357852/5242880 (44.97%)
+2019-01-31 11:30:03 1548934203.883662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2361815 total-bytes-write=52 payload-bytes-read=2361786/5242880 (45.05%)
+2019-01-31 11:30:03 1548934203.901139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2365301 total-bytes-write=52 payload-bytes-read=2365272/5242880 (45.11%)
+2019-01-31 11:30:03 1548934203.901867 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2369285 total-bytes-write=52 payload-bytes-read=2369256/5242880 (45.19%)
+2019-01-31 11:30:03 1548934203.913092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2372771 total-bytes-write=52 payload-bytes-read=2372742/5242880 (45.26%)
+2019-01-31 11:30:03 1548934203.914083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2376705 total-bytes-write=52 payload-bytes-read=2376676/5242880 (45.33%)
+2019-01-31 11:30:03 1548934203.915139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2384673 total-bytes-write=52 payload-bytes-read=2384644/5242880 (45.48%)
+2019-01-31 11:30:03 1548934203.923139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2388159 total-bytes-write=52 payload-bytes-read=2388130/5242880 (45.55%)
+2019-01-31 11:30:03 1548934203.924083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2392093 total-bytes-write=52 payload-bytes-read=2392064/5242880 (45.62%)
+2019-01-31 11:30:03 1548934203.933366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2392591 total-bytes-write=52 payload-bytes-read=2392562/5242880 (45.63%)
+2019-01-31 11:30:03 1548934203.934377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2396077 total-bytes-write=52 payload-bytes-read=2396048/5242880 (45.70%)
+2019-01-31 11:30:03 1548934203.934718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2400061 total-bytes-write=52 payload-bytes-read=2400032/5242880 (45.78%)
+2019-01-31 11:30:03 1548934203.936687 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2408029 total-bytes-write=52 payload-bytes-read=2408000/5242880 (45.93%)
+2019-01-31 11:30:03 1548934203.947451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2408975 total-bytes-write=52 payload-bytes-read=2408946/5242880 (45.95%)
+2019-01-31 11:30:03 1548934203.947559 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2412461 total-bytes-write=52 payload-bytes-read=2412432/5242880 (46.01%)
+2019-01-31 11:30:03 1548934203.949158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2420429 total-bytes-write=52 payload-bytes-read=2420400/5242880 (46.17%)
+2019-01-31 11:30:03 1548934203.949263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2424413 total-bytes-write=52 payload-bytes-read=2424384/5242880 (46.24%)
+2019-01-31 11:30:03 1548934203.949695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2424861 total-bytes-write=52 payload-bytes-read=2424832/5242880 (46.25%)
+2019-01-31 11:30:03 1548934203.950189 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2428347 total-bytes-write=52 payload-bytes-read=2428318/5242880 (46.32%)
+2019-01-31 11:30:03 1548934203.957814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2428845 total-bytes-write=52 payload-bytes-read=2428816/5242880 (46.33%)
+2019-01-31 11:30:03 1548934203.958484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2432331 total-bytes-write=52 payload-bytes-read=2432302/5242880 (46.39%)
+2019-01-31 11:30:03 1548934203.959225 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2435817 total-bytes-write=52 payload-bytes-read=2435788/5242880 (46.46%)
+2019-01-31 11:30:04 1548934204.000374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2447221 total-bytes-write=52 payload-bytes-read=2447192/5242880 (46.68%)
+2019-01-31 11:30:04 1548934204.044430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2450209 total-bytes-write=52 payload-bytes-read=2450180/5242880 (46.73%)
+2019-01-31 11:30:04 1548934204.048784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2453695 total-bytes-write=52 payload-bytes-read=2453666/5242880 (46.80%)
+2019-01-31 11:30:04 1548934204.067587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2457181 total-bytes-write=52 payload-bytes-read=2457152/5242880 (46.87%)
+2019-01-31 11:30:04 1548934204.108397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2472071 total-bytes-write=52 payload-bytes-read=2472042/5242880 (47.15%)
+2019-01-31 11:30:04 1548934204.152400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2476005 total-bytes-write=52 payload-bytes-read=2475976/5242880 (47.23%)
+2019-01-31 11:30:04 1548934204.158278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2476503 total-bytes-write=52 payload-bytes-read=2476474/5242880 (47.23%)
+2019-01-31 11:30:04 1548934204.158784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2479989 total-bytes-write=52 payload-bytes-read=2479960/5242880 (47.30%)
+2019-01-31 11:30:04 1548934204.227667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2480487 total-bytes-write=52 payload-bytes-read=2480458/5242880 (47.31%)
+2019-01-31 11:30:04 1548934204.228267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2481981 total-bytes-write=52 payload-bytes-read=2481952/5242880 (47.34%)
+2019-01-31 11:30:04 1548934204.248345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:30:04 1548934204.250289 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2493385 total-bytes-write=52 payload-bytes-read=2493356/5242880 (47.56%)
+2019-01-31 11:30:04 1548934204.250419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2496871 total-bytes-write=52 payload-bytes-read=2496842/5242880 (47.62%)
+2019-01-31 11:30:04 1548934204.261046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2504341 total-bytes-write=52 payload-bytes-read=2504312/5242880 (47.77%)
+2019-01-31 11:30:04 1548934204.261957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2510765 total-bytes-write=52 payload-bytes-read=2510736/5242880 (47.89%)
+2019-01-31 11:30:04 1548934204.269405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2514251 total-bytes-write=52 payload-bytes-read=2514222/5242880 (47.95%)
+2019-01-31 11:30:04 1548934204.269978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2517239 total-bytes-write=52 payload-bytes-read=2517210/5242880 (48.01%)
+2019-01-31 11:30:04 1548934204.305856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2520725 total-bytes-write=52 payload-bytes-read=2520696/5242880 (48.08%)
+2019-01-31 11:30:04 1548934204.306390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2524659 total-bytes-write=52 payload-bytes-read=2524630/5242880 (48.15%)
+2019-01-31 11:30:04 1548934204.317083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2525655 total-bytes-write=52 payload-bytes-read=2525626/5242880 (48.17%)
+2019-01-31 11:30:04 1548934204.317625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:30:04 1548934204.371327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2531631 total-bytes-write=52 payload-bytes-read=2531602/5242880 (48.29%)
+2019-01-31 11:30:04 1548934204.513681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2535117 total-bytes-write=52 payload-bytes-read=2535088/5242880 (48.35%)
+2019-01-31 11:30:04 1548934204.523649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2536113 total-bytes-write=52 payload-bytes-read=2536084/5242880 (48.37%)
+2019-01-31 11:30:04 1548934204.523922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2539549 total-bytes-write=52 payload-bytes-read=2539520/5242880 (48.44%)
+2019-01-31 11:30:04 1548934204.525490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2543533 total-bytes-write=52 payload-bytes-read=2543504/5242880 (48.51%)
+2019-01-31 11:30:04 1548934204.526965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2547019 total-bytes-write=52 payload-bytes-read=2546990/5242880 (48.58%)
+2019-01-31 11:30:04 1548934204.527633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2548015 total-bytes-write=52 payload-bytes-read=2547986/5242880 (48.60%)
+2019-01-31 11:30:04 1548934204.528735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2551003 total-bytes-write=52 payload-bytes-read=2550974/5242880 (48.66%)
+2019-01-31 11:30:04 1548934204.533916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2554489 total-bytes-write=52 payload-bytes-read=2554460/5242880 (48.72%)
+2019-01-31 11:30:04 1548934204.536160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2558423 total-bytes-write=52 payload-bytes-read=2558394/5242880 (48.80%)
+2019-01-31 11:30:04 1548934204.537474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2562407 total-bytes-write=52 payload-bytes-read=2562378/5242880 (48.87%)
+2019-01-31 11:30:04 1548934204.538389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2564399 total-bytes-write=52 payload-bytes-read=2564370/5242880 (48.91%)
+2019-01-31 11:30:04 1548934204.546620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2567885 total-bytes-write=52 payload-bytes-read=2567856/5242880 (48.98%)
+2019-01-31 11:30:04 1548934204.548115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2571869 total-bytes-write=52 payload-bytes-read=2571840/5242880 (49.05%)
+2019-01-31 11:30:04 1548934204.549368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2574807 total-bytes-write=52 payload-bytes-read=2574778/5242880 (49.11%)
+2019-01-31 11:30:04 1548934204.562392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2582277 total-bytes-write=52 payload-bytes-read=2582248/5242880 (49.25%)
+2019-01-31 11:30:04 1548934204.563394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2586261 total-bytes-write=52 payload-bytes-read=2586232/5242880 (49.33%)
+2019-01-31 11:30:04 1548934204.564463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2590195 total-bytes-write=52 payload-bytes-read=2590166/5242880 (49.40%)
+2019-01-31 11:30:04 1548934204.565142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2590693 total-bytes-write=52 payload-bytes-read=2590664/5242880 (49.41%)
+2019-01-31 11:30:04 1548934204.566218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2594179 total-bytes-write=52 payload-bytes-read=2594150/5242880 (49.48%)
+2019-01-31 11:30:04 1548934204.567417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2596171 total-bytes-write=52 payload-bytes-read=2596142/5242880 (49.52%)
+2019-01-31 11:30:04 1548934204.571453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2599657 total-bytes-write=52 payload-bytes-read=2599628/5242880 (49.58%)
+2019-01-31 11:30:04 1548934204.572317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2603641 total-bytes-write=52 payload-bytes-read=2603612/5242880 (49.66%)
+2019-01-31 11:30:04 1548934204.574247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2607575 total-bytes-write=52 payload-bytes-read=2607546/5242880 (49.73%)
+2019-01-31 11:30:04 1548934204.574600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2611559 total-bytes-write=52 payload-bytes-read=2611530/5242880 (49.81%)
+2019-01-31 11:30:04 1548934204.574814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2612057 total-bytes-write=52 payload-bytes-read=2612028/5242880 (49.82%)
+2019-01-31 11:30:04 1548934204.575608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2614049 total-bytes-write=52 payload-bytes-read=2614020/5242880 (49.86%)
+2019-01-31 11:30:04 1548934204.582349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2617535 total-bytes-write=52 payload-bytes-read=2617506/5242880 (49.92%)
+2019-01-31 11:30:04 1548934204.583333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2621469 total-bytes-write=52 payload-bytes-read=2621440/5242880 (50.00%)
+2019-01-31 11:30:04 1548934204.587775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2624955 total-bytes-write=52 payload-bytes-read=2624926/5242880 (50.07%)
+2019-01-31 11:30:04 1548934204.665336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2628441 total-bytes-write=52 payload-bytes-read=2628412/5242880 (50.13%)
+2019-01-31 11:30:04 1548934204.708458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2656727 total-bytes-write=52 payload-bytes-read=2656698/5242880 (50.67%)
+2019-01-31 11:30:04 1548934204.752506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2698957 total-bytes-write=52 payload-bytes-read=2698928/5242880 (51.48%)
+2019-01-31 11:30:04 1548934204.796358 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2702443 total-bytes-write=52 payload-bytes-read=2702414/5242880 (51.54%)
+2019-01-31 11:30:04 1548934204.815459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2702941 total-bytes-write=52 payload-bytes-read=2702912/5242880 (51.55%)
+2019-01-31 11:30:04 1548934204.827538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:30:04 1548934204.838740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2708867 total-bytes-write=52 payload-bytes-read=2708838/5242880 (51.67%)
+2019-01-31 11:30:04 1548934204.840965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2716835 total-bytes-write=52 payload-bytes-read=2716806/5242880 (51.82%)
+2019-01-31 11:30:04 1548934204.852093 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2717831 total-bytes-write=52 payload-bytes-read=2717802/5242880 (51.84%)
+2019-01-31 11:30:04 1548934204.852633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2721267 total-bytes-write=52 payload-bytes-read=2721238/5242880 (51.90%)
+2019-01-31 11:30:04 1548934204.862627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2724255 total-bytes-write=52 payload-bytes-read=2724226/5242880 (51.96%)
+2019-01-31 11:30:04 1548934204.933999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2727741 total-bytes-write=52 payload-bytes-read=2727712/5242880 (52.03%)
+2019-01-31 11:30:04 1548934204.979221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2728239 total-bytes-write=52 payload-bytes-read=2728210/5242880 (52.04%)
+2019-01-31 11:30:04 1548934204.979838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2731725 total-bytes-write=52 payload-bytes-read=2731696/5242880 (52.10%)
+2019-01-31 11:30:04 1548934204.980542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2735709 total-bytes-write=52 payload-bytes-read=2735680/5242880 (52.18%)
+2019-01-31 11:30:04 1548934204.981368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2741635 total-bytes-write=52 payload-bytes-read=2741606/5242880 (52.29%)
+2019-01-31 11:30:04 1548934204.987266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2745121 total-bytes-write=52 payload-bytes-read=2745092/5242880 (52.36%)
+2019-01-31 11:30:05 1548934205.050485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2746117 total-bytes-write=52 payload-bytes-read=2746088/5242880 (52.38%)
+2019-01-31 11:30:05 1548934205.050898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2749603 total-bytes-write=52 payload-bytes-read=2749574/5242880 (52.44%)
+2019-01-31 11:30:05 1548934205.066974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2753039 total-bytes-write=52 payload-bytes-read=2753010/5242880 (52.51%)
+2019-01-31 11:30:05 1548934205.076158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2755031 total-bytes-write=52 payload-bytes-read=2755002/5242880 (52.55%)
+2019-01-31 11:30:05 1548934205.086439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2762501 total-bytes-write=52 payload-bytes-read=2762472/5242880 (52.69%)
+2019-01-31 11:30:05 1548934205.087479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2766485 total-bytes-write=52 payload-bytes-read=2766456/5242880 (52.77%)
+2019-01-31 11:30:05 1548934205.088734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2770419 total-bytes-write=52 payload-bytes-read=2770390/5242880 (52.84%)
+2019-01-31 11:30:05 1548934205.098581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2774403 total-bytes-write=52 payload-bytes-read=2774374/5242880 (52.92%)
+2019-01-31 11:30:05 1548934205.152318 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2777889 total-bytes-write=52 payload-bytes-read=2777860/5242880 (52.98%)
+2019-01-31 11:30:05 1548934205.201137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2778387 total-bytes-write=52 payload-bytes-read=2778358/5242880 (52.99%)
+2019-01-31 11:30:05 1548934205.201705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2781873 total-bytes-write=52 payload-bytes-read=2781844/5242880 (53.06%)
+2019-01-31 11:30:05 1548934205.218577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2786803 total-bytes-write=52 payload-bytes-read=2786774/5242880 (53.15%)
+2019-01-31 11:30:05 1548934205.218852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2794273 total-bytes-write=52 payload-bytes-read=2794244/5242880 (53.30%)
+2019-01-31 11:30:05 1548934205.234518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2797759 total-bytes-write=52 payload-bytes-read=2797730/5242880 (53.36%)
+2019-01-31 11:30:05 1548934205.235001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2801693 total-bytes-write=52 payload-bytes-read=2801664/5242880 (53.44%)
+2019-01-31 11:30:05 1548934205.237505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2805677 total-bytes-write=52 payload-bytes-read=2805648/5242880 (53.51%)
+2019-01-31 11:30:05 1548934205.246439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2809163 total-bytes-write=52 payload-bytes-read=2809134/5242880 (53.58%)
+2019-01-31 11:30:05 1548934205.248051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2813147 total-bytes-write=52 payload-bytes-read=2813118/5242880 (53.66%)
+2019-01-31 11:30:05 1548934205.249409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2821065 total-bytes-write=52 payload-bytes-read=2821036/5242880 (53.81%)
+2019-01-31 11:30:05 1548934205.249571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2825049 total-bytes-write=52 payload-bytes-read=2825020/5242880 (53.88%)
+2019-01-31 11:30:05 1548934205.267459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2832519 total-bytes-write=52 payload-bytes-read=2832490/5242880 (54.03%)
+2019-01-31 11:30:05 1548934205.267566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2835457 total-bytes-write=52 payload-bytes-read=2835428/5242880 (54.08%)
+2019-01-31 11:30:05 1548934205.274334 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2838943 total-bytes-write=52 payload-bytes-read=2838914/5242880 (54.15%)
+2019-01-31 11:30:05 1548934205.275070 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2844919 total-bytes-write=52 payload-bytes-read=2844890/5242880 (54.26%)
+2019-01-31 11:30:05 1548934205.280829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2848405 total-bytes-write=52 payload-bytes-read=2848376/5242880 (54.33%)
+2019-01-31 11:30:05 1548934205.326760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2849401 total-bytes-write=52 payload-bytes-read=2849372/5242880 (54.35%)
+2019-01-31 11:30:05 1548934205.327489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2852837 total-bytes-write=52 payload-bytes-read=2852808/5242880 (54.41%)
+2019-01-31 11:30:05 1548934205.352120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2860307 total-bytes-write=52 payload-bytes-read=2860278/5242880 (54.56%)
+2019-01-31 11:30:05 1548934205.352234 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2864291 total-bytes-write=52 payload-bytes-read=2864262/5242880 (54.63%)
+2019-01-31 11:30:05 1548934205.359177 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2865785 total-bytes-write=52 payload-bytes-read=2865756/5242880 (54.66%)
+2019-01-31 11:30:05 1548934205.360462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2869221 total-bytes-write=52 payload-bytes-read=2869192/5242880 (54.73%)
+2019-01-31 11:30:05 1548934205.363743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2877189 total-bytes-write=52 payload-bytes-read=2877160/5242880 (54.88%)
+2019-01-31 11:30:05 1548934205.364045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2881671 total-bytes-write=52 payload-bytes-read=2881642/5242880 (54.96%)
+2019-01-31 11:30:05 1548934205.364169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2885107 total-bytes-write=52 payload-bytes-read=2885078/5242880 (55.03%)
+2019-01-31 11:30:05 1548934205.364922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2893075 total-bytes-write=52 payload-bytes-read=2893046/5242880 (55.18%)
+2019-01-31 11:30:05 1548934205.366056 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2896561 total-bytes-write=52 payload-bytes-read=2896532/5242880 (55.25%)
+2019-01-31 11:30:05 1548934205.433444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2897557 total-bytes-write=52 payload-bytes-read=2897528/5242880 (55.27%)
+2019-01-31 11:30:05 1548934205.434460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2900993 total-bytes-write=52 payload-bytes-read=2900964/5242880 (55.33%)
+2019-01-31 11:30:05 1548934205.435042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2904977 total-bytes-write=52 payload-bytes-read=2904948/5242880 (55.41%)
+2019-01-31 11:30:05 1548934205.435388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2908463 total-bytes-write=52 payload-bytes-read=2908434/5242880 (55.47%)
+2019-01-31 11:30:05 1548934205.448011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2914937 total-bytes-write=52 payload-bytes-read=2914908/5242880 (55.60%)
+2019-01-31 11:30:05 1548934205.456564 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2918373 total-bytes-write=52 payload-bytes-read=2918344/5242880 (55.66%)
+2019-01-31 11:30:05 1548934205.468691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2919867 total-bytes-write=52 payload-bytes-read=2919838/5242880 (55.69%)
+2019-01-31 11:30:05 1548934205.479214 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2923353 total-bytes-write=52 payload-bytes-read=2923324/5242880 (55.76%)
+2019-01-31 11:30:05 1548934205.538895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2926839 total-bytes-write=52 payload-bytes-read=2926810/5242880 (55.82%)
+2019-01-31 11:30:05 1548934205.580381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2938741 total-bytes-write=52 payload-bytes-read=2938712/5242880 (56.05%)
+2019-01-31 11:30:05 1548934205.624376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2951639 total-bytes-write=52 payload-bytes-read=2951610/5242880 (56.30%)
+2019-01-31 11:30:05 1548934205.668382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2968521 total-bytes-write=52 payload-bytes-read=2968492/5242880 (56.62%)
+2019-01-31 11:30:05 1548934205.712387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2975991 total-bytes-write=52 payload-bytes-read=2975962/5242880 (56.76%)
+2019-01-31 11:30:05 1548934205.712588 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2979477 total-bytes-write=52 payload-bytes-read=2979448/5242880 (56.83%)
+2019-01-31 11:30:05 1548934205.713445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2981917 total-bytes-write=52 payload-bytes-read=2981888/5242880 (56.88%)
+2019-01-31 11:30:05 1548934205.723222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2985403 total-bytes-write=52 payload-bytes-read=2985374/5242880 (56.94%)
+2019-01-31 11:30:05 1548934205.727812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2989387 total-bytes-write=52 payload-bytes-read=2989358/5242880 (57.02%)
+2019-01-31 11:30:05 1548934205.757342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2989885 total-bytes-write=52 payload-bytes-read=2989856/5242880 (57.03%)
+2019-01-31 11:30:05 1548934205.759773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2997355 total-bytes-write=52 payload-bytes-read=2997326/5242880 (57.17%)
+2019-01-31 11:30:05 1548934205.821724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2997853 total-bytes-write=52 payload-bytes-read=2997824/5242880 (57.18%)
+2019-01-31 11:30:05 1548934205.822879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3001289 total-bytes-write=52 payload-bytes-read=3001260/5242880 (57.24%)
+2019-01-31 11:30:05 1548934205.824548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3005273 total-bytes-write=52 payload-bytes-read=3005244/5242880 (57.32%)
+2019-01-31 11:30:05 1548934205.825881 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3009257 total-bytes-write=52 payload-bytes-read=3009228/5242880 (57.40%)
+2019-01-31 11:30:05 1548934205.868398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3029127 total-bytes-write=52 payload-bytes-read=3029098/5242880 (57.78%)
+2019-01-31 11:30:05 1548934205.912381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3041029 total-bytes-write=52 payload-bytes-read=3041000/5242880 (58.00%)
+2019-01-31 11:30:05 1548934205.914902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3042523 total-bytes-write=52 payload-bytes-read=3042494/5242880 (58.03%)
+2019-01-31 11:30:05 1548934205.916599 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3046009 total-bytes-write=52 payload-bytes-read=3045980/5242880 (58.10%)
+2019-01-31 11:30:05 1548934205.962385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3049445 total-bytes-write=52 payload-bytes-read=3049416/5242880 (58.16%)
+2019-01-31 11:30:05 1548934205.963535 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3057413 total-bytes-write=52 payload-bytes-read=3057384/5242880 (58.31%)
+2019-01-31 11:30:05 1548934205.963611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3059405 total-bytes-write=52 payload-bytes-read=3059376/5242880 (58.35%)
+2019-01-31 11:30:05 1548934205.971957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3062891 total-bytes-write=52 payload-bytes-read=3062862/5242880 (58.42%)
+2019-01-31 11:30:05 1548934205.972612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3066825 total-bytes-write=52 payload-bytes-read=3066796/5242880 (58.49%)
+2019-01-31 11:30:05 1548934205.993874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3070311 total-bytes-write=52 payload-bytes-read=3070282/5242880 (58.56%)
+2019-01-31 11:30:06 1548934206.039653 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3071805 total-bytes-write=52 payload-bytes-read=3071776/5242880 (58.59%)
+2019-01-31 11:30:06 1548934206.040858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3075291 total-bytes-write=52 payload-bytes-read=3075262/5242880 (58.66%)
+2019-01-31 11:30:06 1548934206.041421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3079275 total-bytes-write=52 payload-bytes-read=3079246/5242880 (58.73%)
+2019-01-31 11:30:06 1548934206.041994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3083209 total-bytes-write=52 payload-bytes-read=3083180/5242880 (58.81%)
+2019-01-31 11:30:06 1548934206.042660 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3087193 total-bytes-write=52 payload-bytes-read=3087164/5242880 (58.88%)
+2019-01-31 11:30:06 1548934206.043034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3087691 total-bytes-write=52 payload-bytes-read=3087662/5242880 (58.89%)
+2019-01-31 11:30:06 1548934206.043737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3091177 total-bytes-write=52 payload-bytes-read=3091148/5242880 (58.96%)
+2019-01-31 11:30:06 1548934206.044332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3095161 total-bytes-write=52 payload-bytes-read=3095132/5242880 (59.03%)
+2019-01-31 11:30:06 1548934206.052411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3095659 total-bytes-write=52 payload-bytes-read=3095630/5242880 (59.04%)
+2019-01-31 11:30:06 1548934206.053565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3099095 total-bytes-write=52 payload-bytes-read=3099066/5242880 (59.11%)
+2019-01-31 11:30:06 1548934206.054509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3107063 total-bytes-write=52 payload-bytes-read=3107034/5242880 (59.26%)
+2019-01-31 11:30:06 1548934206.055999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3111047 total-bytes-write=52 payload-bytes-read=3111018/5242880 (59.34%)
+2019-01-31 11:30:06 1548934206.064012 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3112043 total-bytes-write=52 payload-bytes-read=3112014/5242880 (59.36%)
+2019-01-31 11:30:06 1548934206.064792 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3115479 total-bytes-write=52 payload-bytes-read=3115450/5242880 (59.42%)
+2019-01-31 11:30:06 1548934206.065589 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3119463 total-bytes-write=52 payload-bytes-read=3119434/5242880 (59.50%)
+2019-01-31 11:30:06 1548934206.066233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3123447 total-bytes-write=52 payload-bytes-read=3123418/5242880 (59.57%)
+2019-01-31 11:30:06 1548934206.108405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3146753 total-bytes-write=52 payload-bytes-read=3146724/5242880 (60.02%)
+2019-01-31 11:30:06 1548934206.152371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3150737 total-bytes-write=52 payload-bytes-read=3150708/5242880 (60.09%)
+2019-01-31 11:30:06 1548934206.221023 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3151733 total-bytes-write=52 payload-bytes-read=3151704/5242880 (60.11%)
+2019-01-31 11:30:06 1548934206.238234 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3155717 total-bytes-write=52 payload-bytes-read=3155688/5242880 (60.19%)
+2019-01-31 11:30:06 1548934206.248522 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3159203 total-bytes-write=52 payload-bytes-read=3159174/5242880 (60.26%)
+2019-01-31 11:30:06 1548934206.249897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3167121 total-bytes-write=52 payload-bytes-read=3167092/5242880 (60.41%)
+2019-01-31 11:30:06 1548934206.272581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3171105 total-bytes-write=52 payload-bytes-read=3171076/5242880 (60.48%)
+2019-01-31 11:30:06 1548934206.316199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3173595 total-bytes-write=52 payload-bytes-read=3173566/5242880 (60.53%)
+2019-01-31 11:30:06 1548934206.326629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3177081 total-bytes-write=52 payload-bytes-read=3177052/5242880 (60.60%)
+2019-01-31 11:30:06 1548934206.329262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3184999 total-bytes-write=52 payload-bytes-read=3184970/5242880 (60.75%)
+2019-01-31 11:30:06 1548934206.329345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3188983 total-bytes-write=52 payload-bytes-read=3188954/5242880 (60.82%)
+2019-01-31 11:30:06 1548934206.331010 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3192967 total-bytes-write=52 payload-bytes-read=3192938/5242880 (60.90%)
+2019-01-31 11:30:06 1548934206.372458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3196901 total-bytes-write=52 payload-bytes-read=3196872/5242880 (60.98%)
+2019-01-31 11:30:06 1548934206.372546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3197897 total-bytes-write=52 payload-bytes-read=3197868/5242880 (60.99%)
+2019-01-31 11:30:06 1548934206.374955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3201945 total-bytes-write=52 payload-bytes-read=3201916/5242880 (61.07%)
+2019-01-31 11:30:06 1548934206.416389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3220257 total-bytes-write=52 payload-bytes-read=3220228/5242880 (61.42%)
+2019-01-31 11:30:06 1548934206.460443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3247049 total-bytes-write=52 payload-bytes-read=3247020/5242880 (61.93%)
+2019-01-31 11:30:06 1548934206.510411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3250535 total-bytes-write=52 payload-bytes-read=3250506/5242880 (62.00%)
+2019-01-31 11:30:06 1548934206.533736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3254021 total-bytes-write=52 payload-bytes-read=3253992/5242880 (62.06%)
+2019-01-31 11:30:06 1548934206.576376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3266919 total-bytes-write=52 payload-bytes-read=3266890/5242880 (62.31%)
+2019-01-31 11:30:06 1548934206.620413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3290773 total-bytes-write=52 payload-bytes-read=3290744/5242880 (62.77%)
+2019-01-31 11:30:06 1548934206.664385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3298691 total-bytes-write=52 payload-bytes-read=3298662/5242880 (62.92%)
+2019-01-31 11:30:06 1548934206.670408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3299687 total-bytes-write=52 payload-bytes-read=3299658/5242880 (62.94%)
+2019-01-31 11:30:06 1548934206.671289 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3301181 total-bytes-write=52 payload-bytes-read=3301152/5242880 (62.96%)
+2019-01-31 11:30:06 1548934206.694068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3308651 total-bytes-write=52 payload-bytes-read=3308622/5242880 (63.11%)
+2019-01-31 11:30:06 1548934206.695959 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3316569 total-bytes-write=52 payload-bytes-read=3316540/5242880 (63.26%)
+2019-01-31 11:30:06 1548934206.705113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3317067 total-bytes-write=52 payload-bytes-read=3317038/5242880 (63.27%)
+2019-01-31 11:30:06 1548934206.705902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3320055 total-bytes-write=52 payload-bytes-read=3320026/5242880 (63.32%)
+2019-01-31 11:30:06 1548934206.727106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3323541 total-bytes-write=52 payload-bytes-read=3323512/5242880 (63.39%)
+2019-01-31 11:30:06 1548934206.728902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3331459 total-bytes-write=52 payload-bytes-read=3331430/5242880 (63.54%)
+2019-01-31 11:30:06 1548934206.729692 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3335941 total-bytes-write=52 payload-bytes-read=3335912/5242880 (63.63%)
+2019-01-31 11:30:06 1548934206.729766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3337435 total-bytes-write=52 payload-bytes-read=3337406/5242880 (63.66%)
+2019-01-31 11:30:06 1548934206.738026 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3340921 total-bytes-write=52 payload-bytes-read=3340892/5242880 (63.72%)
+2019-01-31 11:30:06 1548934206.740195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3347345 total-bytes-write=52 payload-bytes-read=3347316/5242880 (63.84%)
+2019-01-31 11:30:06 1548934206.755859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3354815 total-bytes-write=52 payload-bytes-read=3354786/5242880 (63.99%)
+2019-01-31 11:30:06 1548934206.755953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3358749 total-bytes-write=52 payload-bytes-read=3358720/5242880 (64.06%)
+2019-01-31 11:30:06 1548934206.774104 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3359745 total-bytes-write=52 payload-bytes-read=3359716/5242880 (64.08%)
+2019-01-31 11:30:06 1548934206.777170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3363231 total-bytes-write=52 payload-bytes-read=3363202/5242880 (64.15%)
+2019-01-31 11:30:06 1548934206.814497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3367215 total-bytes-write=52 payload-bytes-read=3367186/5242880 (64.22%)
+2019-01-31 11:30:06 1548934206.860196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3367713 total-bytes-write=52 payload-bytes-read=3367684/5242880 (64.23%)
+2019-01-31 11:30:06 1548934206.862031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3375133 total-bytes-write=52 payload-bytes-read=3375104/5242880 (64.38%)
+2019-01-31 11:30:06 1548934206.864095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3379117 total-bytes-write=52 payload-bytes-read=3379088/5242880 (64.45%)
+2019-01-31 11:30:06 1548934206.873553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3386587 total-bytes-write=52 payload-bytes-read=3386558/5242880 (64.59%)
+2019-01-31 11:30:06 1548934206.873653 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3390571 total-bytes-write=52 payload-bytes-read=3390542/5242880 (64.67%)
+2019-01-31 11:30:06 1548934206.876159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3395003 total-bytes-write=52 payload-bytes-read=3394974/5242880 (64.75%)
+2019-01-31 11:30:06 1548934206.876279 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3398489 total-bytes-write=52 payload-bytes-read=3398460/5242880 (64.82%)
+2019-01-31 11:30:06 1548934206.885601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3401975 total-bytes-write=52 payload-bytes-read=3401946/5242880 (64.89%)
+2019-01-31 11:30:06 1548934206.932396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3417861 total-bytes-write=52 payload-bytes-read=3417832/5242880 (65.19%)
+2019-01-31 11:30:06 1548934206.976416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3433747 total-bytes-write=52 payload-bytes-read=3433718/5242880 (65.49%)
+2019-01-31 11:30:07 1548934207.020421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3442661 total-bytes-write=52 payload-bytes-read=3442632/5242880 (65.66%)
+2019-01-31 11:30:07 1548934207.060709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3444155 total-bytes-write=52 payload-bytes-read=3444126/5242880 (65.69%)
+2019-01-31 11:30:07 1548934207.061425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3447641 total-bytes-write=52 payload-bytes-read=3447612/5242880 (65.76%)
+2019-01-31 11:30:07 1548934207.070902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3451127 total-bytes-write=52 payload-bytes-read=3451098/5242880 (65.82%)
+2019-01-31 11:30:07 1548934207.112391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3466017 total-bytes-write=52 payload-bytes-read=3465988/5242880 (66.11%)
+2019-01-31 11:30:07 1548934207.167258 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3467013 total-bytes-write=52 payload-bytes-read=3466984/5242880 (66.13%)
+2019-01-31 11:30:07 1548934207.171861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3468507 total-bytes-write=52 payload-bytes-read=3468478/5242880 (66.16%)
+2019-01-31 11:30:07 1548934207.285065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3471993 total-bytes-write=52 payload-bytes-read=3471964/5242880 (66.22%)
+2019-01-31 11:30:07 1548934207.319436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3475429 total-bytes-write=52 payload-bytes-read=3475400/5242880 (66.29%)
+2019-01-31 11:30:07 1548934207.330305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3478417 total-bytes-write=52 payload-bytes-read=3478388/5242880 (66.34%)
+2019-01-31 11:30:07 1548934207.340091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:30:07 1548934207.340676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3485887 total-bytes-write=52 payload-bytes-read=3485858/5242880 (66.49%)
+2019-01-31 11:30:07 1548934207.352561 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3486385 total-bytes-write=52 payload-bytes-read=3486356/5242880 (66.50%)
+2019-01-31 11:30:07 1548934207.353193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3489821 total-bytes-write=52 payload-bytes-read=3489792/5242880 (66.56%)
+2019-01-31 11:30:07 1548934207.353685 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3490817 total-bytes-write=52 payload-bytes-read=3490788/5242880 (66.58%)
+2019-01-31 11:30:07 1548934207.354263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3494303 total-bytes-write=52 payload-bytes-read=3494274/5242880 (66.65%)
+2019-01-31 11:30:07 1548934207.355261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3497789 total-bytes-write=52 payload-bytes-read=3497760/5242880 (66.71%)
+2019-01-31 11:30:07 1548934207.396411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3518157 total-bytes-write=52 payload-bytes-read=3518128/5242880 (67.10%)
+2019-01-31 11:30:07 1548934207.455008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3519153 total-bytes-write=52 payload-bytes-read=3519124/5242880 (67.12%)
+2019-01-31 11:30:07 1548934207.457360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3526573 total-bytes-write=52 payload-bytes-read=3526544/5242880 (67.26%)
+2019-01-31 11:30:07 1548934207.466627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3528067 total-bytes-write=52 payload-bytes-read=3528038/5242880 (67.29%)
+2019-01-31 11:30:07 1548934207.467570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3535537 total-bytes-write=52 payload-bytes-read=3535508/5242880 (67.43%)
+2019-01-31 11:30:07 1548934207.497033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3542957 total-bytes-write=52 payload-bytes-read=3542928/5242880 (67.58%)
+2019-01-31 11:30:07 1548934207.497220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3550925 total-bytes-write=52 payload-bytes-read=3550896/5242880 (67.73%)
+2019-01-31 11:30:07 1548934207.513693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3551423 total-bytes-write=52 payload-bytes-read=3551394/5242880 (67.74%)
+2019-01-31 11:30:07 1548934207.514852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3554909 total-bytes-write=52 payload-bytes-read=3554880/5242880 (67.80%)
+2019-01-31 11:30:07 1548934207.516515 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3558843 total-bytes-write=52 payload-bytes-read=3558814/5242880 (67.88%)
+2019-01-31 11:30:07 1548934207.518834 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3562827 total-bytes-write=52 payload-bytes-read=3562798/5242880 (67.95%)
+2019-01-31 11:30:07 1548934207.519570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3564819 total-bytes-write=52 payload-bytes-read=3564790/5242880 (67.99%)
+2019-01-31 11:30:07 1548934207.535152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3565815 total-bytes-write=52 payload-bytes-read=3565786/5242880 (68.01%)
+2019-01-31 11:30:07 1548934207.536431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3569301 total-bytes-write=52 payload-bytes-read=3569272/5242880 (68.08%)
+2019-01-31 11:30:07 1548934207.537807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3573235 total-bytes-write=52 payload-bytes-read=3573206/5242880 (68.15%)
+2019-01-31 11:30:07 1548934207.539750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3577219 total-bytes-write=52 payload-bytes-read=3577190/5242880 (68.23%)
+2019-01-31 11:30:07 1548934207.541149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3581203 total-bytes-write=52 payload-bytes-read=3581174/5242880 (68.31%)
+2019-01-31 11:30:07 1548934207.584457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3622387 total-bytes-write=52 payload-bytes-read=3622358/5242880 (69.09%)
+2019-01-31 11:30:07 1548934207.628420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3645245 total-bytes-write=52 payload-bytes-read=3645216/5242880 (69.53%)
+2019-01-31 11:30:07 1548934207.661428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3648731 total-bytes-write=52 payload-bytes-read=3648702/5242880 (69.59%)
+2019-01-31 11:30:07 1548934207.661536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3652217 total-bytes-write=52 payload-bytes-read=3652188/5242880 (69.66%)
+2019-01-31 11:30:07 1548934207.704362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3663123 total-bytes-write=52 payload-bytes-read=3663094/5242880 (69.87%)
+2019-01-31 11:30:07 1548934207.748369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3669597 total-bytes-write=52 payload-bytes-read=3669568/5242880 (69.99%)
+2019-01-31 11:30:07 1548934207.765997 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3673033 total-bytes-write=52 payload-bytes-read=3673004/5242880 (70.06%)
+2019-01-31 11:30:07 1548934207.768050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3681001 total-bytes-write=52 payload-bytes-read=3680972/5242880 (70.21%)
+2019-01-31 11:30:07 1548934207.777670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3684487 total-bytes-write=52 payload-bytes-read=3684458/5242880 (70.28%)
+2019-01-31 11:30:07 1548934207.778514 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3688421 total-bytes-write=52 payload-bytes-read=3688392/5242880 (70.35%)
+2019-01-31 11:30:07 1548934207.779782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3692405 total-bytes-write=52 payload-bytes-read=3692376/5242880 (70.43%)
+2019-01-31 11:30:07 1548934207.808410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3696389 total-bytes-write=52 payload-bytes-read=3696360/5242880 (70.50%)
+2019-01-31 11:30:07 1548934207.852370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3701867 total-bytes-write=52 payload-bytes-read=3701838/5242880 (70.61%)
+2019-01-31 11:30:07 1548934207.896365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3717255 total-bytes-write=52 payload-bytes-read=3717226/5242880 (70.90%)
+2019-01-31 11:30:07 1548934207.940446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3717753 total-bytes-write=52 payload-bytes-read=3717724/5242880 (70.91%)
+2019-01-31 11:30:07 1548934207.978072 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3721189 total-bytes-write=52 payload-bytes-read=3721160/5242880 (70.98%)
+2019-01-31 11:30:08 1548934208.093529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3724675 total-bytes-write=52 payload-bytes-read=3724646/5242880 (71.04%)
+2019-01-31 11:30:08 1548934208.093960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3728659 total-bytes-write=52 payload-bytes-read=3728630/5242880 (71.12%)
+2019-01-31 11:30:08 1548934208.094704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3732643 total-bytes-write=52 payload-bytes-read=3732614/5242880 (71.19%)
+2019-01-31 11:30:08 1548934208.136425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3752463 total-bytes-write=52 payload-bytes-read=3752434/5242880 (71.57%)
+2019-01-31 11:30:08 1548934208.193575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3753459 total-bytes-write=52 payload-bytes-read=3753430/5242880 (71.59%)
+2019-01-31 11:30:08 1548934208.201540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3754953 total-bytes-write=52 payload-bytes-read=3754924/5242880 (71.62%)
+2019-01-31 11:30:08 1548934208.412980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3758439 total-bytes-write=52 payload-bytes-read=3758410/5242880 (71.69%)
+2019-01-31 11:30:08 1548934208.446858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3758937 total-bytes-write=52 payload-bytes-read=3758908/5242880 (71.70%)
+2019-01-31 11:30:08 1548934208.451545 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3762423 total-bytes-write=52 payload-bytes-read=3762394/5242880 (71.76%)
+2019-01-31 11:30:08 1548934208.458286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3765909 total-bytes-write=52 payload-bytes-read=3765880/5242880 (71.83%)
+2019-01-31 11:30:08 1548934208.460111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3769843 total-bytes-write=52 payload-bytes-read=3769814/5242880 (71.90%)
+2019-01-31 11:30:08 1548934208.470586 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3770341 total-bytes-write=52 payload-bytes-read=3770312/5242880 (71.91%)
+2019-01-31 11:30:08 1548934208.471308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3773827 total-bytes-write=52 payload-bytes-read=3773798/5242880 (71.98%)
+2019-01-31 11:30:08 1548934208.493810 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3777313 total-bytes-write=52 payload-bytes-read=3777284/5242880 (72.05%)
+2019-01-31 11:30:08 1548934208.494459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3780301 total-bytes-write=52 payload-bytes-read=3780272/5242880 (72.10%)
+2019-01-31 11:30:08 1548934208.505238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3783787 total-bytes-write=52 payload-bytes-read=3783758/5242880 (72.17%)
+2019-01-31 11:30:08 1548934208.505994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3787721 total-bytes-write=52 payload-bytes-read=3787692/5242880 (72.24%)
+2019-01-31 11:30:08 1548934208.506370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3791207 total-bytes-write=52 payload-bytes-read=3791178/5242880 (72.31%)
+2019-01-31 11:30:08 1548934208.540304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3794693 total-bytes-write=52 payload-bytes-read=3794664/5242880 (72.38%)
+2019-01-31 11:30:08 1548934208.654139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3795689 total-bytes-write=52 payload-bytes-read=3795660/5242880 (72.40%)
+2019-01-31 11:30:08 1548934208.711425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3796187 total-bytes-write=52 payload-bytes-read=3796158/5242880 (72.41%)
+2019-01-31 11:30:08 1548934208.712345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3799673 total-bytes-write=52 payload-bytes-read=3799644/5242880 (72.47%)
+2019-01-31 11:30:08 1548934208.723895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3803109 total-bytes-write=52 payload-bytes-read=3803080/5242880 (72.54%)
+2019-01-31 11:30:08 1548934208.724909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3807093 total-bytes-write=52 payload-bytes-read=3807064/5242880 (72.61%)
+2019-01-31 11:30:08 1548934208.768463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3851265 total-bytes-write=52 payload-bytes-read=3851236/5242880 (73.46%)
+2019-01-31 11:30:08 1548934208.812412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3870139 total-bytes-write=52 payload-bytes-read=3870110/5242880 (73.82%)
+2019-01-31 11:30:08 1548934208.813042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3871633 total-bytes-write=52 payload-bytes-read=3871604/5242880 (73.84%)
+2019-01-31 11:30:08 1548934208.814358 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3874621 total-bytes-write=52 payload-bytes-read=3874592/5242880 (73.90%)
+2019-01-31 11:30:08 1548934208.827502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3878107 total-bytes-write=52 payload-bytes-read=3878078/5242880 (73.97%)
+2019-01-31 11:30:08 1548934208.828218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3882091 total-bytes-write=52 payload-bytes-read=3882062/5242880 (74.04%)
+2019-01-31 11:30:08 1548934208.829337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3890507 total-bytes-write=52 payload-bytes-read=3890478/5242880 (74.20%)
+2019-01-31 11:30:08 1548934208.830871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3897977 total-bytes-write=52 payload-bytes-read=3897948/5242880 (74.35%)
+2019-01-31 11:30:08 1548934208.833045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3905895 total-bytes-write=52 payload-bytes-read=3905866/5242880 (74.50%)
+2019-01-31 11:30:08 1548934208.839223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3906393 total-bytes-write=52 payload-bytes-read=3906364/5242880 (74.51%)
+2019-01-31 11:30:08 1548934208.840096 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3909879 total-bytes-write=52 payload-bytes-read=3909850/5242880 (74.57%)
+2019-01-31 11:30:08 1548934208.840947 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3913863 total-bytes-write=52 payload-bytes-read=3913834/5242880 (74.65%)
+2019-01-31 11:30:08 1548934208.841666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3921781 total-bytes-write=52 payload-bytes-read=3921752/5242880 (74.80%)
+2019-01-31 11:30:08 1548934208.842752 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3925765 total-bytes-write=52 payload-bytes-read=3925736/5242880 (74.88%)
+2019-01-31 11:30:08 1548934208.851110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3929251 total-bytes-write=52 payload-bytes-read=3929222/5242880 (74.94%)
+2019-01-31 11:30:08 1548934208.851786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3931243 total-bytes-write=52 payload-bytes-read=3931214/5242880 (74.98%)
+2019-01-31 11:30:08 1548934208.862470 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3934679 total-bytes-write=52 payload-bytes-read=3934650/5242880 (75.05%)
+2019-01-31 11:30:08 1548934208.863345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3941651 total-bytes-write=52 payload-bytes-read=3941622/5242880 (75.18%)
+2019-01-31 11:30:08 1548934208.872743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3945137 total-bytes-write=52 payload-bytes-read=3945108/5242880 (75.25%)
+2019-01-31 11:30:08 1548934208.873494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3949071 total-bytes-write=52 payload-bytes-read=3949042/5242880 (75.32%)
+2019-01-31 11:30:08 1548934208.893981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3950067 total-bytes-write=52 payload-bytes-read=3950038/5242880 (75.34%)
+2019-01-31 11:30:08 1548934208.896016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3957537 total-bytes-write=52 payload-bytes-read=3957508/5242880 (75.48%)
+2019-01-31 11:30:08 1548934208.896598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3961521 total-bytes-write=52 payload-bytes-read=3961492/5242880 (75.56%)
+2019-01-31 11:30:08 1548934208.898106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3965953 total-bytes-write=52 payload-bytes-read=3965924/5242880 (75.64%)
+2019-01-31 11:30:08 1548934208.898245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3971431 total-bytes-write=52 payload-bytes-read=3971402/5242880 (75.75%)
+2019-01-31 11:30:08 1548934208.907836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3978901 total-bytes-write=52 payload-bytes-read=3978872/5242880 (75.89%)
+2019-01-31 11:30:08 1548934208.908221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3981839 total-bytes-write=52 payload-bytes-read=3981810/5242880 (75.95%)
+2019-01-31 11:30:08 1548934208.930974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3988313 total-bytes-write=52 payload-bytes-read=3988284/5242880 (76.07%)
+2019-01-31 11:30:08 1548934208.954020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3991799 total-bytes-write=52 payload-bytes-read=3991770/5242880 (76.14%)
+2019-01-31 11:30:08 1548934208.981300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3992297 total-bytes-write=52 payload-bytes-read=3992268/5242880 (76.15%)
+2019-01-31 11:30:08 1548934208.997175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3992795 total-bytes-write=52 payload-bytes-read=3992766/5242880 (76.16%)
+2019-01-31 11:30:08 1548934208.998020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3996281 total-bytes-write=52 payload-bytes-read=3996252/5242880 (76.22%)
+2019-01-31 11:30:09 1548934209.053843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3999717 total-bytes-write=52 payload-bytes-read=3999688/5242880 (76.29%)
+2019-01-31 11:30:09 1548934209.054577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4003701 total-bytes-write=52 payload-bytes-read=4003672/5242880 (76.36%)
+2019-01-31 11:30:09 1548934209.055308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4011669 total-bytes-write=52 payload-bytes-read=4011640/5242880 (76.52%)
+2019-01-31 11:30:09 1548934209.055879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4012167 total-bytes-write=52 payload-bytes-read=4012138/5242880 (76.53%)
+2019-01-31 11:30:09 1548934209.056469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4015105 total-bytes-write=52 payload-bytes-read=4015076/5242880 (76.58%)
+2019-01-31 11:30:09 1548934209.138430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4015603 total-bytes-write=52 payload-bytes-read=4015574/5242880 (76.59%)
+2019-01-31 11:30:09 1548934209.142578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4019089 total-bytes-write=52 payload-bytes-read=4019060/5242880 (76.66%)
+2019-01-31 11:30:09 1548934209.165241 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4021081 total-bytes-write=52 payload-bytes-read=4021052/5242880 (76.70%)
+2019-01-31 11:30:09 1548934209.481390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4024567 total-bytes-write=52 payload-bytes-read=4024538/5242880 (76.76%)
+2019-01-31 11:30:09 1548934209.503538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4028053 total-bytes-write=52 payload-bytes-read=4028024/5242880 (76.83%)
+2019-01-31 11:30:09 1548934209.526977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4029049 total-bytes-write=52 payload-bytes-read=4029020/5242880 (76.85%)
+2019-01-31 11:30:09 1548934209.527299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4032485 total-bytes-write=52 payload-bytes-read=4032456/5242880 (76.91%)
+2019-01-31 11:30:09 1548934209.541229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4037963 total-bytes-write=52 payload-bytes-read=4037934/5242880 (77.02%)
+2019-01-31 11:30:09 1548934209.549651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4041449 total-bytes-write=52 payload-bytes-read=4041420/5242880 (77.08%)
+2019-01-31 11:30:09 1548934209.550681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4045433 total-bytes-write=52 payload-bytes-read=4045404/5242880 (77.16%)
+2019-01-31 11:30:09 1548934209.561828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4046877 total-bytes-write=52 payload-bytes-read=4046848/5242880 (77.19%)
+2019-01-31 11:30:09 1548934209.562302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4050363 total-bytes-write=52 payload-bytes-read=4050334/5242880 (77.25%)
+2019-01-31 11:30:09 1548934209.610523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4053849 total-bytes-write=52 payload-bytes-read=4053820/5242880 (77.32%)
+2019-01-31 11:30:09 1548934209.621132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4054347 total-bytes-write=52 payload-bytes-read=4054318/5242880 (77.33%)
+2019-01-31 11:30:09 1548934209.621641 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4057833 total-bytes-write=52 payload-bytes-read=4057804/5242880 (77.40%)
+2019-01-31 11:30:09 1548934209.622120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4061817 total-bytes-write=52 payload-bytes-read=4061788/5242880 (77.47%)
+2019-01-31 11:30:09 1548934209.632601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4065253 total-bytes-write=52 payload-bytes-read=4065224/5242880 (77.54%)
+2019-01-31 11:30:09 1548934209.633790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4069237 total-bytes-write=52 payload-bytes-read=4069208/5242880 (77.61%)
+2019-01-31 11:30:09 1548934209.634523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4073221 total-bytes-write=52 payload-bytes-read=4073192/5242880 (77.69%)
+2019-01-31 11:30:09 1548934209.676432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4101009 total-bytes-write=52 payload-bytes-read=4100980/5242880 (78.22%)
+2019-01-31 11:30:09 1548934209.724394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4114903 total-bytes-write=52 payload-bytes-read=4114874/5242880 (78.48%)
+2019-01-31 11:30:09 1548934209.729571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4118389 total-bytes-write=52 payload-bytes-read=4118360/5242880 (78.55%)
+2019-01-31 11:30:09 1548934209.752299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4118887 total-bytes-write=52 payload-bytes-read=4118858/5242880 (78.56%)
+2019-01-31 11:30:09 1548934209.752839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4122373 total-bytes-write=52 payload-bytes-read=4122344/5242880 (78.63%)
+2019-01-31 11:30:09 1548934209.753295 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4126357 total-bytes-write=52 payload-bytes-read=4126328/5242880 (78.70%)
+2019-01-31 11:30:09 1548934209.764801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4126855 total-bytes-write=52 payload-bytes-read=4126826/5242880 (78.71%)
+2019-01-31 11:30:09 1548934209.765467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4130291 total-bytes-write=52 payload-bytes-read=4130262/5242880 (78.78%)
+2019-01-31 11:30:09 1548934209.767277 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4138259 total-bytes-write=52 payload-bytes-read=4138230/5242880 (78.93%)
+2019-01-31 11:30:09 1548934209.767359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4142243 total-bytes-write=52 payload-bytes-read=4142214/5242880 (79.01%)
+2019-01-31 11:30:09 1548934209.768315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4142741 total-bytes-write=52 payload-bytes-read=4142712/5242880 (79.02%)
+2019-01-31 11:30:09 1548934209.769016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4146177 total-bytes-write=52 payload-bytes-read=4146148/5242880 (79.08%)
+2019-01-31 11:30:09 1548934209.769473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4150161 total-bytes-write=52 payload-bytes-read=4150132/5242880 (79.16%)
+2019-01-31 11:30:09 1548934209.776656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4151157 total-bytes-write=52 payload-bytes-read=4151128/5242880 (79.18%)
+2019-01-31 11:30:09 1548934209.777791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4158627 total-bytes-write=52 payload-bytes-read=4158598/5242880 (79.32%)
+2019-01-31 11:30:09 1548934209.780929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4166545 total-bytes-write=52 payload-bytes-read=4166516/5242880 (79.47%)
+2019-01-31 11:30:09 1548934209.781062 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4170529 total-bytes-write=52 payload-bytes-read=4170500/5242880 (79.55%)
+2019-01-31 11:30:09 1548934209.783715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4174513 total-bytes-write=52 payload-bytes-read=4174484/5242880 (79.62%)
+2019-01-31 11:30:09 1548934209.824376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4182431 total-bytes-write=52 payload-bytes-read=4182402/5242880 (79.77%)
+2019-01-31 11:30:09 1548934209.868413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4213207 total-bytes-write=52 payload-bytes-read=4213178/5242880 (80.36%)
+2019-01-31 11:30:09 1548934209.912393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4231085 total-bytes-write=52 payload-bytes-read=4231056/5242880 (80.70%)
+2019-01-31 11:30:09 1548934209.924821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4234571 total-bytes-write=52 payload-bytes-read=4234542/5242880 (80.77%)
+2019-01-31 11:30:09 1548934209.933040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4235567 total-bytes-write=52 payload-bytes-read=4235538/5242880 (80.79%)
+2019-01-31 11:30:09 1548934209.934460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4239053 total-bytes-write=52 payload-bytes-read=4239024/5242880 (80.85%)
+2019-01-31 11:30:09 1548934209.935191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4243037 total-bytes-write=52 payload-bytes-read=4243008/5242880 (80.93%)
+2019-01-31 11:30:09 1548934209.936140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4251453 total-bytes-write=52 payload-bytes-read=4251424/5242880 (81.09%)
+2019-01-31 11:30:09 1548934209.936814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4258425 total-bytes-write=52 payload-bytes-read=4258396/5242880 (81.22%)
+2019-01-31 11:30:09 1548934209.945171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4261861 total-bytes-write=52 payload-bytes-read=4261832/5242880 (81.29%)
+2019-01-31 11:30:09 1548934209.989067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4263355 total-bytes-write=52 payload-bytes-read=4263326/5242880 (81.32%)
+2019-01-31 11:30:10 1548934210.071453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4266841 total-bytes-write=52 payload-bytes-read=4266812/5242880 (81.38%)
+2019-01-31 11:30:10 1548934210.153667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4267339 total-bytes-write=52 payload-bytes-read=4267310/5242880 (81.39%)
+2019-01-31 11:30:10 1548934210.195732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4269331 total-bytes-write=52 payload-bytes-read=4269302/5242880 (81.43%)
+2019-01-31 11:30:10 1548934210.342496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4272817 total-bytes-write=52 payload-bytes-read=4272788/5242880 (81.50%)
+2019-01-31 11:30:10 1548934210.352274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4276253 total-bytes-write=52 payload-bytes-read=4276224/5242880 (81.56%)
+2019-01-31 11:30:10 1548934210.354049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4284221 total-bytes-write=52 payload-bytes-read=4284192/5242880 (81.71%)
+2019-01-31 11:30:10 1548934210.364482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4285217 total-bytes-write=52 payload-bytes-read=4285188/5242880 (81.73%)
+2019-01-31 11:30:10 1548934210.366293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4288703 total-bytes-write=52 payload-bytes-read=4288674/5242880 (81.80%)
+2019-01-31 11:30:10 1548934210.366958 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4292637 total-bytes-write=52 payload-bytes-read=4292608/5242880 (81.88%)
+2019-01-31 11:30:10 1548934210.368085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4300605 total-bytes-write=52 payload-bytes-read=4300576/5242880 (82.03%)
+2019-01-31 11:30:10 1548934210.376118 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4302099 total-bytes-write=52 payload-bytes-read=4302070/5242880 (82.06%)
+2019-01-31 11:30:10 1548934210.377140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4305585 total-bytes-write=52 payload-bytes-read=4305556/5242880 (82.12%)
+2019-01-31 11:30:10 1548934210.378319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4309519 total-bytes-write=52 payload-bytes-read=4309490/5242880 (82.20%)
+2019-01-31 11:30:10 1548934210.391339 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4310515 total-bytes-write=52 payload-bytes-read=4310486/5242880 (82.22%)
+2019-01-31 11:30:10 1548934210.391826 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4314001 total-bytes-write=52 payload-bytes-read=4313972/5242880 (82.28%)
+2019-01-31 11:30:10 1548934210.402267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4316491 total-bytes-write=52 payload-bytes-read=4316462/5242880 (82.33%)
+2019-01-31 11:30:10 1548934210.481472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4319977 total-bytes-write=52 payload-bytes-read=4319948/5242880 (82.40%)
+2019-01-31 11:30:10 1548934210.481965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4323961 total-bytes-write=52 payload-bytes-read=4323932/5242880 (82.47%)
+2019-01-31 11:30:10 1548934210.482872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4326899 total-bytes-write=52 payload-bytes-read=4326870/5242880 (82.53%)
+2019-01-31 11:30:10 1548934210.492926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4329887 total-bytes-write=52 payload-bytes-read=4329858/5242880 (82.59%)
+2019-01-31 11:30:10 1548934210.504352 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4333373 total-bytes-write=52 payload-bytes-read=4333344/5242880 (82.65%)
+2019-01-31 11:30:10 1548934210.505122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4337357 total-bytes-write=52 payload-bytes-read=4337328/5242880 (82.73%)
+2019-01-31 11:30:10 1548934210.505944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4345275 total-bytes-write=52 payload-bytes-read=4345246/5242880 (82.88%)
+2019-01-31 11:30:10 1548934210.506659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4349259 total-bytes-write=52 payload-bytes-read=4349230/5242880 (82.95%)
+2019-01-31 11:30:10 1548934210.507466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4357227 total-bytes-write=52 payload-bytes-read=4357198/5242880 (83.11%)
+2019-01-31 11:30:10 1548934210.516467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4364647 total-bytes-write=52 payload-bytes-read=4364618/5242880 (83.25%)
+2019-01-31 11:30:10 1548934210.517798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4372615 total-bytes-write=52 payload-bytes-read=4372586/5242880 (83.40%)
+2019-01-31 11:30:10 1548934210.527805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4374109 total-bytes-write=52 payload-bytes-read=4374080/5242880 (83.43%)
+2019-01-31 11:30:10 1548934210.530240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4381529 total-bytes-write=52 payload-bytes-read=4381500/5242880 (83.57%)
+2019-01-31 11:30:10 1548934210.530322 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4385513 total-bytes-write=52 payload-bytes-read=4385484/5242880 (83.65%)
+2019-01-31 11:30:10 1548934210.531569 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4389497 total-bytes-write=52 payload-bytes-read=4389468/5242880 (83.72%)
+2019-01-31 11:30:10 1548934210.572381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4398411 total-bytes-write=52 payload-bytes-read=4398382/5242880 (83.89%)
+2019-01-31 11:30:10 1548934210.616484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4457971 total-bytes-write=52 payload-bytes-read=4457942/5242880 (85.03%)
+2019-01-31 11:30:10 1548934210.660402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4475351 total-bytes-write=52 payload-bytes-read=4475322/5242880 (85.36%)
+2019-01-31 11:30:10 1548934210.666394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4475849 total-bytes-write=52 payload-bytes-read=4475820/5242880 (85.37%)
+2019-01-31 11:30:10 1548934210.668536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4479335 total-bytes-write=52 payload-bytes-read=4479306/5242880 (85.44%)
+2019-01-31 11:30:10 1548934210.711281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4483817 total-bytes-write=52 payload-bytes-read=4483788/5242880 (85.52%)
+2019-01-31 11:30:10 1548934210.746539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4487303 total-bytes-write=52 payload-bytes-read=4487274/5242880 (85.59%)
+2019-01-31 11:30:10 1548934210.756263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4490739 total-bytes-write=52 payload-bytes-read=4490710/5242880 (85.65%)
+2019-01-31 11:30:10 1548934210.757274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4494723 total-bytes-write=52 payload-bytes-read=4494694/5242880 (85.73%)
+2019-01-31 11:30:10 1548934210.758471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4498707 total-bytes-write=52 payload-bytes-read=4498678/5242880 (85.81%)
+2019-01-31 11:30:10 1548934210.800378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4510609 total-bytes-write=52 payload-bytes-read=4510580/5242880 (86.03%)
+2019-01-31 11:30:10 1548934210.844371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4512103 total-bytes-write=52 payload-bytes-read=4512074/5242880 (86.06%)
+2019-01-31 11:30:10 1548934210.864184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4515589 total-bytes-write=52 payload-bytes-read=4515560/5242880 (86.13%)
+2019-01-31 11:30:10 1548934210.903720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4517581 total-bytes-write=52 payload-bytes-read=4517552/5242880 (86.17%)
+2019-01-31 11:30:10 1548934210.926603 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4521067 total-bytes-write=52 payload-bytes-read=4521038/5242880 (86.23%)
+2019-01-31 11:30:10 1548934210.937107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4524503 total-bytes-write=52 payload-bytes-read=4524474/5242880 (86.30%)
+2019-01-31 11:30:10 1548934210.938071 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4528487 total-bytes-write=52 payload-bytes-read=4528458/5242880 (86.37%)
+2019-01-31 11:30:10 1548934210.938770 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4531973 total-bytes-write=52 payload-bytes-read=4531944/5242880 (86.44%)
+2019-01-31 11:30:10 1548934210.949213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4535459 total-bytes-write=52 payload-bytes-read=4535430/5242880 (86.51%)
+2019-01-31 11:30:10 1548934210.996384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4540389 total-bytes-write=52 payload-bytes-read=4540360/5242880 (86.60%)
+2019-01-31 11:30:11 1548934211.059165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4543875 total-bytes-write=52 payload-bytes-read=4543846/5242880 (86.67%)
+2019-01-31 11:30:11 1548934211.070979 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4544871 total-bytes-write=52 payload-bytes-read=4544842/5242880 (86.69%)
+2019-01-31 11:30:11 1548934211.072064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4552341 total-bytes-write=52 payload-bytes-read=4552312/5242880 (86.83%)
+2019-01-31 11:30:11 1548934211.093931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4553337 total-bytes-write=52 payload-bytes-read=4553308/5242880 (86.85%)
+2019-01-31 11:30:11 1548934211.094466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4556773 total-bytes-write=52 payload-bytes-read=4556744/5242880 (86.91%)
+2019-01-31 11:30:11 1548934211.095254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4560757 total-bytes-write=52 payload-bytes-read=4560728/5242880 (86.99%)
+2019-01-31 11:30:11 1548934211.147380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4564243 total-bytes-write=52 payload-bytes-read=4564214/5242880 (87.06%)
+2019-01-31 11:30:11 1548934211.181115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4567231 total-bytes-write=52 payload-bytes-read=4567202/5242880 (87.11%)
+2019-01-31 11:30:11 1548934211.387807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4570717 total-bytes-write=52 payload-bytes-read=4570688/5242880 (87.18%)
+2019-01-31 11:30:11 1548934211.391085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4578635 total-bytes-write=52 payload-bytes-read=4578606/5242880 (87.33%)
+2019-01-31 11:30:11 1548934211.391175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4582121 total-bytes-write=52 payload-bytes-read=4582092/5242880 (87.40%)
+2019-01-31 11:30:11 1548934211.425710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4589541 total-bytes-write=52 payload-bytes-read=4589512/5242880 (87.54%)
+2019-01-31 11:30:11 1548934211.425941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4597509 total-bytes-write=52 payload-bytes-read=4597480/5242880 (87.69%)
+2019-01-31 11:30:11 1548934211.426073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4601493 total-bytes-write=52 payload-bytes-read=4601464/5242880 (87.77%)
+2019-01-31 11:30:11 1548934211.426308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4607917 total-bytes-write=52 payload-bytes-read=4607888/5242880 (87.89%)
+2019-01-31 11:30:11 1548934211.432505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4611403 total-bytes-write=52 payload-bytes-read=4611374/5242880 (87.95%)
+2019-01-31 11:30:11 1548934211.433278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4614391 total-bytes-write=52 payload-bytes-read=4614362/5242880 (88.01%)
+2019-01-31 11:30:11 1548934211.444300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4617877 total-bytes-write=52 payload-bytes-read=4617848/5242880 (88.08%)
+2019-01-31 11:30:11 1548934211.454237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4618375 total-bytes-write=52 payload-bytes-read=4618346/5242880 (88.09%)
+2019-01-31 11:30:11 1548934211.454734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4621811 total-bytes-write=52 payload-bytes-read=4621782/5242880 (88.15%)
+2019-01-31 11:30:11 1548934211.455806 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4625795 total-bytes-write=52 payload-bytes-read=4625766/5242880 (88.23%)
+2019-01-31 11:30:11 1548934211.456392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4629779 total-bytes-write=52 payload-bytes-read=4629750/5242880 (88.31%)
+2019-01-31 11:30:11 1548934211.500421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4658065 total-bytes-write=52 payload-bytes-read=4658036/5242880 (88.84%)
+2019-01-31 11:30:11 1548934211.544401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4669967 total-bytes-write=52 payload-bytes-read=4669938/5242880 (89.07%)
+2019-01-31 11:30:11 1548934211.545052 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4673951 total-bytes-write=52 payload-bytes-read=4673922/5242880 (89.15%)
+2019-01-31 11:30:11 1548934211.546185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4678433 total-bytes-write=52 payload-bytes-read=4678404/5242880 (89.23%)
+2019-01-31 11:30:11 1548934211.546262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4681919 total-bytes-write=52 payload-bytes-read=4681890/5242880 (89.30%)
+2019-01-31 11:30:11 1548934211.546998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4685853 total-bytes-write=52 payload-bytes-read=4685824/5242880 (89.38%)
+2019-01-31 11:30:11 1548934211.557763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4693323 total-bytes-write=52 payload-bytes-read=4693294/5242880 (89.52%)
+2019-01-31 11:30:11 1548934211.565941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4696809 total-bytes-write=52 payload-bytes-read=4696780/5242880 (89.58%)
+2019-01-31 11:30:11 1548934211.566635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4700793 total-bytes-write=52 payload-bytes-read=4700764/5242880 (89.66%)
+2019-01-31 11:30:11 1548934211.567483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4708711 total-bytes-write=52 payload-bytes-read=4708682/5242880 (89.81%)
+2019-01-31 11:30:11 1548934211.577549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4712197 total-bytes-write=52 payload-bytes-read=4712168/5242880 (89.88%)
+2019-01-31 11:30:11 1548934211.581595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4720115 total-bytes-write=52 payload-bytes-read=4720086/5242880 (90.03%)
+2019-01-31 11:30:11 1548934211.581674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4723103 total-bytes-write=52 payload-bytes-read=4723074/5242880 (90.09%)
+2019-01-31 11:30:11 1548934211.592326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4730573 total-bytes-write=52 payload-bytes-read=4730544/5242880 (90.23%)
+2019-01-31 11:30:11 1548934211.592505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4738491 total-bytes-write=52 payload-bytes-read=4738462/5242880 (90.38%)
+2019-01-31 11:30:11 1548934211.593198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4740483 total-bytes-write=52 payload-bytes-read=4740454/5242880 (90.42%)
+2019-01-31 11:30:11 1548934211.600804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4743969 total-bytes-write=52 payload-bytes-read=4743940/5242880 (90.48%)
+2019-01-31 11:30:11 1548934211.611312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4744965 total-bytes-write=52 payload-bytes-read=4744936/5242880 (90.50%)
+2019-01-31 11:30:11 1548934211.612067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4748451 total-bytes-write=52 payload-bytes-read=4748422/5242880 (90.57%)
+2019-01-31 11:30:11 1548934211.612747 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4752385 total-bytes-write=52 payload-bytes-read=4752356/5242880 (90.64%)
+2019-01-31 11:30:11 1548934211.613365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4758859 total-bytes-write=52 payload-bytes-read=4758830/5242880 (90.77%)
+2019-01-31 11:30:11 1548934211.642174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4759357 total-bytes-write=52 payload-bytes-read=4759328/5242880 (90.78%)
+2019-01-31 11:30:11 1548934211.658953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4760353 total-bytes-write=52 payload-bytes-read=4760324/5242880 (90.80%)
+2019-01-31 11:30:11 1548934211.659911 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4763839 total-bytes-write=52 payload-bytes-read=4763810/5242880 (90.86%)
+2019-01-31 11:30:11 1548934211.660811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4771757 total-bytes-write=52 payload-bytes-read=4771728/5242880 (91.01%)
+2019-01-31 11:30:11 1548934211.664430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4773749 total-bytes-write=52 payload-bytes-read=4773720/5242880 (91.05%)
+2019-01-31 11:30:11 1548934211.682884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4774745 total-bytes-write=52 payload-bytes-read=4774716/5242880 (91.07%)
+2019-01-31 11:30:11 1548934211.683615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4778231 total-bytes-write=52 payload-bytes-read=4778202/5242880 (91.14%)
+2019-01-31 11:30:11 1548934211.729405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4781717 total-bytes-write=52 payload-bytes-read=4781688/5242880 (91.20%)
+2019-01-31 11:30:11 1548934211.772370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4785651 total-bytes-write=52 payload-bytes-read=4785622/5242880 (91.28%)
+2019-01-31 11:30:11 1548934211.816397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4801537 total-bytes-write=52 payload-bytes-read=4801508/5242880 (91.58%)
+2019-01-31 11:30:11 1548934211.860376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4809007 total-bytes-write=52 payload-bytes-read=4808978/5242880 (91.72%)
+2019-01-31 11:30:11 1548934211.863682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4809505 total-bytes-write=52 payload-bytes-read=4809476/5242880 (91.73%)
+2019-01-31 11:30:11 1548934211.864744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4815481 total-bytes-write=52 payload-bytes-read=4815452/5242880 (91.85%)
+2019-01-31 11:30:11 1548934211.963720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4818917 total-bytes-write=52 payload-bytes-read=4818888/5242880 (91.91%)
+2019-01-31 11:30:11 1548934211.964232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4822901 total-bytes-write=52 payload-bytes-read=4822872/5242880 (91.99%)
+2019-01-31 11:30:11 1548934211.965416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4826885 total-bytes-write=52 payload-bytes-read=4826856/5242880 (92.06%)
+2019-01-31 11:30:12 1548934212.012374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4836297 total-bytes-write=52 payload-bytes-read=4836268/5242880 (92.24%)
+2019-01-31 11:30:12 1548934212.056426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4839783 total-bytes-write=52 payload-bytes-read=4839754/5242880 (92.31%)
+2019-01-31 11:30:12 1548934212.133674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4847751 total-bytes-write=52 payload-bytes-read=4847722/5242880 (92.46%)
+2019-01-31 11:30:12 1548934212.134849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4851187 total-bytes-write=52 payload-bytes-read=4851158/5242880 (92.53%)
+2019-01-31 11:30:12 1548934212.141285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4851685 total-bytes-write=52 payload-bytes-read=4851656/5242880 (92.54%)
+2019-01-31 11:30:12 1548934212.142433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4855171 total-bytes-write=52 payload-bytes-read=4855142/5242880 (92.60%)
+2019-01-31 11:30:12 1548934212.164767 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4856167 total-bytes-write=52 payload-bytes-read=4856138/5242880 (92.62%)
+2019-01-31 11:30:12 1548934212.165601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4859155 total-bytes-write=52 payload-bytes-read=4859126/5242880 (92.68%)
+2019-01-31 11:30:12 1548934212.338704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4859653 total-bytes-write=52 payload-bytes-read=4859624/5242880 (92.69%)
+2019-01-31 11:30:12 1548934212.398906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4867073 total-bytes-write=52 payload-bytes-read=4867044/5242880 (92.83%)
+2019-01-31 11:30:12 1548934212.399019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4870559 total-bytes-write=52 payload-bytes-read=4870530/5242880 (92.90%)
+2019-01-31 11:30:12 1548934212.405954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4878029 total-bytes-write=52 payload-bytes-read=4878000/5242880 (93.04%)
+2019-01-31 11:30:12 1548934212.406019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4880021 total-bytes-write=52 payload-bytes-read=4879992/5242880 (93.08%)
+2019-01-31 11:30:12 1548934212.425120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4883457 total-bytes-write=52 payload-bytes-read=4883428/5242880 (93.14%)
+2019-01-31 11:30:12 1548934212.429370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4891425 total-bytes-write=52 payload-bytes-read=4891396/5242880 (93.30%)
+2019-01-31 11:30:12 1548934212.429538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4895907 total-bytes-write=52 payload-bytes-read=4895878/5242880 (93.38%)
+2019-01-31 11:30:12 1548934212.429639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4899343 total-bytes-write=52 payload-bytes-read=4899314/5242880 (93.45%)
+2019-01-31 11:30:12 1548934212.434651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4900339 total-bytes-write=52 payload-bytes-read=4900310/5242880 (93.47%)
+2019-01-31 11:30:12 1548934212.435361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4903825 total-bytes-write=52 payload-bytes-read=4903796/5242880 (93.53%)
+2019-01-31 11:30:12 1548934212.436018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4907809 total-bytes-write=52 payload-bytes-read=4907780/5242880 (93.61%)
+2019-01-31 11:30:12 1548934212.445465 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4909303 total-bytes-write=52 payload-bytes-read=4909274/5242880 (93.64%)
+2019-01-31 11:30:12 1548934212.447375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4912789 total-bytes-write=52 payload-bytes-read=4912760/5242880 (93.70%)
+2019-01-31 11:30:12 1548934212.448638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4916723 total-bytes-write=52 payload-bytes-read=4916694/5242880 (93.78%)
+2019-01-31 11:30:12 1548934212.456757 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4917221 total-bytes-write=52 payload-bytes-read=4917192/5242880 (93.79%)
+2019-01-31 11:30:12 1548934212.457375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4920707 total-bytes-write=52 payload-bytes-read=4920678/5242880 (93.85%)
+2019-01-31 11:30:12 1548934212.458238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4924691 total-bytes-write=52 payload-bytes-read=4924662/5242880 (93.93%)
+2019-01-31 11:30:12 1548934212.459403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4928675 total-bytes-write=52 payload-bytes-read=4928646/5242880 (94.01%)
+2019-01-31 11:30:12 1548934212.504398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4945059 total-bytes-write=52 payload-bytes-read=4945030/5242880 (94.32%)
+2019-01-31 11:30:12 1548934212.567008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4945557 total-bytes-write=52 payload-bytes-read=4945528/5242880 (94.33%)
+2019-01-31 11:30:12 1548934212.644434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4948993 total-bytes-write=52 payload-bytes-read=4948964/5242880 (94.39%)
+2019-01-31 11:30:12 1548934212.645537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4956961 total-bytes-write=52 payload-bytes-read=4956932/5242880 (94.55%)
+2019-01-31 11:30:12 1548934212.652818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4961443 total-bytes-write=52 payload-bytes-read=4961414/5242880 (94.63%)
+2019-01-31 11:30:12 1548934212.652981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4964879 total-bytes-write=52 payload-bytes-read=4964850/5242880 (94.70%)
+2019-01-31 11:30:12 1548934212.653595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4972847 total-bytes-write=52 payload-bytes-read=4972818/5242880 (94.85%)
+2019-01-31 11:30:12 1548934212.653671 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4976333 total-bytes-write=52 payload-bytes-read=4976304/5242880 (94.92%)
+2019-01-31 11:30:12 1548934212.655154 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4979819 total-bytes-write=52 payload-bytes-read=4979790/5242880 (94.98%)
+2019-01-31 11:30:12 1548934212.680241 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5050783 total-bytes-write=52 payload-bytes-read=5050754/5242880 (96.34%)
+2019-01-31 11:30:12 1548934212.683351 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5058253 total-bytes-write=52 payload-bytes-read=5058224/5242880 (96.48%)
+2019-01-31 11:30:12 1548934212.689669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5060245 total-bytes-write=52 payload-bytes-read=5060216/5242880 (96.52%)
+2019-01-31 11:30:12 1548934212.755416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5063681 total-bytes-write=52 payload-bytes-read=5063652/5242880 (96.58%)
+2019-01-31 11:30:12 1548934212.765895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5067167 total-bytes-write=52 payload-bytes-read=5067138/5242880 (96.65%)
+2019-01-31 11:30:12 1548934212.766580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5071151 total-bytes-write=52 payload-bytes-read=5071122/5242880 (96.72%)
+2019-01-31 11:30:12 1548934212.767067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5075135 total-bytes-write=52 payload-bytes-read=5075106/5242880 (96.80%)
+2019-01-31 11:30:12 1548934212.815324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5079183 total-bytes-write=52 payload-bytes-read=5079154/5242880 (96.88%)
+2019-01-31 11:30:12 1548934212.856346 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5081559 total-bytes-write=52 payload-bytes-read=5081530/5242880 (96.92%)
+2019-01-31 11:30:12 1548934212.872678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5082555 total-bytes-write=52 payload-bytes-read=5082526/5242880 (96.94%)
+2019-01-31 11:30:12 1548934212.874011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5086041 total-bytes-write=52 payload-bytes-read=5086012/5242880 (97.01%)
+2019-01-31 11:30:12 1548934212.947410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5086539 total-bytes-write=52 payload-bytes-read=5086510/5242880 (97.02%)
+2019-01-31 11:30:12 1548934212.947846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5090025 total-bytes-write=52 payload-bytes-read=5089996/5242880 (97.08%)
+2019-01-31 11:30:12 1548934212.949618 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5094073 total-bytes-write=52 payload-bytes-read=5094044/5242880 (97.16%)
+2019-01-31 11:30:12 1548934212.992384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5107405 total-bytes-write=52 payload-bytes-read=5107376/5242880 (97.42%)
+2019-01-31 11:30:13 1548934213.037546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5107903 total-bytes-write=52 payload-bytes-read=5107874/5242880 (97.42%)
+2019-01-31 11:30:13 1548934213.038663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5111389 total-bytes-write=52 payload-bytes-read=5111360/5242880 (97.49%)
+2019-01-31 11:30:13 1548934213.039304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5114825 total-bytes-write=52 payload-bytes-read=5114796/5242880 (97.56%)
+2019-01-31 11:30:13 1548934213.049772 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5118311 total-bytes-write=52 payload-bytes-read=5118282/5242880 (97.62%)
+2019-01-31 11:30:13 1548934213.050505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5120303 total-bytes-write=52 payload-bytes-read=5120274/5242880 (97.66%)
+2019-01-31 11:30:13 1548934213.062390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5123789 total-bytes-write=52 payload-bytes-read=5123760/5242880 (97.73%)
+2019-01-31 11:30:13 1548934213.063286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5127773 total-bytes-write=52 payload-bytes-read=5127744/5242880 (97.80%)
+2019-01-31 11:30:13 1548934213.063707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5131707 total-bytes-write=52 payload-bytes-read=5131678/5242880 (97.88%)
+2019-01-31 11:30:13 1548934213.189108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5135193 total-bytes-write=52 payload-bytes-read=5135164/5242880 (97.95%)
+2019-01-31 11:30:13 1548934213.210839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5135691 total-bytes-write=52 payload-bytes-read=5135662/5242880 (97.95%)
+2019-01-31 11:30:13 1548934213.211143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5138181 total-bytes-write=52 payload-bytes-read=5138152/5242880 (98.00%)
+2019-01-31 11:30:13 1548934213.307635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5145601 total-bytes-write=52 payload-bytes-read=5145572/5242880 (98.14%)
+2019-01-31 11:30:13 1548934213.307712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5149087 total-bytes-write=52 payload-bytes-read=5149058/5242880 (98.21%)
+2019-01-31 11:30:13 1548934213.312820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5152573 total-bytes-write=52 payload-bytes-read=5152544/5242880 (98.28%)
+2019-01-31 11:30:13 1548934213.356421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5184345 total-bytes-write=52 payload-bytes-read=5184316/5242880 (98.88%)
+2019-01-31 11:30:13 1548934213.404414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5206207 total-bytes-write=52 payload-bytes-read=5206178/5242880 (99.30%)
+2019-01-31 11:30:13 1548934213.421938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5207203 total-bytes-write=52 payload-bytes-read=5207174/5242880 (99.32%)
+2019-01-31 11:30:13 1548934213.422815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5210639 total-bytes-write=52 payload-bytes-read=5210610/5242880 (99.38%)
+2019-01-31 11:30:13 1548934213.423402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5212631 total-bytes-write=52 payload-bytes-read=5212602/5242880 (99.42%)
+2019-01-31 11:30:13 1548934213.433993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5216117 total-bytes-write=52 payload-bytes-read=5216088/5242880 (99.49%)
+2019-01-31 11:30:13 1548934213.444669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5219603 total-bytes-write=52 payload-bytes-read=5219574/5242880 (99.56%)
+2019-01-31 11:30:13 1548934213.488381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5233995 total-bytes-write=52 payload-bytes-read=5233966/5242880 (99.83%)
+2019-01-31 11:30:13 1548934213.532398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5240967 total-bytes-write=52 payload-bytes-read=5240938/5242880 (99.96%)
+2019-01-31 11:30:13 1548934213.535778 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:30:13 1548934213.535851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=CHECKSUM,error=NONE total-bytes-read=5242909 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%)
+2019-01-31 11:30:13 1548934213.639334 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:30:13 1548934213.639401 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=SUCCESS,error=NONE MD5 checksums passed: computed=9ed6b4d59b2775265eda35b58ac62b34 received=9ed6b4d59b2775265eda35b58ac62b34
+2019-01-31 11:30:13 1548934213.639490 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=7 usecs-to-socket-connect=145 usecs-to-proxy-init=221 usecs-to-proxy-choice=274 usecs-to-proxy-request=325 usecs-to-proxy-response=-1 usecs-to-command=4461062 usecs-to-response=5149849 usecs-to-first-byte=5273477 usecs-to-last-byte=22390412 usecs-to-checksum=22493970
+2019-01-31 11:30:13 1548934213.639677 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:30:13 1548934213.639756 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 14
+2019-01-31 11:30:13 1548934213.639866 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:30:13 1548934213.639967 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:30:13 1548934213.640044 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:30:13 1548934213.640136 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:30:16 1548934216.858607 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:30:16 1548934216.858718 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:30:16 1548934216.858785 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36402 through socks proxy localhost:127.0.0.1:29280 to 4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080 successful
+2019-01-31 11:30:16 1548934216.858866 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:30:16 1548934216.858971 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,2,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:30:17 1548934217.264160 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:30:17 1548934217.264223 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:30:17 1548934217.362726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:30:17 1548934217.372590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=9491 total-bytes-write=52 payload-bytes-read=9462/5242880 (0.18%)
+2019-01-31 11:30:17 1548934217.412961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=14471 total-bytes-write=52 payload-bytes-read=14442/5242880 (0.28%)
+2019-01-31 11:30:17 1548934217.413019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=14969 total-bytes-write=52 payload-bytes-read=14940/5242880 (0.28%)
+2019-01-31 11:30:17 1548934217.449461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=18405 total-bytes-write=52 payload-bytes-read=18376/5242880 (0.35%)
+2019-01-31 11:30:17 1548934217.450447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:30:17 1548934217.452966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=26373 total-bytes-write=52 payload-bytes-read=26344/5242880 (0.50%)
+2019-01-31 11:30:17 1548934217.481202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=30855 total-bytes-write=52 payload-bytes-read=30826/5242880 (0.59%)
+2019-01-31 11:30:17 1548934217.490543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=34291 total-bytes-write=52 payload-bytes-read=34262/5242880 (0.65%)
+2019-01-31 11:30:17 1548934217.496883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=38275 total-bytes-write=52 payload-bytes-read=38246/5242880 (0.73%)
+2019-01-31 11:30:17 1548934217.500486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=42259 total-bytes-write=52 payload-bytes-read=42230/5242880 (0.81%)
+2019-01-31 11:30:17 1548934217.500906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=46741 total-bytes-write=52 payload-bytes-read=46712/5242880 (0.89%)
+2019-01-31 11:30:17 1548934217.528808 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=48733 total-bytes-write=52 payload-bytes-read=48704/5242880 (0.93%)
+2019-01-31 11:30:17 1548934217.533170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=55655 total-bytes-write=52 payload-bytes-read=55626/5242880 (1.06%)
+2019-01-31 11:30:17 1548934217.550417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=59703 total-bytes-write=52 payload-bytes-read=59674/5242880 (1.14%)
+2019-01-31 11:30:17 1548934217.592448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=92905 total-bytes-write=52 payload-bytes-read=92876/5242880 (1.77%)
+2019-01-31 11:30:17 1548934217.636426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=118203 total-bytes-write=52 payload-bytes-read=118174/5242880 (2.25%)
+2019-01-31 11:30:17 1548934217.636662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=122187 total-bytes-write=52 payload-bytes-read=122158/5242880 (2.33%)
+2019-01-31 11:30:17 1548934217.637303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=126171 total-bytes-write=52 payload-bytes-read=126142/5242880 (2.41%)
+2019-01-31 11:30:17 1548934217.680416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=156947 total-bytes-write=52 payload-bytes-read=156918/5242880 (2.99%)
+2019-01-31 11:30:17 1548934217.724482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=211079 total-bytes-write=52 payload-bytes-read=211050/5242880 (4.03%)
+2019-01-31 11:30:17 1548934217.768436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=246785 total-bytes-write=52 payload-bytes-read=246756/5242880 (4.71%)
+2019-01-31 11:30:17 1548934217.773336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:30:17 1548934217.946668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:30:17 1548934217.955799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=254753 total-bytes-write=52 payload-bytes-read=254724/5242880 (4.86%)
+2019-01-31 11:30:17 1548934217.958488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=258737 total-bytes-write=52 payload-bytes-read=258708/5242880 (4.93%)
+2019-01-31 11:30:17 1548934217.959724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=266655 total-bytes-write=52 payload-bytes-read=266626/5242880 (5.09%)
+2019-01-31 11:30:17 1548934217.965488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=267153 total-bytes-write=52 payload-bytes-read=267124/5242880 (5.09%)
+2019-01-31 11:30:17 1548934217.966208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:30:17 1548934217.969287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=278557 total-bytes-write=52 payload-bytes-read=278528/5242880 (5.31%)
+2019-01-31 11:30:17 1548934217.969369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=282605 total-bytes-write=52 payload-bytes-read=282576/5242880 (5.39%)
+2019-01-31 11:30:18 1548934218.012391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=288517 total-bytes-write=52 payload-bytes-read=288488/5242880 (5.50%)
+2019-01-31 11:30:18 1548934218.056381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:30:18 1548934218.063859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=292999 total-bytes-write=52 payload-bytes-read=292970/5242880 (5.59%)
+2019-01-31 11:30:18 1548934218.064450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=296435 total-bytes-write=52 payload-bytes-read=296406/5242880 (5.65%)
+2019-01-31 11:30:18 1548934218.065230 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=297431 total-bytes-write=52 payload-bytes-read=297402/5242880 (5.67%)
+2019-01-31 11:30:18 1548934218.066109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=300917 total-bytes-write=52 payload-bytes-read=300888/5242880 (5.74%)
+2019-01-31 11:30:18 1548934218.067231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=308885 total-bytes-write=52 payload-bytes-read=308856/5242880 (5.89%)
+2019-01-31 11:30:18 1548934218.067292 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=311325 total-bytes-write=52 payload-bytes-read=311296/5242880 (5.94%)
+2019-01-31 11:30:18 1548934218.083618 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=312819 total-bytes-write=52 payload-bytes-read=312790/5242880 (5.97%)
+2019-01-31 11:30:18 1548934218.092727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=314811 total-bytes-write=52 payload-bytes-read=314782/5242880 (6.00%)
+2019-01-31 11:30:18 1548934218.159070 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=318297 total-bytes-write=52 payload-bytes-read=318268/5242880 (6.07%)
+2019-01-31 11:30:18 1548934218.169554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=321783 total-bytes-write=52 payload-bytes-read=321754/5242880 (6.14%)
+2019-01-31 11:30:18 1548934218.212402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=333685 total-bytes-write=52 payload-bytes-read=333656/5242880 (6.36%)
+2019-01-31 11:30:18 1548934218.256399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=339163 total-bytes-write=52 payload-bytes-read=339134/5242880 (6.47%)
+2019-01-31 11:30:18 1548934218.274560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=342649 total-bytes-write=52 payload-bytes-read=342620/5242880 (6.53%)
+2019-01-31 11:30:18 1548934218.276298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=346583 total-bytes-write=52 payload-bytes-read=346554/5242880 (6.61%)
+2019-01-31 11:30:18 1548934218.277715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=354551 total-bytes-write=52 payload-bytes-read=354522/5242880 (6.76%)
+2019-01-31 11:30:18 1548934218.277796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=358535 total-bytes-write=52 payload-bytes-read=358506/5242880 (6.84%)
+2019-01-31 11:30:18 1548934218.278581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=362469 total-bytes-write=52 payload-bytes-read=362440/5242880 (6.91%)
+2019-01-31 11:30:18 1548934218.279081 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=370437 total-bytes-write=52 payload-bytes-read=370408/5242880 (7.06%)
+2019-01-31 11:30:18 1548934218.288550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=377857 total-bytes-write=52 payload-bytes-read=377828/5242880 (7.21%)
+2019-01-31 11:30:18 1548934218.288697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=385825 total-bytes-write=52 payload-bytes-read=385796/5242880 (7.36%)
+2019-01-31 11:30:18 1548934218.294238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=386821 total-bytes-write=52 payload-bytes-read=386792/5242880 (7.38%)
+2019-01-31 11:30:18 1548934218.295455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=393245 total-bytes-write=52 payload-bytes-read=393216/5242880 (7.50%)
+2019-01-31 11:30:18 1548934218.312846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=396731 total-bytes-write=52 payload-bytes-read=396702/5242880 (7.57%)
+2019-01-31 11:30:18 1548934218.316032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=397727 total-bytes-write=52 payload-bytes-read=397698/5242880 (7.59%)
+2019-01-31 11:30:18 1548934218.317095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=401213 total-bytes-write=52 payload-bytes-read=401184/5242880 (7.65%)
+2019-01-31 11:30:18 1548934218.331871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=402707 total-bytes-write=52 payload-bytes-read=402678/5242880 (7.68%)
+2019-01-31 11:30:18 1548934218.345147 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=406193 total-bytes-write=52 payload-bytes-read=406164/5242880 (7.75%)
+2019-01-31 11:30:18 1548934218.345720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=410127 total-bytes-write=52 payload-bytes-read=410098/5242880 (7.82%)
+2019-01-31 11:30:18 1548934218.354018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=413613 total-bytes-write=52 payload-bytes-read=413584/5242880 (7.89%)
+2019-01-31 11:30:18 1548934218.367736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=421581 total-bytes-write=52 payload-bytes-read=421552/5242880 (8.04%)
+2019-01-31 11:30:18 1548934218.375533 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=422079 total-bytes-write=52 payload-bytes-read=422050/5242880 (8.05%)
+2019-01-31 11:30:18 1548934218.376680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=425565 total-bytes-write=52 payload-bytes-read=425536/5242880 (8.12%)
+2019-01-31 11:30:18 1548934218.378415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=429499 total-bytes-write=52 payload-bytes-read=429470/5242880 (8.19%)
+2019-01-31 11:30:18 1548934218.380429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=433483 total-bytes-write=52 payload-bytes-read=433454/5242880 (8.27%)
+2019-01-31 11:30:18 1548934218.389862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=440953 total-bytes-write=52 payload-bytes-read=440924/5242880 (8.41%)
+2019-01-31 11:30:18 1548934218.392037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=448871 total-bytes-write=52 payload-bytes-read=448842/5242880 (8.56%)
+2019-01-31 11:30:18 1548934218.392211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=452855 total-bytes-write=52 payload-bytes-read=452826/5242880 (8.64%)
+2019-01-31 11:30:18 1548934218.392271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=456839 total-bytes-write=52 payload-bytes-read=456810/5242880 (8.71%)
+2019-01-31 11:30:18 1548934218.432424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=493541 total-bytes-write=52 payload-bytes-read=493512/5242880 (9.41%)
+2019-01-31 11:30:18 1548934218.476407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=510423 total-bytes-write=52 payload-bytes-read=510394/5242880 (9.73%)
+2019-01-31 11:30:18 1548934218.485137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=513909 total-bytes-write=52 payload-bytes-read=513880/5242880 (9.80%)
+2019-01-31 11:30:18 1548934218.504745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=515403 total-bytes-write=52 payload-bytes-read=515374/5242880 (9.83%)
+2019-01-31 11:30:18 1548934218.540973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=518889 total-bytes-write=52 payload-bytes-read=518860/5242880 (9.90%)
+2019-01-31 11:30:18 1548934218.575077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=526309 total-bytes-write=52 payload-bytes-read=526280/5242880 (10.04%)
+2019-01-31 11:30:18 1548934218.575192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=534277 total-bytes-write=52 payload-bytes-read=534248/5242880 (10.19%)
+2019-01-31 11:30:18 1548934218.575258 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=538261 total-bytes-write=52 payload-bytes-read=538232/5242880 (10.27%)
+2019-01-31 11:30:18 1548934218.582765 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=541697 total-bytes-write=52 payload-bytes-read=541668/5242880 (10.33%)
+2019-01-31 11:30:18 1548934218.590568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=543689 total-bytes-write=52 payload-bytes-read=543660/5242880 (10.37%)
+2019-01-31 11:30:18 1548934218.639230 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=545681 total-bytes-write=52 payload-bytes-read=545652/5242880 (10.41%)
+2019-01-31 11:30:18 1548934218.680365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=553151 total-bytes-write=52 payload-bytes-read=553122/5242880 (10.55%)
+2019-01-31 11:30:18 1548934218.724423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=582931 total-bytes-write=52 payload-bytes-read=582902/5242880 (11.12%)
+2019-01-31 11:30:18 1548934218.772394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=591845 total-bytes-write=52 payload-bytes-read=591816/5242880 (11.29%)
+2019-01-31 11:30:18 1548934218.812962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=592841 total-bytes-write=52 payload-bytes-read=592812/5242880 (11.31%)
+2019-01-31 11:30:18 1548934218.813398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=595331 total-bytes-write=52 payload-bytes-read=595302/5242880 (11.35%)
+2019-01-31 11:30:18 1548934218.853304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=598817 total-bytes-write=52 payload-bytes-read=598788/5242880 (11.42%)
+2019-01-31 11:30:18 1548934218.861613 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=602303 total-bytes-write=52 payload-bytes-read=602274/5242880 (11.49%)
+2019-01-31 11:30:18 1548934218.904442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=634075 total-bytes-write=52 payload-bytes-read=634046/5242880 (12.09%)
+2019-01-31 11:30:19 1548934219.088681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=637561 total-bytes-write=52 payload-bytes-read=637532/5242880 (12.16%)
+2019-01-31 11:30:19 1548934219.106783 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=644981 total-bytes-write=52 payload-bytes-read=644952/5242880 (12.30%)
+2019-01-31 11:30:19 1548934219.155139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=645977 total-bytes-write=52 payload-bytes-read=645948/5242880 (12.32%)
+2019-01-31 11:30:19 1548934219.168743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=648965 total-bytes-write=52 payload-bytes-read=648936/5242880 (12.38%)
+2019-01-31 11:30:19 1548934219.179166 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=652451 total-bytes-write=52 payload-bytes-read=652422/5242880 (12.44%)
+2019-01-31 11:30:19 1548934219.180086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=656385 total-bytes-write=52 payload-bytes-read=656356/5242880 (12.52%)
+2019-01-31 11:30:19 1548934219.180495 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=660369 total-bytes-write=52 payload-bytes-read=660340/5242880 (12.59%)
+2019-01-31 11:30:19 1548934219.187378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=663855 total-bytes-write=52 payload-bytes-read=663826/5242880 (12.66%)
+2019-01-31 11:30:19 1548934219.188289 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=667839 total-bytes-write=52 payload-bytes-read=667810/5242880 (12.74%)
+2019-01-31 11:30:19 1548934219.189150 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=671773 total-bytes-write=52 payload-bytes-read=671744/5242880 (12.81%)
+2019-01-31 11:30:19 1548934219.189767 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=676255 total-bytes-write=52 payload-bytes-read=676226/5242880 (12.90%)
+2019-01-31 11:30:19 1548934219.189821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=677749 total-bytes-write=52 payload-bytes-read=677720/5242880 (12.93%)
+2019-01-31 11:30:19 1548934219.242000 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=678247 total-bytes-write=52 payload-bytes-read=678218/5242880 (12.94%)
+2019-01-31 11:30:19 1548934219.287864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=678745 total-bytes-write=52 payload-bytes-read=678716/5242880 (12.95%)
+2019-01-31 11:30:19 1548934219.294240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=682231 total-bytes-write=52 payload-bytes-read=682202/5242880 (13.01%)
+2019-01-31 11:30:19 1548934219.333518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=683227 total-bytes-write=52 payload-bytes-read=683198/5242880 (13.03%)
+2019-01-31 11:30:19 1548934219.334148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=686215 total-bytes-write=52 payload-bytes-read=686186/5242880 (13.09%)
+2019-01-31 11:30:19 1548934219.353312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=689651 total-bytes-write=52 payload-bytes-read=689622/5242880 (13.15%)
+2019-01-31 11:30:19 1548934219.354278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=693635 total-bytes-write=52 payload-bytes-read=693606/5242880 (13.23%)
+2019-01-31 11:30:19 1548934219.373627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=697121 total-bytes-write=52 payload-bytes-read=697092/5242880 (13.30%)
+2019-01-31 11:30:19 1548934219.374927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=705039 total-bytes-write=52 payload-bytes-read=705010/5242880 (13.45%)
+2019-01-31 11:30:19 1548934219.375664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=709521 total-bytes-write=52 payload-bytes-read=709492/5242880 (13.53%)
+2019-01-31 11:30:19 1548934219.375733 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=711015 total-bytes-write=52 payload-bytes-read=710986/5242880 (13.56%)
+2019-01-31 11:30:19 1548934219.382566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=714501 total-bytes-write=52 payload-bytes-read=714472/5242880 (13.63%)
+2019-01-31 11:30:19 1548934219.383592 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=718485 total-bytes-write=52 payload-bytes-read=718456/5242880 (13.70%)
+2019-01-31 11:30:19 1548934219.386225 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=722419 total-bytes-write=52 payload-bytes-read=722390/5242880 (13.78%)
+2019-01-31 11:30:19 1548934219.393935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=722917 total-bytes-write=52 payload-bytes-read=722888/5242880 (13.79%)
+2019-01-31 11:30:19 1548934219.396208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=726403 total-bytes-write=52 payload-bytes-read=726374/5242880 (13.85%)
+2019-01-31 11:30:19 1548934219.399103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=734371 total-bytes-write=52 payload-bytes-read=734342/5242880 (14.01%)
+2019-01-31 11:30:19 1548934219.399219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=738803 total-bytes-write=52 payload-bytes-read=738774/5242880 (14.09%)
+2019-01-31 11:30:19 1548934219.399297 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=743783 total-bytes-write=52 payload-bytes-read=743754/5242880 (14.19%)
+2019-01-31 11:30:19 1548934219.421938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=744779 total-bytes-write=52 payload-bytes-read=744750/5242880 (14.20%)
+2019-01-31 11:30:19 1548934219.422233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=746771 total-bytes-write=52 payload-bytes-read=746742/5242880 (14.24%)
+2019-01-31 11:30:19 1548934219.452087 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=750257 total-bytes-write=52 payload-bytes-read=750228/5242880 (14.31%)
+2019-01-31 11:30:19 1548934219.453126 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=754191 total-bytes-write=52 payload-bytes-read=754162/5242880 (14.38%)
+2019-01-31 11:30:19 1548934219.461138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=755685 total-bytes-write=52 payload-bytes-read=755656/5242880 (14.41%)
+2019-01-31 11:30:19 1548934219.462084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=759171 total-bytes-write=52 payload-bytes-read=759142/5242880 (14.48%)
+2019-01-31 11:30:19 1548934219.463545 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=767139 total-bytes-write=52 payload-bytes-read=767110/5242880 (14.63%)
+2019-01-31 11:30:19 1548934219.464089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=771073 total-bytes-write=52 payload-bytes-read=771044/5242880 (14.71%)
+2019-01-31 11:30:19 1548934219.471882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=771571 total-bytes-write=52 payload-bytes-read=771542/5242880 (14.72%)
+2019-01-31 11:30:19 1548934219.473345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=775057 total-bytes-write=52 payload-bytes-read=775028/5242880 (14.78%)
+2019-01-31 11:30:19 1548934219.475360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=779041 total-bytes-write=52 payload-bytes-read=779012/5242880 (14.86%)
+2019-01-31 11:30:19 1548934219.479491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=786959 total-bytes-write=52 payload-bytes-read=786930/5242880 (15.01%)
+2019-01-31 11:30:19 1548934219.484020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=790943 total-bytes-write=52 payload-bytes-read=790914/5242880 (15.09%)
+2019-01-31 11:30:19 1548934219.484297 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=798911 total-bytes-write=52 payload-bytes-read=798882/5242880 (15.24%)
+2019-01-31 11:30:19 1548934219.484376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=803343 total-bytes-write=52 payload-bytes-read=803314/5242880 (15.32%)
+2019-01-31 11:30:19 1548934219.484525 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=810813 total-bytes-write=52 payload-bytes-read=810784/5242880 (15.46%)
+2019-01-31 11:30:19 1548934219.490458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=814299 total-bytes-write=52 payload-bytes-read=814270/5242880 (15.53%)
+2019-01-31 11:30:19 1548934219.492026 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=818283 total-bytes-write=52 payload-bytes-read=818254/5242880 (15.61%)
+2019-01-31 11:30:19 1548934219.494179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=822217 total-bytes-write=52 payload-bytes-read=822188/5242880 (15.68%)
+2019-01-31 11:30:19 1548934219.499789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=825703 total-bytes-write=52 payload-bytes-read=825674/5242880 (15.75%)
+2019-01-31 11:30:19 1548934219.500485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=829687 total-bytes-write=52 payload-bytes-read=829658/5242880 (15.82%)
+2019-01-31 11:30:19 1548934219.502026 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=833671 total-bytes-write=52 payload-bytes-read=833642/5242880 (15.90%)
+2019-01-31 11:30:19 1548934219.544433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=858471 total-bytes-write=52 payload-bytes-read=858442/5242880 (16.37%)
+2019-01-31 11:30:19 1548934219.588386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=875353 total-bytes-write=52 payload-bytes-read=875324/5242880 (16.70%)
+2019-01-31 11:30:19 1548934219.588675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=877843 total-bytes-write=52 payload-bytes-read=877814/5242880 (16.74%)
+2019-01-31 11:30:19 1548934219.599547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=881329 total-bytes-write=52 payload-bytes-read=881300/5242880 (16.81%)
+2019-01-31 11:30:19 1548934219.629094 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=882823 total-bytes-write=52 payload-bytes-read=882794/5242880 (16.84%)
+2019-01-31 11:30:19 1548934219.656648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=886259 total-bytes-write=52 payload-bytes-read=886230/5242880 (16.90%)
+2019-01-31 11:30:19 1548934219.666637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=889745 total-bytes-write=52 payload-bytes-read=889716/5242880 (16.97%)
+2019-01-31 11:30:19 1548934219.696744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=891737 total-bytes-write=52 payload-bytes-read=891708/5242880 (17.01%)
+2019-01-31 11:30:19 1548934219.754937 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=893231 total-bytes-write=52 payload-bytes-read=893202/5242880 (17.04%)
+2019-01-31 11:30:19 1548934219.765606 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=896717 total-bytes-write=52 payload-bytes-read=896688/5242880 (17.10%)
+2019-01-31 11:30:19 1548934219.767294 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=904635 total-bytes-write=52 payload-bytes-read=904606/5242880 (17.25%)
+2019-01-31 11:30:19 1548934219.767579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=908619 total-bytes-write=52 payload-bytes-read=908590/5242880 (17.33%)
+2019-01-31 11:30:19 1548934219.776634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=909615 total-bytes-write=52 payload-bytes-read=909586/5242880 (17.35%)
+2019-01-31 11:30:19 1548934219.776706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=913101 total-bytes-write=52 payload-bytes-read=913072/5242880 (17.42%)
+2019-01-31 11:30:19 1548934219.778107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=916089 total-bytes-write=52 payload-bytes-read=916060/5242880 (17.47%)
+2019-01-31 11:30:19 1548934219.795204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=922513 total-bytes-write=52 payload-bytes-read=922484/5242880 (17.59%)
+2019-01-31 11:30:19 1548934219.833379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=925003 total-bytes-write=52 payload-bytes-read=924974/5242880 (17.64%)
+2019-01-31 11:30:19 1548934219.856639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=932473 total-bytes-write=52 payload-bytes-read=932444/5242880 (17.78%)
+2019-01-31 11:30:19 1548934219.856706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=934415 total-bytes-write=52 payload-bytes-read=934386/5242880 (17.82%)
+2019-01-31 11:30:19 1548934219.873455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=936905 total-bytes-write=52 payload-bytes-read=936876/5242880 (17.87%)
+2019-01-31 11:30:19 1548934219.913420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=940391 total-bytes-write=52 payload-bytes-read=940362/5242880 (17.94%)
+2019-01-31 11:30:19 1548934219.959965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=940889 total-bytes-write=52 payload-bytes-read=940860/5242880 (17.95%)
+2019-01-31 11:30:20 1548934220.072173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=942881 total-bytes-write=52 payload-bytes-read=942852/5242880 (17.98%)
+2019-01-31 11:30:20 1548934220.167914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=946367 total-bytes-write=52 payload-bytes-read=946338/5242880 (18.05%)
+2019-01-31 11:30:20 1548934220.169652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=954285 total-bytes-write=52 payload-bytes-read=954256/5242880 (18.20%)
+2019-01-31 11:30:20 1548934220.177703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=955779 total-bytes-write=52 payload-bytes-read=955750/5242880 (18.23%)
+2019-01-31 11:30:20 1548934220.178712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=963249 total-bytes-write=52 payload-bytes-read=963220/5242880 (18.37%)
+2019-01-31 11:30:20 1548934220.197977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=966237 total-bytes-write=52 payload-bytes-read=966208/5242880 (18.43%)
+2019-01-31 11:30:20 1548934220.246359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=969673 total-bytes-write=52 payload-bytes-read=969644/5242880 (18.49%)
+2019-01-31 11:30:20 1548934220.247381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=973657 total-bytes-write=52 payload-bytes-read=973628/5242880 (18.57%)
+2019-01-31 11:30:20 1548934220.293232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=974653 total-bytes-write=52 payload-bytes-read=974624/5242880 (18.59%)
+2019-01-31 11:30:20 1548934220.346296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=978139 total-bytes-write=52 payload-bytes-read=978110/5242880 (18.66%)
+2019-01-31 11:30:20 1548934220.357198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=981625 total-bytes-write=52 payload-bytes-read=981596/5242880 (18.72%)
+2019-01-31 11:30:20 1548934220.400456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1011405 total-bytes-write=52 payload-bytes-read=1011376/5242880 (19.29%)
+2019-01-31 11:30:20 1548934220.444393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1019323 total-bytes-write=52 payload-bytes-read=1019294/5242880 (19.44%)
+2019-01-31 11:30:20 1548934220.464545 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1019821 total-bytes-write=52 payload-bytes-read=1019792/5242880 (19.45%)
+2019-01-31 11:30:20 1548934220.465021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1023307 total-bytes-write=52 payload-bytes-read=1023278/5242880 (19.52%)
+2019-01-31 11:30:20 1548934220.486444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1024303 total-bytes-write=52 payload-bytes-read=1024274/5242880 (19.54%)
+2019-01-31 11:30:20 1548934220.553712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1027789 total-bytes-write=52 payload-bytes-read=1027760/5242880 (19.60%)
+2019-01-31 11:30:20 1548934220.582169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1028287 total-bytes-write=52 payload-bytes-read=1028258/5242880 (19.61%)
+2019-01-31 11:30:20 1548934220.583086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1031773 total-bytes-write=52 payload-bytes-read=1031744/5242880 (19.68%)
+2019-01-31 11:30:20 1548934220.583863 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1035707 total-bytes-write=52 payload-bytes-read=1035678/5242880 (19.75%)
+2019-01-31 11:30:20 1548934220.604393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1039193 total-bytes-write=52 payload-bytes-read=1039164/5242880 (19.82%)
+2019-01-31 11:30:20 1548934220.655842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1039691 total-bytes-write=52 payload-bytes-read=1039662/5242880 (19.83%)
+2019-01-31 11:30:20 1548934220.684074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1047161 total-bytes-write=52 payload-bytes-read=1047132/5242880 (19.97%)
+2019-01-31 11:30:20 1548934220.684954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1051095 total-bytes-write=52 payload-bytes-read=1051066/5242880 (20.05%)
+2019-01-31 11:30:20 1548934220.751709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1054581 total-bytes-write=52 payload-bytes-read=1054552/5242880 (20.11%)
+2019-01-31 11:30:20 1548934220.790961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1055079 total-bytes-write=52 payload-bytes-read=1055050/5242880 (20.12%)
+2019-01-31 11:30:20 1548934220.791425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1058565 total-bytes-write=52 payload-bytes-read=1058536/5242880 (20.19%)
+2019-01-31 11:30:20 1548934220.792397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1062549 total-bytes-write=52 payload-bytes-read=1062520/5242880 (20.27%)
+2019-01-31 11:30:20 1548934220.792980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1066483 total-bytes-write=52 payload-bytes-read=1066454/5242880 (20.34%)
+2019-01-31 11:30:20 1548934220.830966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1069969 total-bytes-write=52 payload-bytes-read=1069940/5242880 (20.41%)
+2019-01-31 11:30:20 1548934220.868591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1070467 total-bytes-write=52 payload-bytes-read=1070438/5242880 (20.42%)
+2019-01-31 11:30:20 1548934220.869776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1073953 total-bytes-write=52 payload-bytes-read=1073924/5242880 (20.48%)
+2019-01-31 11:30:20 1548934220.871186 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1076443 total-bytes-write=52 payload-bytes-read=1076414/5242880 (20.53%)
+2019-01-31 11:30:20 1548934220.946029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1079929 total-bytes-write=52 payload-bytes-read=1079900/5242880 (20.60%)
+2019-01-31 11:30:20 1548934220.975214 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1080925 total-bytes-write=52 payload-bytes-read=1080896/5242880 (20.62%)
+2019-01-31 11:30:20 1548934220.976672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1084361 total-bytes-write=52 payload-bytes-read=1084332/5242880 (20.68%)
+2019-01-31 11:30:20 1548934220.985045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1087847 total-bytes-write=52 payload-bytes-read=1087818/5242880 (20.75%)
+2019-01-31 11:30:21 1548934221.032017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1088345 total-bytes-write=52 payload-bytes-read=1088316/5242880 (20.76%)
+2019-01-31 11:30:21 1548934221.049528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1091831 total-bytes-write=52 payload-bytes-read=1091802/5242880 (20.82%)
+2019-01-31 11:30:21 1548934221.095963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1092827 total-bytes-write=52 payload-bytes-read=1092798/5242880 (20.84%)
+2019-01-31 11:30:21 1548934221.157619 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1096313 total-bytes-write=52 payload-bytes-read=1096284/5242880 (20.91%)
+2019-01-31 11:30:21 1548934221.168383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1103733 total-bytes-write=52 payload-bytes-read=1103704/5242880 (21.05%)
+2019-01-31 11:30:21 1548934221.168841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1107717 total-bytes-write=52 payload-bytes-read=1107688/5242880 (21.13%)
+2019-01-31 11:30:21 1548934221.189086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1111203 total-bytes-write=52 payload-bytes-read=1111174/5242880 (21.19%)
+2019-01-31 11:30:21 1548934221.191300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1119121 total-bytes-write=52 payload-bytes-read=1119092/5242880 (21.34%)
+2019-01-31 11:30:21 1548934221.191426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1123603 total-bytes-write=52 payload-bytes-read=1123574/5242880 (21.43%)
+2019-01-31 11:30:21 1548934221.192567 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1131023 total-bytes-write=52 payload-bytes-read=1130994/5242880 (21.57%)
+2019-01-31 11:30:21 1548934221.192636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1135007 total-bytes-write=52 payload-bytes-read=1134978/5242880 (21.65%)
+2019-01-31 11:30:21 1548934221.193019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1138991 total-bytes-write=52 payload-bytes-read=1138962/5242880 (21.72%)
+2019-01-31 11:30:21 1548934221.236402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1154877 total-bytes-write=52 payload-bytes-read=1154848/5242880 (22.03%)
+2019-01-31 11:30:21 1548934221.284357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1155375 total-bytes-write=52 payload-bytes-read=1155346/5242880 (22.04%)
+2019-01-31 11:30:21 1548934221.286397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1155873 total-bytes-write=52 payload-bytes-read=1155844/5242880 (22.05%)
+2019-01-31 11:30:21 1548934221.344876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1159359 total-bytes-write=52 payload-bytes-read=1159330/5242880 (22.11%)
+2019-01-31 11:30:21 1548934221.345347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1163293 total-bytes-write=52 payload-bytes-read=1163264/5242880 (22.19%)
+2019-01-31 11:30:21 1548934221.354363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1164787 total-bytes-write=52 payload-bytes-read=1164758/5242880 (22.22%)
+2019-01-31 11:30:21 1548934221.355095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1168273 total-bytes-write=52 payload-bytes-read=1168244/5242880 (22.28%)
+2019-01-31 11:30:21 1548934221.359542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1176241 total-bytes-write=52 payload-bytes-read=1176212/5242880 (22.43%)
+2019-01-31 11:30:21 1548934221.359625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1180175 total-bytes-write=52 payload-bytes-read=1180146/5242880 (22.51%)
+2019-01-31 11:30:21 1548934221.363858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1180673 total-bytes-write=52 payload-bytes-read=1180644/5242880 (22.52%)
+2019-01-31 11:30:21 1548934221.365131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1184159 total-bytes-write=52 payload-bytes-read=1184130/5242880 (22.59%)
+2019-01-31 11:30:21 1548934221.365643 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1188143 total-bytes-write=52 payload-bytes-read=1188114/5242880 (22.66%)
+2019-01-31 11:30:21 1548934221.372491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1192127 total-bytes-write=52 payload-bytes-read=1192098/5242880 (22.74%)
+2019-01-31 11:30:21 1548934221.416518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1253679 total-bytes-write=52 payload-bytes-read=1253650/5242880 (23.91%)
+2019-01-31 11:30:21 1548934221.460379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1259157 total-bytes-write=52 payload-bytes-read=1259128/5242880 (24.02%)
+2019-01-31 11:30:21 1548934221.463383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1261149 total-bytes-write=52 payload-bytes-read=1261120/5242880 (24.05%)
+2019-01-31 11:30:21 1548934221.472476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1264585 total-bytes-write=52 payload-bytes-read=1264556/5242880 (24.12%)
+2019-01-31 11:30:21 1548934221.473537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1268569 total-bytes-write=52 payload-bytes-read=1268540/5242880 (24.20%)
+2019-01-31 11:30:21 1548934221.483238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1269067 total-bytes-write=52 payload-bytes-read=1269038/5242880 (24.20%)
+2019-01-31 11:30:21 1548934221.485302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1276537 total-bytes-write=52 payload-bytes-read=1276508/5242880 (24.35%)
+2019-01-31 11:30:21 1548934221.486674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1279973 total-bytes-write=52 payload-bytes-read=1279944/5242880 (24.41%)
+2019-01-31 11:30:21 1548934221.496706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1283459 total-bytes-write=52 payload-bytes-read=1283430/5242880 (24.48%)
+2019-01-31 11:30:21 1548934221.497521 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1291427 total-bytes-write=52 payload-bytes-read=1291398/5242880 (24.63%)
+2019-01-31 11:30:21 1548934221.501439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1292921 total-bytes-write=52 payload-bytes-read=1292892/5242880 (24.66%)
+2019-01-31 11:30:21 1548934221.502966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1300341 total-bytes-write=52 payload-bytes-read=1300312/5242880 (24.80%)
+2019-01-31 11:30:21 1548934221.504225 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1308309 total-bytes-write=52 payload-bytes-read=1308280/5242880 (24.95%)
+2019-01-31 11:30:21 1548934221.504301 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1308807 total-bytes-write=52 payload-bytes-read=1308778/5242880 (24.96%)
+2019-01-31 11:30:21 1548934221.504734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1310749 total-bytes-write=52 payload-bytes-read=1310720/5242880 (25.00%)
+2019-01-31 11:30:21 1548934221.512920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1312741 total-bytes-write=52 payload-bytes-read=1312712/5242880 (25.04%)
+2019-01-31 11:30:21 1548934221.552345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1315231 total-bytes-write=52 payload-bytes-read=1315202/5242880 (25.09%)
+2019-01-31 11:30:21 1548934221.766436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1318717 total-bytes-write=52 payload-bytes-read=1318688/5242880 (25.15%)
+2019-01-31 11:30:21 1548934221.766996 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1322701 total-bytes-write=52 payload-bytes-read=1322672/5242880 (25.23%)
+2019-01-31 11:30:21 1548934221.778187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:30:21 1548934221.778256 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1334105 total-bytes-write=52 payload-bytes-read=1334076/5242880 (25.45%)
+2019-01-31 11:30:21 1548934221.803702 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1341575 total-bytes-write=52 payload-bytes-read=1341546/5242880 (25.59%)
+2019-01-31 11:30:21 1548934221.803814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1345509 total-bytes-write=52 payload-bytes-read=1345480/5242880 (25.66%)
+2019-01-31 11:30:21 1548934221.807597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1349991 total-bytes-write=52 payload-bytes-read=1349962/5242880 (25.75%)
+2019-01-31 11:30:21 1548934221.807799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1357461 total-bytes-write=52 payload-bytes-read=1357432/5242880 (25.89%)
+2019-01-31 11:30:21 1548934221.808080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1369363 total-bytes-write=52 payload-bytes-read=1369334/5242880 (26.12%)
+2019-01-31 11:30:21 1548934221.844812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1369861 total-bytes-write=52 payload-bytes-read=1369832/5242880 (26.13%)
+2019-01-31 11:30:21 1548934221.845838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1373347 total-bytes-write=52 payload-bytes-read=1373318/5242880 (26.19%)
+2019-01-31 11:30:21 1548934221.847920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1377281 total-bytes-write=52 payload-bytes-read=1377252/5242880 (26.27%)
+2019-01-31 11:30:21 1548934221.848771 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1385249 total-bytes-write=52 payload-bytes-read=1385220/5242880 (26.42%)
+2019-01-31 11:30:21 1548934221.848841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1389233 total-bytes-write=52 payload-bytes-read=1389204/5242880 (26.50%)
+2019-01-31 11:30:21 1548934221.855044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1390229 total-bytes-write=52 payload-bytes-read=1390200/5242880 (26.52%)
+2019-01-31 11:30:21 1548934221.856438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1393665 total-bytes-write=52 payload-bytes-read=1393636/5242880 (26.58%)
+2019-01-31 11:30:21 1548934221.857498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1401633 total-bytes-write=52 payload-bytes-read=1401604/5242880 (26.73%)
+2019-01-31 11:30:21 1548934221.857579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1406115 total-bytes-write=52 payload-bytes-read=1406086/5242880 (26.82%)
+2019-01-31 11:30:21 1548934221.892987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1410547 total-bytes-write=52 payload-bytes-read=1410518/5242880 (26.90%)
+2019-01-31 11:30:21 1548934221.904970 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1412041 total-bytes-write=52 payload-bytes-read=1412012/5242880 (26.93%)
+2019-01-31 11:30:22 1548934222.080881 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1415527 total-bytes-write=52 payload-bytes-read=1415498/5242880 (27.00%)
+2019-01-31 11:30:22 1548934222.081380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1419511 total-bytes-write=52 payload-bytes-read=1419482/5242880 (27.07%)
+2019-01-31 11:30:22 1548934222.081919 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1423495 total-bytes-write=52 payload-bytes-read=1423466/5242880 (27.15%)
+2019-01-31 11:30:22 1548934222.128376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1435397 total-bytes-write=52 payload-bytes-read=1435368/5242880 (27.38%)
+2019-01-31 11:30:22 1548934222.172371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1445307 total-bytes-write=52 payload-bytes-read=1445278/5242880 (27.57%)
+2019-01-31 11:30:22 1548934222.188278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1445805 total-bytes-write=52 payload-bytes-read=1445776/5242880 (27.58%)
+2019-01-31 11:30:22 1548934222.189149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1449291 total-bytes-write=52 payload-bytes-read=1449262/5242880 (27.64%)
+2019-01-31 11:30:22 1548934222.189798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1453275 total-bytes-write=52 payload-bytes-read=1453246/5242880 (27.72%)
+2019-01-31 11:30:22 1548934222.190959 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1461193 total-bytes-write=52 payload-bytes-read=1461164/5242880 (27.87%)
+2019-01-31 11:30:22 1548934222.191927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1465177 total-bytes-write=52 payload-bytes-read=1465148/5242880 (27.95%)
+2019-01-31 11:30:22 1548934222.192622 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1470655 total-bytes-write=52 payload-bytes-read=1470626/5242880 (28.05%)
+2019-01-31 11:30:22 1548934222.215683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1471651 total-bytes-write=52 payload-bytes-read=1471622/5242880 (28.07%)
+2019-01-31 11:30:22 1548934222.249776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1475087 total-bytes-write=52 payload-bytes-read=1475058/5242880 (28.13%)
+2019-01-31 11:30:22 1548934222.250904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1483055 total-bytes-write=52 payload-bytes-read=1483026/5242880 (28.29%)
+2019-01-31 11:30:22 1548934222.251700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1487537 total-bytes-write=52 payload-bytes-read=1487508/5242880 (28.37%)
+2019-01-31 11:30:22 1548934222.252914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1494957 total-bytes-write=52 payload-bytes-read=1494928/5242880 (28.51%)
+2019-01-31 11:30:22 1548934222.252988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1496451 total-bytes-write=52 payload-bytes-read=1496422/5242880 (28.54%)
+2019-01-31 11:30:22 1548934222.258971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1499937 total-bytes-write=52 payload-bytes-read=1499908/5242880 (28.61%)
+2019-01-31 11:30:22 1548934222.259868 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1503921 total-bytes-write=52 payload-bytes-read=1503892/5242880 (28.68%)
+2019-01-31 11:30:22 1548934222.260540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1507855 total-bytes-write=52 payload-bytes-read=1507826/5242880 (28.76%)
+2019-01-31 11:30:22 1548934222.261249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1511839 total-bytes-write=52 payload-bytes-read=1511810/5242880 (28.84%)
+2019-01-31 11:30:22 1548934222.262116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1515325 total-bytes-write=52 payload-bytes-read=1515296/5242880 (28.90%)
+2019-01-31 11:30:22 1548934222.268371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1518811 total-bytes-write=52 payload-bytes-read=1518782/5242880 (28.97%)
+2019-01-31 11:30:22 1548934222.312457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1559497 total-bytes-write=52 payload-bytes-read=1559468/5242880 (29.74%)
+2019-01-31 11:30:22 1548934222.457596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1562983 total-bytes-write=52 payload-bytes-read=1562954/5242880 (29.81%)
+2019-01-31 11:30:22 1548934222.475098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1566469 total-bytes-write=52 payload-bytes-read=1566440/5242880 (29.88%)
+2019-01-31 11:30:22 1548934222.516433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1605661 total-bytes-write=52 payload-bytes-read=1605632/5242880 (30.63%)
+2019-01-31 11:30:22 1548934222.564387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1609147 total-bytes-write=52 payload-bytes-read=1609118/5242880 (30.69%)
+2019-01-31 11:30:22 1548934222.572951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1610143 total-bytes-write=52 payload-bytes-read=1610114/5242880 (30.71%)
+2019-01-31 11:30:22 1548934222.655796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1613629 total-bytes-write=52 payload-bytes-read=1613600/5242880 (30.78%)
+2019-01-31 11:30:22 1548934222.657053 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1617613 total-bytes-write=52 payload-bytes-read=1617584/5242880 (30.85%)
+2019-01-31 11:30:22 1548934222.657480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1621597 total-bytes-write=52 payload-bytes-read=1621568/5242880 (30.93%)
+2019-01-31 11:30:22 1548934222.700449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1661785 total-bytes-write=52 payload-bytes-read=1661756/5242880 (31.70%)
+2019-01-31 11:30:22 1548934222.749603 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1669255 total-bytes-write=52 payload-bytes-read=1669226/5242880 (31.84%)
+2019-01-31 11:30:22 1548934222.750790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1669753 total-bytes-write=52 payload-bytes-read=1669724/5242880 (31.85%)
+2019-01-31 11:30:22 1548934222.775861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1673189 total-bytes-write=52 payload-bytes-read=1673160/5242880 (31.91%)
+2019-01-31 11:30:22 1548934222.793194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1680659 total-bytes-write=52 payload-bytes-read=1680630/5242880 (32.06%)
+2019-01-31 11:30:22 1548934222.793304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1688577 total-bytes-write=52 payload-bytes-read=1688548/5242880 (32.21%)
+2019-01-31 11:30:22 1548934222.793380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1692561 total-bytes-write=52 payload-bytes-read=1692532/5242880 (32.28%)
+2019-01-31 11:30:22 1548934222.793490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1700529 total-bytes-write=52 payload-bytes-read=1700500/5242880 (32.43%)
+2019-01-31 11:30:22 1548934222.793559 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1702521 total-bytes-write=52 payload-bytes-read=1702492/5242880 (32.47%)
+2019-01-31 11:30:22 1548934222.795488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1704463 total-bytes-write=52 payload-bytes-read=1704434/5242880 (32.51%)
+2019-01-31 11:30:22 1548934222.855531 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1707949 total-bytes-write=52 payload-bytes-read=1707920/5242880 (32.58%)
+2019-01-31 11:30:22 1548934222.902107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1708945 total-bytes-write=52 payload-bytes-read=1708916/5242880 (32.59%)
+2019-01-31 11:30:22 1548934222.954413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1718905 total-bytes-write=52 payload-bytes-read=1718876/5242880 (32.78%)
+2019-01-31 11:30:22 1548934222.995483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1726325 total-bytes-write=52 payload-bytes-read=1726296/5242880 (32.93%)
+2019-01-31 11:30:22 1548934222.995580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1730309 total-bytes-write=52 payload-bytes-read=1730280/5242880 (33.00%)
+2019-01-31 11:30:22 1548934222.996689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1736285 total-bytes-write=52 payload-bytes-read=1736256/5242880 (33.12%)
+2019-01-31 11:30:23 1548934223.042857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1739721 total-bytes-write=52 payload-bytes-read=1739692/5242880 (33.18%)
+2019-01-31 11:30:23 1548934223.044435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1749681 total-bytes-write=52 payload-bytes-read=1749652/5242880 (33.37%)
+2019-01-31 11:30:23 1548934223.089337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1752669 total-bytes-write=52 payload-bytes-read=1752640/5242880 (33.43%)
+2019-01-31 11:30:23 1548934223.158721 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1756105 total-bytes-write=52 payload-bytes-read=1756076/5242880 (33.49%)
+2019-01-31 11:30:23 1548934223.178793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1759591 total-bytes-write=52 payload-bytes-read=1759562/5242880 (33.56%)
+2019-01-31 11:30:23 1548934223.191599 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1763077 total-bytes-write=52 payload-bytes-read=1763048/5242880 (33.63%)
+2019-01-31 11:30:23 1548934223.232455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1791363 total-bytes-write=52 payload-bytes-read=1791334/5242880 (34.17%)
+2019-01-31 11:30:23 1548934223.276381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1795845 total-bytes-write=52 payload-bytes-read=1795816/5242880 (34.25%)
+2019-01-31 11:30:23 1548934223.285874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1796343 total-bytes-write=52 payload-bytes-read=1796314/5242880 (34.26%)
+2019-01-31 11:30:23 1548934223.306429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1803763 total-bytes-write=52 payload-bytes-read=1803734/5242880 (34.40%)
+2019-01-31 11:30:23 1548934223.306541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1811731 total-bytes-write=52 payload-bytes-read=1811702/5242880 (34.56%)
+2019-01-31 11:30:23 1548934223.306646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1815715 total-bytes-write=52 payload-bytes-read=1815686/5242880 (34.63%)
+2019-01-31 11:30:23 1548934223.325485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1819151 total-bytes-write=52 payload-bytes-read=1819122/5242880 (34.70%)
+2019-01-31 11:30:23 1548934223.358648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1819649 total-bytes-write=52 payload-bytes-read=1819620/5242880 (34.71%)
+2019-01-31 11:30:23 1548934223.366802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1827119 total-bytes-write=52 payload-bytes-read=1827090/5242880 (34.85%)
+2019-01-31 11:30:23 1548934223.366873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1831103 total-bytes-write=52 payload-bytes-read=1831074/5242880 (34.92%)
+2019-01-31 11:30:23 1548934223.370084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1835037 total-bytes-write=52 payload-bytes-read=1835008/5242880 (35.00%)
+2019-01-31 11:30:23 1548934223.370395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1839021 total-bytes-write=52 payload-bytes-read=1838992/5242880 (35.08%)
+2019-01-31 11:30:23 1548934223.370609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1846989 total-bytes-write=52 payload-bytes-read=1846960/5242880 (35.23%)
+2019-01-31 11:30:23 1548934223.370681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1850973 total-bytes-write=52 payload-bytes-read=1850944/5242880 (35.30%)
+2019-01-31 11:30:23 1548934223.376859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1851421 total-bytes-write=52 payload-bytes-read=1851392/5242880 (35.31%)
+2019-01-31 11:30:23 1548934223.383320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1858891 total-bytes-write=52 payload-bytes-read=1858862/5242880 (35.45%)
+2019-01-31 11:30:23 1548934223.393838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1866859 total-bytes-write=52 payload-bytes-read=1866830/5242880 (35.61%)
+2019-01-31 11:30:23 1548934223.393912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1870793 total-bytes-write=52 payload-bytes-read=1870764/5242880 (35.68%)
+2019-01-31 11:30:23 1548934223.394069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1878761 total-bytes-write=52 payload-bytes-read=1878732/5242880 (35.83%)
+2019-01-31 11:30:23 1548934223.394169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1883243 total-bytes-write=52 payload-bytes-read=1883214/5242880 (35.92%)
+2019-01-31 11:30:23 1548934223.394338 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1890663 total-bytes-write=52 payload-bytes-read=1890634/5242880 (36.06%)
+2019-01-31 11:30:23 1548934223.394400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1893651 total-bytes-write=52 payload-bytes-read=1893622/5242880 (36.12%)
+2019-01-31 11:30:23 1548934223.405753 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1897137 total-bytes-write=52 payload-bytes-read=1897108/5242880 (36.18%)
+2019-01-31 11:30:23 1548934223.441034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1897635 total-bytes-write=52 payload-bytes-read=1897606/5242880 (36.19%)
+2019-01-31 11:30:23 1548934223.445856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1900573 total-bytes-write=52 payload-bytes-read=1900544/5242880 (36.25%)
+2019-01-31 11:30:23 1548934223.475444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1904059 total-bytes-write=52 payload-bytes-read=1904030/5242880 (36.32%)
+2019-01-31 11:30:23 1548934223.477491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1912027 total-bytes-write=52 payload-bytes-read=1911998/5242880 (36.47%)
+2019-01-31 11:30:23 1548934223.485193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1915513 total-bytes-write=52 payload-bytes-read=1915484/5242880 (36.53%)
+2019-01-31 11:30:23 1548934223.487616 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1923431 total-bytes-write=52 payload-bytes-read=1923402/5242880 (36.69%)
+2019-01-31 11:30:23 1548934223.487719 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1927913 total-bytes-write=52 payload-bytes-read=1927884/5242880 (36.77%)
+2019-01-31 11:30:23 1548934223.488164 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1931897 total-bytes-write=52 payload-bytes-read=1931868/5242880 (36.85%)
+2019-01-31 11:30:23 1548934223.495192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1935333 total-bytes-write=52 payload-bytes-read=1935304/5242880 (36.91%)
+2019-01-31 11:30:23 1548934223.524196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1936329 total-bytes-write=52 payload-bytes-read=1936300/5242880 (36.93%)
+2019-01-31 11:30:23 1548934223.524904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1939317 total-bytes-write=52 payload-bytes-read=1939288/5242880 (36.99%)
+2019-01-31 11:30:23 1548934223.568085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1942803 total-bytes-write=52 payload-bytes-read=1942774/5242880 (37.06%)
+2019-01-31 11:30:23 1548934223.568743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1946787 total-bytes-write=52 payload-bytes-read=1946758/5242880 (37.13%)
+2019-01-31 11:30:23 1548934223.576387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1950223 total-bytes-write=52 payload-bytes-read=1950194/5242880 (37.20%)
+2019-01-31 11:30:23 1548934223.577693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1958191 total-bytes-write=52 payload-bytes-read=1958162/5242880 (37.35%)
+2019-01-31 11:30:23 1548934223.578609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1962175 total-bytes-write=52 payload-bytes-read=1962146/5242880 (37.42%)
+2019-01-31 11:30:23 1548934223.582348 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1962673 total-bytes-write=52 payload-bytes-read=1962644/5242880 (37.43%)
+2019-01-31 11:30:23 1548934223.586682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1966109 total-bytes-write=52 payload-bytes-read=1966080/5242880 (37.50%)
+2019-01-31 11:30:23 1548934223.588378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1970093 total-bytes-write=52 payload-bytes-read=1970064/5242880 (37.58%)
+2019-01-31 11:30:23 1548934223.589448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1977065 total-bytes-write=52 payload-bytes-read=1977036/5242880 (37.71%)
+2019-01-31 11:30:23 1548934223.616267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1980551 total-bytes-write=52 payload-bytes-read=1980522/5242880 (37.78%)
+2019-01-31 11:30:23 1548934223.630504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1981049 total-bytes-write=52 payload-bytes-read=1981020/5242880 (37.78%)
+2019-01-31 11:30:23 1548934223.655092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1984485 total-bytes-write=52 payload-bytes-read=1984456/5242880 (37.85%)
+2019-01-31 11:30:23 1548934223.656146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1992453 total-bytes-write=52 payload-bytes-read=1992424/5242880 (38.00%)
+2019-01-31 11:30:23 1548934223.657212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1996935 total-bytes-write=52 payload-bytes-read=1996906/5242880 (38.09%)
+2019-01-31 11:30:23 1548934223.657308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1999873 total-bytes-write=52 payload-bytes-read=1999844/5242880 (38.14%)
+2019-01-31 11:30:23 1548934223.675505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2001367 total-bytes-write=52 payload-bytes-read=2001338/5242880 (38.17%)
+2019-01-31 11:30:23 1548934223.693366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2004853 total-bytes-write=52 payload-bytes-read=2004824/5242880 (38.24%)
+2019-01-31 11:30:23 1548934223.753381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2008339 total-bytes-write=52 payload-bytes-read=2008310/5242880 (38.31%)
+2019-01-31 11:30:23 1548934223.796436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2046087 total-bytes-write=52 payload-bytes-read=2046058/5242880 (39.03%)
+2019-01-31 11:30:23 1548934223.840369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2050021 total-bytes-write=52 payload-bytes-read=2049992/5242880 (39.10%)
+2019-01-31 11:30:23 1548934223.863932 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2053507 total-bytes-write=52 payload-bytes-read=2053478/5242880 (39.17%)
+2019-01-31 11:30:23 1548934223.874794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2058487 total-bytes-write=52 payload-bytes-read=2058458/5242880 (39.26%)
+2019-01-31 11:30:23 1548934223.874874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2061973 total-bytes-write=52 payload-bytes-read=2061944/5242880 (39.33%)
+2019-01-31 11:30:23 1548934223.916191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2063467 total-bytes-write=52 payload-bytes-read=2063438/5242880 (39.36%)
+2019-01-31 11:30:24 1548934224.084235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2066903 total-bytes-write=52 payload-bytes-read=2066874/5242880 (39.42%)
+2019-01-31 11:30:24 1548934224.087786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2074871 total-bytes-write=52 payload-bytes-read=2074842/5242880 (39.57%)
+2019-01-31 11:30:24 1548934224.088902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2078855 total-bytes-write=52 payload-bytes-read=2078826/5242880 (39.65%)
+2019-01-31 11:30:24 1548934224.135661 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2079353 total-bytes-write=52 payload-bytes-read=2079324/5242880 (39.66%)
+2019-01-31 11:30:24 1548934224.224570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2080349 total-bytes-write=52 payload-bytes-read=2080320/5242880 (39.68%)
+2019-01-31 11:30:24 1548934224.268890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2083785 total-bytes-write=52 payload-bytes-read=2083756/5242880 (39.74%)
+2019-01-31 11:30:24 1548934224.269253 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2091753 total-bytes-write=52 payload-bytes-read=2091724/5242880 (39.90%)
+2019-01-31 11:30:24 1548934224.278313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2095239 total-bytes-write=52 payload-bytes-read=2095210/5242880 (39.96%)
+2019-01-31 11:30:24 1548934224.317169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2098177 total-bytes-write=52 payload-bytes-read=2098148/5242880 (40.02%)
+2019-01-31 11:30:24 1548934224.408507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2099173 total-bytes-write=52 payload-bytes-read=2099144/5242880 (40.04%)
+2019-01-31 11:30:24 1548934224.454683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2102659 total-bytes-write=52 payload-bytes-read=2102630/5242880 (40.10%)
+2019-01-31 11:30:24 1548934224.467456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2106145 total-bytes-write=52 payload-bytes-read=2106116/5242880 (40.17%)
+2019-01-31 11:30:24 1548934224.508459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2141901 total-bytes-write=52 payload-bytes-read=2141872/5242880 (40.85%)
+2019-01-31 11:30:24 1548934224.552372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2143395 total-bytes-write=52 payload-bytes-read=2143366/5242880 (40.88%)
+2019-01-31 11:30:24 1548934224.555341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2146831 total-bytes-write=52 payload-bytes-read=2146802/5242880 (40.95%)
+2019-01-31 11:30:24 1548934224.557489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2154799 total-bytes-write=52 payload-bytes-read=2154770/5242880 (41.10%)
+2019-01-31 11:30:24 1548934224.557632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2159281 total-bytes-write=52 payload-bytes-read=2159252/5242880 (41.18%)
+2019-01-31 11:30:24 1548934224.557781 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2166701 total-bytes-write=52 payload-bytes-read=2166672/5242880 (41.33%)
+2019-01-31 11:30:24 1548934224.557861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2170685 total-bytes-write=52 payload-bytes-read=2170656/5242880 (41.40%)
+2019-01-31 11:30:24 1548934224.560336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2174669 total-bytes-write=52 payload-bytes-read=2174640/5242880 (41.48%)
+2019-01-31 11:30:24 1548934224.598034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2243193 total-bytes-write=52 payload-bytes-read=2243164/5242880 (42.78%)
+2019-01-31 11:30:24 1548934224.602783 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2246629 total-bytes-write=52 payload-bytes-read=2246600/5242880 (42.85%)
+2019-01-31 11:30:24 1548934224.604303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2254597 total-bytes-write=52 payload-bytes-read=2254568/5242880 (43.00%)
+2019-01-31 11:30:24 1548934224.605068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2259079 total-bytes-write=52 payload-bytes-read=2259050/5242880 (43.09%)
+2019-01-31 11:30:24 1548934224.605807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2262515 total-bytes-write=52 payload-bytes-read=2262486/5242880 (43.15%)
+2019-01-31 11:30:24 1548934224.606659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2266499 total-bytes-write=52 payload-bytes-read=2266470/5242880 (43.23%)
+2019-01-31 11:30:24 1548934224.610793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2266997 total-bytes-write=52 payload-bytes-read=2266968/5242880 (43.24%)
+2019-01-31 11:30:24 1548934224.612005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2270483 total-bytes-write=52 payload-bytes-read=2270454/5242880 (43.31%)
+2019-01-31 11:30:24 1548934224.613296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2278401 total-bytes-write=52 payload-bytes-read=2278372/5242880 (43.46%)
+2019-01-31 11:30:24 1548934224.615522 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2282883 total-bytes-write=52 payload-bytes-read=2282854/5242880 (43.54%)
+2019-01-31 11:30:24 1548934224.615696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2290353 total-bytes-write=52 payload-bytes-read=2290324/5242880 (43.68%)
+2019-01-31 11:30:24 1548934224.615851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2298271 total-bytes-write=52 payload-bytes-read=2298242/5242880 (43.84%)
+2019-01-31 11:30:24 1548934224.623986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2298769 total-bytes-write=52 payload-bytes-read=2298740/5242880 (43.84%)
+2019-01-31 11:30:24 1548934224.625357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2302255 total-bytes-write=52 payload-bytes-read=2302226/5242880 (43.91%)
+2019-01-31 11:30:24 1548934224.626543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2306239 total-bytes-write=52 payload-bytes-read=2306210/5242880 (43.99%)
+2019-01-31 11:30:24 1548934224.677493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2306737 total-bytes-write=52 payload-bytes-read=2306708/5242880 (44.00%)
+2019-01-31 11:30:24 1548934224.702841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2308231 total-bytes-write=52 payload-bytes-read=2308202/5242880 (44.03%)
+2019-01-31 11:30:24 1548934224.760973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2315651 total-bytes-write=52 payload-bytes-read=2315622/5242880 (44.17%)
+2019-01-31 11:30:24 1548934224.763055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2323619 total-bytes-write=52 payload-bytes-read=2323590/5242880 (44.32%)
+2019-01-31 11:30:24 1548934224.769050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2324117 total-bytes-write=52 payload-bytes-read=2324088/5242880 (44.33%)
+2019-01-31 11:30:24 1548934224.771685 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2327553 total-bytes-write=52 payload-bytes-read=2327524/5242880 (44.39%)
+2019-01-31 11:30:24 1548934224.778564 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2329545 total-bytes-write=52 payload-bytes-read=2329516/5242880 (44.43%)
+2019-01-31 11:30:24 1548934224.800404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2333031 total-bytes-write=52 payload-bytes-read=2333002/5242880 (44.50%)
+2019-01-31 11:30:24 1548934224.879156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2336517 total-bytes-write=52 payload-bytes-read=2336488/5242880 (44.56%)
+2019-01-31 11:30:25 1548934225.266323 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2340003 total-bytes-write=52 payload-bytes-read=2339974/5242880 (44.63%)
+2019-01-31 11:30:25 1548934225.277037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2343439 total-bytes-write=52 payload-bytes-read=2343410/5242880 (44.70%)
+2019-01-31 11:30:25 1548934225.277561 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2347423 total-bytes-write=52 payload-bytes-read=2347394/5242880 (44.77%)
+2019-01-31 11:30:25 1548934225.289660 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2354893 total-bytes-write=52 payload-bytes-read=2354864/5242880 (44.92%)
+2019-01-31 11:30:25 1548934225.289897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2362811 total-bytes-write=52 payload-bytes-read=2362782/5242880 (45.07%)
+2019-01-31 11:30:25 1548934225.290585 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2366795 total-bytes-write=52 payload-bytes-read=2366766/5242880 (45.14%)
+2019-01-31 11:30:25 1548934225.291319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2374763 total-bytes-write=52 payload-bytes-read=2374734/5242880 (45.29%)
+2019-01-31 11:30:25 1548934225.292186 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2378697 total-bytes-write=52 payload-bytes-read=2378668/5242880 (45.37%)
+2019-01-31 11:30:25 1548934225.308653 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2381187 total-bytes-write=52 payload-bytes-read=2381158/5242880 (45.42%)
+2019-01-31 11:30:25 1548934225.348631 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2382681 total-bytes-write=52 payload-bytes-read=2382652/5242880 (45.45%)
+2019-01-31 11:30:25 1548934225.355910 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2386167 total-bytes-write=52 payload-bytes-read=2386138/5242880 (45.51%)
+2019-01-31 11:30:25 1548934225.356460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2390151 total-bytes-write=52 payload-bytes-read=2390122/5242880 (45.59%)
+2019-01-31 11:30:25 1548934225.357519 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2396077 total-bytes-write=52 payload-bytes-read=2396048/5242880 (45.70%)
+2019-01-31 11:30:25 1548934225.366042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2399563 total-bytes-write=52 payload-bytes-read=2399534/5242880 (45.77%)
+2019-01-31 11:30:25 1548934225.366913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2403547 total-bytes-write=52 payload-bytes-read=2403518/5242880 (45.84%)
+2019-01-31 11:30:25 1548934225.367722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2407595 total-bytes-write=52 payload-bytes-read=2407566/5242880 (45.92%)
+2019-01-31 11:30:25 1548934225.408490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2464601 total-bytes-write=52 payload-bytes-read=2464572/5242880 (47.01%)
+2019-01-31 11:30:25 1548934225.463805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2468087 total-bytes-write=52 payload-bytes-read=2468058/5242880 (47.07%)
+2019-01-31 11:30:25 1548934225.464740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2472071 total-bytes-write=52 payload-bytes-read=2472042/5242880 (47.15%)
+2019-01-31 11:30:25 1548934225.465863 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2479989 total-bytes-write=52 payload-bytes-read=2479960/5242880 (47.30%)
+2019-01-31 11:30:25 1548934225.465927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2480487 total-bytes-write=52 payload-bytes-read=2480458/5242880 (47.31%)
+2019-01-31 11:30:25 1548934225.466961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2487957 total-bytes-write=52 payload-bytes-read=2487928/5242880 (47.45%)
+2019-01-31 11:30:25 1548934225.468330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2495875 total-bytes-write=52 payload-bytes-read=2495846/5242880 (47.60%)
+2019-01-31 11:30:25 1548934225.472792 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2496373 total-bytes-write=52 payload-bytes-read=2496344/5242880 (47.61%)
+2019-01-31 11:30:25 1548934225.473777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2499859 total-bytes-write=52 payload-bytes-read=2499830/5242880 (47.68%)
+2019-01-31 11:30:25 1548934225.474436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2503843 total-bytes-write=52 payload-bytes-read=2503814/5242880 (47.76%)
+2019-01-31 11:30:25 1548934225.477538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2507777 total-bytes-write=52 payload-bytes-read=2507748/5242880 (47.83%)
+2019-01-31 11:30:25 1548934225.480857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2512259 total-bytes-write=52 payload-bytes-read=2512230/5242880 (47.92%)
+2019-01-31 11:30:25 1548934225.480960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2519729 total-bytes-write=52 payload-bytes-read=2519700/5242880 (48.06%)
+2019-01-31 11:30:25 1548934225.481054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2527647 total-bytes-write=52 payload-bytes-read=2527618/5242880 (48.21%)
+2019-01-31 11:30:25 1548934225.493767 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2528145 total-bytes-write=52 payload-bytes-read=2528116/5242880 (48.22%)
+2019-01-31 11:30:25 1548934225.503274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2531631 total-bytes-write=52 payload-bytes-read=2531602/5242880 (48.29%)
+2019-01-31 11:30:25 1548934225.504362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2535615 total-bytes-write=52 payload-bytes-read=2535586/5242880 (48.36%)
+2019-01-31 11:30:25 1548934225.505977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2544031 total-bytes-write=52 payload-bytes-read=2544002/5242880 (48.52%)
+2019-01-31 11:30:25 1548934225.506356 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2547517 total-bytes-write=52 payload-bytes-read=2547488/5242880 (48.59%)
+2019-01-31 11:30:25 1548934225.518496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2554987 total-bytes-write=52 payload-bytes-read=2554958/5242880 (48.73%)
+2019-01-31 11:30:25 1548934225.541367 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2556431 total-bytes-write=52 payload-bytes-read=2556402/5242880 (48.76%)
+2019-01-31 11:30:25 1548934225.650912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2559917 total-bytes-write=52 payload-bytes-read=2559888/5242880 (48.83%)
+2019-01-31 11:30:25 1548934225.670436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2563403 total-bytes-write=52 payload-bytes-read=2563374/5242880 (48.89%)
+2019-01-31 11:30:25 1548934225.712406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2581281 total-bytes-write=52 payload-bytes-read=2581252/5242880 (49.23%)
+2019-01-31 11:30:25 1548934225.756383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2584767 total-bytes-write=52 payload-bytes-read=2584738/5242880 (49.30%)
+2019-01-31 11:30:25 1548934225.768634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2588253 total-bytes-write=52 payload-bytes-read=2588224/5242880 (49.37%)
+2019-01-31 11:30:25 1548934225.812449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2604139 total-bytes-write=52 payload-bytes-read=2604110/5242880 (49.67%)
+2019-01-31 11:30:25 1548934225.857378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2606081 total-bytes-write=52 payload-bytes-read=2606052/5242880 (49.71%)
+2019-01-31 11:30:25 1548934225.956005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2609567 total-bytes-write=52 payload-bytes-read=2609538/5242880 (49.77%)
+2019-01-31 11:30:25 1548934225.967869 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2613053 total-bytes-write=52 payload-bytes-read=2613024/5242880 (49.84%)
+2019-01-31 11:30:26 1548934226.004479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2680581 total-bytes-write=52 payload-bytes-read=2680552/5242880 (51.13%)
+2019-01-31 11:30:26 1548934226.014265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2684067 total-bytes-write=52 payload-bytes-read=2684038/5242880 (51.19%)
+2019-01-31 11:30:26 1548934226.015062 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2688001 total-bytes-write=52 payload-bytes-read=2687972/5242880 (51.27%)
+2019-01-31 11:30:26 1548934226.015695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2691985 total-bytes-write=52 payload-bytes-read=2691956/5242880 (51.34%)
+2019-01-31 11:30:26 1548934226.034192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2692483 total-bytes-write=52 payload-bytes-read=2692454/5242880 (51.35%)
+2019-01-31 11:30:26 1548934226.043505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2695969 total-bytes-write=52 payload-bytes-read=2695940/5242880 (51.42%)
+2019-01-31 11:30:26 1548934226.053275 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2699455 total-bytes-write=52 payload-bytes-read=2699426/5242880 (51.49%)
+2019-01-31 11:30:26 1548934226.086876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2765489 total-bytes-write=52 payload-bytes-read=2765460/5242880 (52.75%)
+2019-01-31 11:30:26 1548934226.093196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2768925 total-bytes-write=52 payload-bytes-read=2768896/5242880 (52.81%)
+2019-01-31 11:30:26 1548934226.094235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2772909 total-bytes-write=52 payload-bytes-read=2772880/5242880 (52.89%)
+2019-01-31 11:30:26 1548934226.175122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2773905 total-bytes-write=52 payload-bytes-read=2773876/5242880 (52.91%)
+2019-01-31 11:30:26 1548934226.177612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2776395 total-bytes-write=52 payload-bytes-read=2776366/5242880 (52.95%)
+2019-01-31 11:30:26 1548934226.216054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2779881 total-bytes-write=52 payload-bytes-read=2779852/5242880 (53.02%)
+2019-01-31 11:30:26 1548934226.386538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2783367 total-bytes-write=52 payload-bytes-read=2783338/5242880 (53.09%)
+2019-01-31 11:30:26 1548934226.564228 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2786803 total-bytes-write=52 payload-bytes-read=2786774/5242880 (53.15%)
+2019-01-31 11:30:26 1548934226.565047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2790851 total-bytes-write=52 payload-bytes-read=2790822/5242880 (53.23%)
+2019-01-31 11:30:26 1548934226.608461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2833515 total-bytes-write=52 payload-bytes-read=2833486/5242880 (54.04%)
+2019-01-31 11:30:26 1548934226.652360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2835457 total-bytes-write=52 payload-bytes-read=2835428/5242880 (54.08%)
+2019-01-31 11:30:26 1548934226.661197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2835955 total-bytes-write=52 payload-bytes-read=2835926/5242880 (54.09%)
+2019-01-31 11:30:26 1548934226.760809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2843425 total-bytes-write=52 payload-bytes-read=2843396/5242880 (54.23%)
+2019-01-31 11:30:26 1548934226.760909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2847409 total-bytes-write=52 payload-bytes-read=2847380/5242880 (54.31%)
+2019-01-31 11:30:26 1548934226.765460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2854829 total-bytes-write=52 payload-bytes-read=2854800/5242880 (54.45%)
+2019-01-31 11:30:26 1548934226.765546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2858813 total-bytes-write=52 payload-bytes-read=2858784/5242880 (54.53%)
+2019-01-31 11:30:26 1548934226.766808 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2863295 total-bytes-write=52 payload-bytes-read=2863266/5242880 (54.61%)
+2019-01-31 11:30:26 1548934226.766904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2870715 total-bytes-write=52 payload-bytes-read=2870686/5242880 (54.75%)
+2019-01-31 11:30:26 1548934226.767017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2878683 total-bytes-write=52 payload-bytes-read=2878654/5242880 (54.91%)
+2019-01-31 11:30:26 1548934226.769691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2879181 total-bytes-write=52 payload-bytes-read=2879152/5242880 (54.92%)
+2019-01-31 11:30:26 1548934226.770164 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2882667 total-bytes-write=52 payload-bytes-read=2882638/5242880 (54.98%)
+2019-01-31 11:30:26 1548934226.771890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2886601 total-bytes-write=52 payload-bytes-read=2886572/5242880 (55.06%)
+2019-01-31 11:30:26 1548934226.773158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2894569 total-bytes-write=52 payload-bytes-read=2894540/5242880 (55.21%)
+2019-01-31 11:30:26 1548934226.773239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2898553 total-bytes-write=52 payload-bytes-read=2898524/5242880 (55.28%)
+2019-01-31 11:30:26 1548934226.773302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2902487 total-bytes-write=52 payload-bytes-read=2902458/5242880 (55.36%)
+2019-01-31 11:30:26 1548934226.773988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2910455 total-bytes-write=52 payload-bytes-read=2910426/5242880 (55.51%)
+2019-01-31 11:30:26 1548934226.790233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2913941 total-bytes-write=52 payload-bytes-read=2913912/5242880 (55.58%)
+2019-01-31 11:30:26 1548934226.791564 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2921859 total-bytes-write=52 payload-bytes-read=2921830/5242880 (55.73%)
+2019-01-31 11:30:26 1548934226.798845 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2922855 total-bytes-write=52 payload-bytes-read=2922826/5242880 (55.75%)
+2019-01-31 11:30:26 1548934226.800148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2930325 total-bytes-write=52 payload-bytes-read=2930296/5242880 (55.89%)
+2019-01-31 11:30:26 1548934226.803659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2938243 total-bytes-write=52 payload-bytes-read=2938214/5242880 (56.04%)
+2019-01-31 11:30:26 1548934226.804994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2942227 total-bytes-write=52 payload-bytes-read=2942198/5242880 (56.12%)
+2019-01-31 11:30:26 1548934226.805257 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2950145 total-bytes-write=52 payload-bytes-read=2950116/5242880 (56.27%)
+2019-01-31 11:30:26 1548934226.805364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2954129 total-bytes-write=52 payload-bytes-read=2954100/5242880 (56.34%)
+2019-01-31 11:30:26 1548934226.809635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2954627 total-bytes-write=52 payload-bytes-read=2954598/5242880 (56.35%)
+2019-01-31 11:30:26 1548934226.810696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2962097 total-bytes-write=52 payload-bytes-read=2962068/5242880 (56.50%)
+2019-01-31 11:30:26 1548934226.811563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2972007 total-bytes-write=52 payload-bytes-read=2971978/5242880 (56.69%)
+2019-01-31 11:30:26 1548934226.820579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2975493 total-bytes-write=52 payload-bytes-read=2975464/5242880 (56.75%)
+2019-01-31 11:30:26 1548934226.821744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2983411 total-bytes-write=52 payload-bytes-read=2983382/5242880 (56.90%)
+2019-01-31 11:30:26 1548934226.828974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2986897 total-bytes-write=52 payload-bytes-read=2986868/5242880 (56.97%)
+2019-01-31 11:30:26 1548934226.829892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2990383 total-bytes-write=52 payload-bytes-read=2990354/5242880 (57.04%)
+2019-01-31 11:30:26 1548934226.872449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3026637 total-bytes-write=52 payload-bytes-read=3026608/5242880 (57.73%)
+2019-01-31 11:30:26 1548934226.918107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3028131 total-bytes-write=52 payload-bytes-read=3028102/5242880 (57.76%)
+2019-01-31 11:30:26 1548934226.987310 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3031069 total-bytes-write=52 payload-bytes-read=3031040/5242880 (57.81%)
+2019-01-31 11:30:27 1548934227.066380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3034555 total-bytes-write=52 payload-bytes-read=3034526/5242880 (57.88%)
+2019-01-31 11:30:27 1548934227.066838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3038539 total-bytes-write=52 payload-bytes-read=3038510/5242880 (57.95%)
+2019-01-31 11:30:27 1548934227.069400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3042523 total-bytes-write=52 payload-bytes-read=3042494/5242880 (58.03%)
+2019-01-31 11:30:27 1548934227.112381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3049445 total-bytes-write=52 payload-bytes-read=3049416/5242880 (58.16%)
+2019-01-31 11:30:27 1548934227.156377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3052931 total-bytes-write=52 payload-bytes-read=3052902/5242880 (58.23%)
+2019-01-31 11:30:27 1548934227.167644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:30:27 1548934227.208405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3071307 total-bytes-write=52 payload-bytes-read=3071278/5242880 (58.58%)
+2019-01-31 11:30:27 1548934227.252383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3074295 total-bytes-write=52 payload-bytes-read=3074266/5242880 (58.64%)
+2019-01-31 11:30:27 1548934227.267048 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3077781 total-bytes-write=52 payload-bytes-read=3077752/5242880 (58.70%)
+2019-01-31 11:30:27 1548934227.346204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3080221 total-bytes-write=52 payload-bytes-read=3080192/5242880 (58.75%)
+2019-01-31 11:30:27 1548934227.366486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3083707 total-bytes-write=52 payload-bytes-read=3083678/5242880 (58.82%)
+2019-01-31 11:30:27 1548934227.367303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3087691 total-bytes-write=52 payload-bytes-read=3087662/5242880 (58.89%)
+2019-01-31 11:30:27 1548934227.367993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3091675 total-bytes-write=52 payload-bytes-read=3091646/5242880 (58.97%)
+2019-01-31 11:30:27 1548934227.408426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3110549 total-bytes-write=52 payload-bytes-read=3110520/5242880 (59.33%)
+2019-01-31 11:30:27 1548934227.452429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3141823 total-bytes-write=52 payload-bytes-read=3141794/5242880 (59.92%)
+2019-01-31 11:30:27 1548934227.496380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3149243 total-bytes-write=52 payload-bytes-read=3149214/5242880 (60.07%)
+2019-01-31 11:30:27 1548934227.514683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3156713 total-bytes-write=52 payload-bytes-read=3156684/5242880 (60.21%)
+2019-01-31 11:30:27 1548934227.514794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3164631 total-bytes-write=52 payload-bytes-read=3164602/5242880 (60.36%)
+2019-01-31 11:30:27 1548934227.514861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3165627 total-bytes-write=52 payload-bytes-read=3165598/5242880 (60.38%)
+2019-01-31 11:30:27 1548934227.515298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3168615 total-bytes-write=52 payload-bytes-read=3168586/5242880 (60.44%)
+2019-01-31 11:30:27 1548934227.554890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3172101 total-bytes-write=52 payload-bytes-read=3172072/5242880 (60.50%)
+2019-01-31 11:30:27 1548934227.555668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3176085 total-bytes-write=52 payload-bytes-read=3176056/5242880 (60.58%)
+2019-01-31 11:30:27 1548934227.556204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3180019 total-bytes-write=52 payload-bytes-read=3179990/5242880 (60.65%)
+2019-01-31 11:30:27 1548934227.570475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3184501 total-bytes-write=52 payload-bytes-read=3184472/5242880 (60.74%)
+2019-01-31 11:30:27 1548934227.572973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3191971 total-bytes-write=52 payload-bytes-read=3191942/5242880 (60.88%)
+2019-01-31 11:30:27 1548934227.573095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3199889 total-bytes-write=52 payload-bytes-read=3199860/5242880 (61.03%)
+2019-01-31 11:30:27 1548934227.573188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3203873 total-bytes-write=52 payload-bytes-read=3203844/5242880 (61.11%)
+2019-01-31 11:30:27 1548934227.573347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3211791 total-bytes-write=52 payload-bytes-read=3211762/5242880 (61.26%)
+2019-01-31 11:30:27 1548934227.573879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3216273 total-bytes-write=52 payload-bytes-read=3216244/5242880 (61.34%)
+2019-01-31 11:30:27 1548934227.574001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3223743 total-bytes-write=52 payload-bytes-read=3223714/5242880 (61.49%)
+2019-01-31 11:30:27 1548934227.580581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3232159 total-bytes-write=52 payload-bytes-read=3232130/5242880 (61.65%)
+2019-01-31 11:30:27 1548934227.582418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3239629 total-bytes-write=52 payload-bytes-read=3239600/5242880 (61.79%)
+2019-01-31 11:30:27 1548934227.582549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3247547 total-bytes-write=52 payload-bytes-read=3247518/5242880 (61.94%)
+2019-01-31 11:30:27 1548934227.582611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3250535 total-bytes-write=52 payload-bytes-read=3250506/5242880 (62.00%)
+2019-01-31 11:30:27 1548934227.596183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3254021 total-bytes-write=52 payload-bytes-read=3253992/5242880 (62.06%)
+2019-01-31 11:30:27 1548934227.596778 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3258005 total-bytes-write=52 payload-bytes-read=3257976/5242880 (62.14%)
+2019-01-31 11:30:27 1548934227.607486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3265923 total-bytes-write=52 payload-bytes-read=3265894/5242880 (62.29%)
+2019-01-31 11:30:27 1548934227.607579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3269907 total-bytes-write=52 payload-bytes-read=3269878/5242880 (62.37%)
+2019-01-31 11:30:27 1548934227.607707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3277825 total-bytes-write=52 payload-bytes-read=3277796/5242880 (62.52%)
+2019-01-31 11:30:27 1548934227.607834 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3282307 total-bytes-write=52 payload-bytes-read=3282278/5242880 (62.60%)
+2019-01-31 11:30:27 1548934227.607898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3285793 total-bytes-write=52 payload-bytes-read=3285764/5242880 (62.67%)
+2019-01-31 11:30:27 1548934227.608212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3293711 total-bytes-write=52 payload-bytes-read=3293682/5242880 (62.82%)
+2019-01-31 11:30:27 1548934227.632888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3294707 total-bytes-write=52 payload-bytes-read=3294678/5242880 (62.84%)
+2019-01-31 11:30:27 1548934227.654889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3296201 total-bytes-write=52 payload-bytes-read=3296172/5242880 (62.87%)
+2019-01-31 11:30:27 1548934227.694391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3299687 total-bytes-write=52 payload-bytes-read=3299658/5242880 (62.94%)
+2019-01-31 11:30:27 1548934227.754249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3301181 total-bytes-write=52 payload-bytes-read=3301152/5242880 (62.96%)
+2019-01-31 11:30:27 1548934227.754379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3308651 total-bytes-write=52 payload-bytes-read=3308622/5242880 (63.11%)
+2019-01-31 11:30:27 1548934227.772133 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3310095 total-bytes-write=52 payload-bytes-read=3310066/5242880 (63.13%)
+2019-01-31 11:30:27 1548934227.772979 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3313581 total-bytes-write=52 payload-bytes-read=3313552/5242880 (63.20%)
+2019-01-31 11:30:27 1548934227.773478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3315573 total-bytes-write=52 payload-bytes-read=3315544/5242880 (63.24%)
+2019-01-31 11:30:27 1548934227.782649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3323043 total-bytes-write=52 payload-bytes-read=3323014/5242880 (63.38%)
+2019-01-31 11:30:27 1548934227.802945 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3324537 total-bytes-write=52 payload-bytes-read=3324508/5242880 (63.41%)
+2019-01-31 11:30:27 1548934227.807420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3328969 total-bytes-write=52 payload-bytes-read=3328940/5242880 (63.49%)
+2019-01-31 11:30:27 1548934227.812283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3332455 total-bytes-write=52 payload-bytes-read=3332426/5242880 (63.56%)
+2019-01-31 11:30:27 1548934227.813202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3335941 total-bytes-write=52 payload-bytes-read=3335912/5242880 (63.63%)
+2019-01-31 11:30:27 1548934227.856415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3343361 total-bytes-write=52 payload-bytes-read=3343332/5242880 (63.77%)
+2019-01-31 11:30:27 1548934227.904385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3347843 total-bytes-write=52 payload-bytes-read=3347814/5242880 (63.85%)
+2019-01-31 11:30:27 1548934227.911319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3349835 total-bytes-write=52 payload-bytes-read=3349806/5242880 (63.89%)
+2019-01-31 11:30:27 1548934227.998837 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3350831 total-bytes-write=52 payload-bytes-read=3350802/5242880 (63.91%)
+2019-01-31 11:30:28 1548934228.070058 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3354317 total-bytes-write=52 payload-bytes-read=3354288/5242880 (63.98%)
+2019-01-31 11:30:28 1548934228.089065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3357803 total-bytes-write=52 payload-bytes-read=3357774/5242880 (64.04%)
+2019-01-31 11:30:28 1548934228.132435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3384595 total-bytes-write=52 payload-bytes-read=3384566/5242880 (64.56%)
+2019-01-31 11:30:28 1548934228.176450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3421845 total-bytes-write=52 payload-bytes-read=3421816/5242880 (65.27%)
+2019-01-31 11:30:28 1548934228.200787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3487381 total-bytes-write=52 payload-bytes-read=3487352/5242880 (66.52%)
+2019-01-31 11:30:28 1548934228.203894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3493805 total-bytes-write=52 payload-bytes-read=3493776/5242880 (66.64%)
+2019-01-31 11:30:28 1548934228.212402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3501275 total-bytes-write=52 payload-bytes-read=3501246/5242880 (66.78%)
+2019-01-31 11:30:28 1548934228.217421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3505259 total-bytes-write=52 payload-bytes-read=3505230/5242880 (66.86%)
+2019-01-31 11:30:28 1548934228.220123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3509193 total-bytes-write=52 payload-bytes-read=3509164/5242880 (66.93%)
+2019-01-31 11:30:28 1548934228.221435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3509691 total-bytes-write=52 payload-bytes-read=3509662/5242880 (66.94%)
+2019-01-31 11:30:28 1548934228.257697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3517161 total-bytes-write=52 payload-bytes-read=3517132/5242880 (67.08%)
+2019-01-31 11:30:28 1548934228.259040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3525079 total-bytes-write=52 payload-bytes-read=3525050/5242880 (67.23%)
+2019-01-31 11:30:28 1548934228.259112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3525577 total-bytes-write=52 payload-bytes-read=3525548/5242880 (67.24%)
+2019-01-31 11:30:28 1548934228.261991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3529063 total-bytes-write=52 payload-bytes-read=3529034/5242880 (67.31%)
+2019-01-31 11:30:28 1548934228.263407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3537031 total-bytes-write=52 payload-bytes-read=3537002/5242880 (67.46%)
+2019-01-31 11:30:28 1548934228.263486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3540965 total-bytes-write=52 payload-bytes-read=3540936/5242880 (67.54%)
+2019-01-31 11:30:28 1548934228.266463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3541463 total-bytes-write=52 payload-bytes-read=3541434/5242880 (67.55%)
+2019-01-31 11:30:28 1548934228.266788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3543455 total-bytes-write=52 payload-bytes-read=3543426/5242880 (67.59%)
+2019-01-31 11:30:28 1548934228.464020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3546941 total-bytes-write=52 payload-bytes-read=3546912/5242880 (67.65%)
+2019-01-31 11:30:28 1548934228.465050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3550925 total-bytes-write=52 payload-bytes-read=3550896/5242880 (67.73%)
+2019-01-31 11:30:28 1548934228.473663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3552419 total-bytes-write=52 payload-bytes-read=3552390/5242880 (67.76%)
+2019-01-31 11:30:28 1548934228.474735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3558345 total-bytes-write=52 payload-bytes-read=3558316/5242880 (67.87%)
+2019-01-31 11:30:28 1548934228.492194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3559341 total-bytes-write=52 payload-bytes-read=3559312/5242880 (67.89%)
+2019-01-31 11:30:28 1548934228.493595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3562827 total-bytes-write=52 payload-bytes-read=3562798/5242880 (67.95%)
+2019-01-31 11:30:28 1548934228.493866 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3565815 total-bytes-write=52 payload-bytes-read=3565786/5242880 (68.01%)
+2019-01-31 11:30:28 1548934228.511697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3566811 total-bytes-write=52 payload-bytes-read=3566782/5242880 (68.03%)
+2019-01-31 11:30:28 1548934228.590887 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3570297 total-bytes-write=52 payload-bytes-read=3570268/5242880 (68.10%)
+2019-01-31 11:30:28 1548934228.688224 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3571293 total-bytes-write=52 payload-bytes-read=3571264/5242880 (68.12%)
+2019-01-31 11:30:28 1548934228.765246 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3574729 total-bytes-write=52 payload-bytes-read=3574700/5242880 (68.18%)
+2019-01-31 11:30:28 1548934228.794912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3582199 total-bytes-write=52 payload-bytes-read=3582170/5242880 (68.32%)
+2019-01-31 11:30:28 1548934228.795364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3588125 total-bytes-write=52 payload-bytes-read=3588096/5242880 (68.44%)
+2019-01-31 11:30:28 1548934228.812622 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3589121 total-bytes-write=52 payload-bytes-read=3589092/5242880 (68.46%)
+2019-01-31 11:30:28 1548934228.852031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3592607 total-bytes-write=52 payload-bytes-read=3592578/5242880 (68.52%)
+2019-01-31 11:30:28 1548934228.853134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3596591 total-bytes-write=52 payload-bytes-read=3596562/5242880 (68.60%)
+2019-01-31 11:30:28 1548934228.853805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3600575 total-bytes-write=52 payload-bytes-read=3600546/5242880 (68.67%)
+2019-01-31 11:30:28 1548934228.896422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3634339 total-bytes-write=52 payload-bytes-read=3634310/5242880 (69.32%)
+2019-01-31 11:30:29 1548934229.085977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3637775 total-bytes-write=52 payload-bytes-read=3637746/5242880 (69.38%)
+2019-01-31 11:30:29 1548934229.086563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3641759 total-bytes-write=52 payload-bytes-read=3641730/5242880 (69.46%)
+2019-01-31 11:30:29 1548934229.087030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3645743 total-bytes-write=52 payload-bytes-read=3645714/5242880 (69.54%)
+2019-01-31 11:30:29 1548934229.145131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3649229 total-bytes-write=52 payload-bytes-read=3649200/5242880 (69.60%)
+2019-01-31 11:30:29 1548934229.188591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3650225 total-bytes-write=52 payload-bytes-read=3650196/5242880 (69.62%)
+2019-01-31 11:30:29 1548934229.189110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3653661 total-bytes-write=52 payload-bytes-read=3653632/5242880 (69.69%)
+2019-01-31 11:30:29 1548934229.191031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3654159 total-bytes-write=52 payload-bytes-read=3654130/5242880 (69.70%)
+2019-01-31 11:30:29 1548934229.305598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3658207 total-bytes-write=52 payload-bytes-read=3658178/5242880 (69.77%)
+2019-01-31 11:30:29 1548934229.348437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3682993 total-bytes-write=52 payload-bytes-read=3682964/5242880 (70.25%)
+2019-01-31 11:30:29 1548934229.392378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3687923 total-bytes-write=52 payload-bytes-read=3687894/5242880 (70.34%)
+2019-01-31 11:30:29 1548934229.392482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3691409 total-bytes-write=52 payload-bytes-read=3691380/5242880 (70.41%)
+2019-01-31 11:30:29 1548934229.403901 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3694895 total-bytes-write=52 payload-bytes-read=3694866/5242880 (70.47%)
+2019-01-31 11:30:29 1548934229.444359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3699875 total-bytes-write=52 payload-bytes-read=3699846/5242880 (70.57%)
+2019-01-31 11:30:29 1548934229.488357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3707295 total-bytes-write=52 payload-bytes-read=3707266/5242880 (70.71%)
+2019-01-31 11:30:29 1548934229.532385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3716757 total-bytes-write=52 payload-bytes-read=3716728/5242880 (70.89%)
+2019-01-31 11:30:29 1548934229.576408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3728161 total-bytes-write=52 payload-bytes-read=3728132/5242880 (71.11%)
+2019-01-31 11:30:29 1548934229.620367 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3740561 total-bytes-write=52 payload-bytes-read=3740532/5242880 (71.34%)
+2019-01-31 11:30:29 1548934229.664381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3751965 total-bytes-write=52 payload-bytes-read=3751936/5242880 (71.56%)
+2019-01-31 11:30:29 1548934229.696944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3756447 total-bytes-write=52 payload-bytes-read=3756418/5242880 (71.65%)
+2019-01-31 11:30:29 1548934229.700780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3759933 total-bytes-write=52 payload-bytes-read=3759904/5242880 (71.71%)
+2019-01-31 11:30:29 1548934229.700999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3760929 total-bytes-write=52 payload-bytes-read=3760900/5242880 (71.73%)
+2019-01-31 11:30:29 1548934229.725082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3764415 total-bytes-write=52 payload-bytes-read=3764386/5242880 (71.80%)
+2019-01-31 11:30:29 1548934229.743520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3768349 total-bytes-write=52 payload-bytes-read=3768320/5242880 (71.88%)
+2019-01-31 11:30:29 1548934229.753969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3773329 total-bytes-write=52 payload-bytes-read=3773300/5242880 (71.97%)
+2019-01-31 11:30:29 1548934229.789862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3777313 total-bytes-write=52 payload-bytes-read=3777284/5242880 (72.05%)
+2019-01-31 11:30:29 1548934229.800198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3781297 total-bytes-write=52 payload-bytes-read=3781268/5242880 (72.12%)
+2019-01-31 11:30:29 1548934229.840383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3788219 total-bytes-write=52 payload-bytes-read=3788190/5242880 (72.25%)
+2019-01-31 11:30:29 1548934229.884363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3795689 total-bytes-write=52 payload-bytes-read=3795660/5242880 (72.40%)
+2019-01-31 11:30:29 1548934229.928392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3804105 total-bytes-write=52 payload-bytes-read=3804076/5242880 (72.56%)
+2019-01-31 11:30:29 1548934229.972397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3819493 total-bytes-write=52 payload-bytes-read=3819464/5242880 (72.85%)
+2019-01-31 11:30:30 1548934230.016420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3826963 total-bytes-write=52 payload-bytes-read=3826934/5242880 (72.99%)
+2019-01-31 11:30:30 1548934230.034775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3830947 total-bytes-write=52 payload-bytes-read=3830918/5242880 (73.07%)
+2019-01-31 11:30:30 1548934230.035508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3834881 total-bytes-write=52 payload-bytes-read=3834852/5242880 (73.14%)
+2019-01-31 11:30:30 1548934230.043439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3838865 total-bytes-write=52 payload-bytes-read=3838836/5242880 (73.22%)
+2019-01-31 11:30:30 1548934230.082362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3842849 total-bytes-write=52 payload-bytes-read=3842820/5242880 (73.30%)
+2019-01-31 11:30:30 1548934230.124383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3850767 total-bytes-write=52 payload-bytes-read=3850738/5242880 (73.45%)
+2019-01-31 11:30:30 1548934230.168387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3862221 total-bytes-write=52 payload-bytes-read=3862192/5242880 (73.67%)
+2019-01-31 11:30:30 1548934230.212394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3878107 total-bytes-write=52 payload-bytes-read=3878078/5242880 (73.97%)
+2019-01-31 11:30:30 1548934230.256419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3886025 total-bytes-write=52 payload-bytes-read=3885996/5242880 (74.12%)
+2019-01-31 11:30:30 1548934230.269580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3890507 total-bytes-write=52 payload-bytes-read=3890478/5242880 (74.20%)
+2019-01-31 11:30:30 1548934230.270863 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3893495 total-bytes-write=52 payload-bytes-read=3893466/5242880 (74.26%)
+2019-01-31 11:30:30 1548934230.276590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3896981 total-bytes-write=52 payload-bytes-read=3896952/5242880 (74.33%)
+2019-01-31 11:30:30 1548934230.281232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3900417 total-bytes-write=52 payload-bytes-read=3900388/5242880 (74.39%)
+2019-01-31 11:30:30 1548934230.318282 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3904401 total-bytes-write=52 payload-bytes-read=3904372/5242880 (74.47%)
+2019-01-31 11:30:30 1548934230.320220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3908385 total-bytes-write=52 payload-bytes-read=3908356/5242880 (74.55%)
+2019-01-31 11:30:30 1548934230.360364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3915357 total-bytes-write=52 payload-bytes-read=3915328/5242880 (74.68%)
+2019-01-31 11:30:30 1548934230.404398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3926761 total-bytes-write=52 payload-bytes-read=3926732/5242880 (74.90%)
+2019-01-31 11:30:30 1548934230.448385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3939161 total-bytes-write=52 payload-bytes-read=3939132/5242880 (75.13%)
+2019-01-31 11:30:30 1548934230.492384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3950067 total-bytes-write=52 payload-bytes-read=3950038/5242880 (75.34%)
+2019-01-31 11:30:30 1548934230.500807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3955545 total-bytes-write=52 payload-bytes-read=3955516/5242880 (75.45%)
+2019-01-31 11:30:30 1548934230.520251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3959031 total-bytes-write=52 payload-bytes-read=3959002/5242880 (75.51%)
+2019-01-31 11:30:30 1548934230.521476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3963015 total-bytes-write=52 payload-bytes-read=3962986/5242880 (75.59%)
+2019-01-31 11:30:30 1548934230.547791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3966949 total-bytes-write=52 payload-bytes-read=3966920/5242880 (75.66%)
+2019-01-31 11:30:30 1548934230.575061 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3971431 total-bytes-write=52 payload-bytes-read=3971402/5242880 (75.75%)
+2019-01-31 11:30:30 1548934230.576630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3978403 total-bytes-write=52 payload-bytes-read=3978374/5242880 (75.88%)
+2019-01-31 11:30:30 1548934230.597735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3981839 total-bytes-write=52 payload-bytes-read=3981810/5242880 (75.95%)
+2019-01-31 11:30:30 1548934230.623138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3985325 total-bytes-write=52 payload-bytes-read=3985296/5242880 (76.01%)
+2019-01-31 11:30:30 1548934230.623460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3986321 total-bytes-write=52 payload-bytes-read=3986292/5242880 (76.03%)
+2019-01-31 11:30:30 1548934230.624864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3991799 total-bytes-write=52 payload-bytes-read=3991770/5242880 (76.14%)
+2019-01-31 11:30:30 1548934230.644181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3992795 total-bytes-write=52 payload-bytes-read=3992766/5242880 (76.16%)
+2019-01-31 11:30:30 1548934230.668805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3996281 total-bytes-write=52 payload-bytes-read=3996252/5242880 (76.22%)
+2019-01-31 11:30:30 1548934230.674465 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3999717 total-bytes-write=52 payload-bytes-read=3999688/5242880 (76.29%)
+2019-01-31 11:30:30 1548934230.675032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4005195 total-bytes-write=52 payload-bytes-read=4005166/5242880 (76.39%)
+2019-01-31 11:30:30 1548934230.717614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4009179 total-bytes-write=52 payload-bytes-read=4009150/5242880 (76.47%)
+2019-01-31 11:30:30 1548934230.723436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4012665 total-bytes-write=52 payload-bytes-read=4012636/5242880 (76.53%)
+2019-01-31 11:30:30 1548934230.724305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4016101 total-bytes-write=52 payload-bytes-read=4016072/5242880 (76.60%)
+2019-01-31 11:30:30 1548934230.739449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4020583 total-bytes-write=52 payload-bytes-read=4020554/5242880 (76.69%)
+2019-01-31 11:30:30 1548934230.771828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4024069 total-bytes-write=52 payload-bytes-read=4024040/5242880 (76.75%)
+2019-01-31 11:30:30 1548934230.772554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4028053 total-bytes-write=52 payload-bytes-read=4028024/5242880 (76.83%)
+2019-01-31 11:30:30 1548934230.778445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4030045 total-bytes-write=52 payload-bytes-read=4030016/5242880 (76.87%)
+2019-01-31 11:30:30 1548934230.786172 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4033481 total-bytes-write=52 payload-bytes-read=4033452/5242880 (76.93%)
+2019-01-31 11:30:30 1548934230.816645 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4035971 total-bytes-write=52 payload-bytes-read=4035942/5242880 (76.98%)
+2019-01-31 11:30:30 1548934230.823140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4038959 total-bytes-write=52 payload-bytes-read=4038930/5242880 (77.04%)
+2019-01-31 11:30:30 1548934230.825584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4041449 total-bytes-write=52 payload-bytes-read=4041420/5242880 (77.08%)
+2019-01-31 11:30:30 1548934230.832577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4045931 total-bytes-write=52 payload-bytes-read=4045902/5242880 (77.17%)
+2019-01-31 11:30:30 1548934230.864423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4049367 total-bytes-write=52 payload-bytes-read=4049338/5242880 (77.23%)
+2019-01-31 11:30:30 1548934230.873610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4053351 total-bytes-write=52 payload-bytes-read=4053322/5242880 (77.31%)
+2019-01-31 11:30:30 1548934230.874180 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4056837 total-bytes-write=52 payload-bytes-read=4056808/5242880 (77.38%)
+2019-01-31 11:30:30 1548934230.910789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4060323 total-bytes-write=52 payload-bytes-read=4060294/5242880 (77.44%)
+2019-01-31 11:30:30 1548934230.952387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4070233 total-bytes-write=52 payload-bytes-read=4070204/5242880 (77.63%)
+2019-01-31 11:30:30 1548934230.996392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4083131 total-bytes-write=52 payload-bytes-read=4083102/5242880 (77.88%)
+2019-01-31 11:30:31 1548934231.040416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4097523 total-bytes-write=52 payload-bytes-read=4097494/5242880 (78.15%)
+2019-01-31 11:30:31 1548934231.084408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4109973 total-bytes-write=52 payload-bytes-read=4109944/5242880 (78.39%)
+2019-01-31 11:30:31 1548934231.100964 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4113409 total-bytes-write=52 payload-bytes-read=4113380/5242880 (78.46%)
+2019-01-31 11:30:31 1548934231.112444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4115401 total-bytes-write=52 payload-bytes-read=4115372/5242880 (78.49%)
+2019-01-31 11:30:31 1548934231.115723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4118887 total-bytes-write=52 payload-bytes-read=4118858/5242880 (78.56%)
+2019-01-31 11:30:31 1548934231.123062 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4122373 total-bytes-write=52 payload-bytes-read=4122344/5242880 (78.63%)
+2019-01-31 11:30:31 1548934231.164377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4130291 total-bytes-write=52 payload-bytes-read=4130262/5242880 (78.78%)
+2019-01-31 11:30:31 1548934231.208380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4138259 total-bytes-write=52 payload-bytes-read=4138230/5242880 (78.93%)
+2019-01-31 11:30:31 1548934231.252396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4150659 total-bytes-write=52 payload-bytes-read=4150630/5242880 (79.17%)
+2019-01-31 11:30:31 1548934231.296420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4162063 total-bytes-write=52 payload-bytes-read=4162034/5242880 (79.38%)
+2019-01-31 11:30:31 1548934231.304477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4164055 total-bytes-write=52 payload-bytes-read=4164026/5242880 (79.42%)
+2019-01-31 11:30:31 1548934231.307581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4167541 total-bytes-write=52 payload-bytes-read=4167512/5242880 (79.49%)
+2019-01-31 11:30:31 1548934231.325081 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4171525 total-bytes-write=52 payload-bytes-read=4171496/5242880 (79.56%)
+2019-01-31 11:30:31 1548934231.340504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4175509 total-bytes-write=52 payload-bytes-read=4175480/5242880 (79.64%)
+2019-01-31 11:30:31 1548934231.384402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4187411 total-bytes-write=52 payload-bytes-read=4187382/5242880 (79.87%)
+2019-01-31 11:30:31 1548934231.428424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4198317 total-bytes-write=52 payload-bytes-read=4198288/5242880 (80.08%)
+2019-01-31 11:30:31 1548934231.437682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4201803 total-bytes-write=52 payload-bytes-read=4201774/5242880 (80.14%)
+2019-01-31 11:30:31 1548934231.456649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4205787 total-bytes-write=52 payload-bytes-read=4205758/5242880 (80.22%)
+2019-01-31 11:30:31 1548934231.475447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4209273 total-bytes-write=52 payload-bytes-read=4209244/5242880 (80.28%)
+2019-01-31 11:30:31 1548934231.475861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4209771 total-bytes-write=52 payload-bytes-read=4209742/5242880 (80.29%)
+2019-01-31 11:30:31 1548934231.476458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4213207 total-bytes-write=52 payload-bytes-read=4213178/5242880 (80.36%)
+2019-01-31 11:30:31 1548934231.497477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4216693 total-bytes-write=52 payload-bytes-read=4216664/5242880 (80.43%)
+2019-01-31 11:30:31 1548934231.497835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4217689 total-bytes-write=52 payload-bytes-read=4217660/5242880 (80.45%)
+2019-01-31 11:30:31 1548934231.523012 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4221175 total-bytes-write=52 payload-bytes-read=4221146/5242880 (80.51%)
+2019-01-31 11:30:31 1548934231.523766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4225159 total-bytes-write=52 payload-bytes-read=4225130/5242880 (80.59%)
+2019-01-31 11:30:31 1548934231.544309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4230089 total-bytes-write=52 payload-bytes-read=4230060/5242880 (80.68%)
+2019-01-31 11:30:31 1548934231.551703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4233575 total-bytes-write=52 payload-bytes-read=4233546/5242880 (80.75%)
+2019-01-31 11:30:31 1548934231.570980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4234571 total-bytes-write=52 payload-bytes-read=4234542/5242880 (80.77%)
+2019-01-31 11:30:31 1548934231.571855 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4238057 total-bytes-write=52 payload-bytes-read=4238028/5242880 (80.83%)
+2019-01-31 11:30:31 1548934231.580437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4242041 total-bytes-write=52 payload-bytes-read=4242012/5242880 (80.91%)
+2019-01-31 11:30:31 1548934231.591210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4243485 total-bytes-write=52 payload-bytes-read=4243456/5242880 (80.94%)
+2019-01-31 11:30:31 1548934231.598298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4245975 total-bytes-write=52 payload-bytes-read=4245946/5242880 (80.98%)
+2019-01-31 11:30:31 1548934231.622314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4249461 total-bytes-write=52 payload-bytes-read=4249432/5242880 (81.05%)
+2019-01-31 11:30:31 1548934231.627185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4253445 total-bytes-write=52 payload-bytes-read=4253416/5242880 (81.13%)
+2019-01-31 11:30:31 1548934231.638644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4257429 total-bytes-write=52 payload-bytes-read=4257400/5242880 (81.20%)
+2019-01-31 11:30:31 1548934231.680381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4266841 total-bytes-write=52 payload-bytes-read=4266812/5242880 (81.38%)
+2019-01-31 11:30:31 1548934231.724396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4276751 total-bytes-write=52 payload-bytes-read=4276722/5242880 (81.57%)
+2019-01-31 11:30:31 1548934231.768400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4288703 total-bytes-write=52 payload-bytes-read=4288674/5242880 (81.80%)
+2019-01-31 11:30:31 1548934231.812401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4296123 total-bytes-write=52 payload-bytes-read=4296094/5242880 (81.94%)
+2019-01-31 11:30:31 1548934231.813270 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4300107 total-bytes-write=52 payload-bytes-read=4300078/5242880 (82.02%)
+2019-01-31 11:30:31 1548934231.821396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4304589 total-bytes-write=52 payload-bytes-read=4304560/5242880 (82.10%)
+2019-01-31 11:30:31 1548934231.826413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4308075 total-bytes-write=52 payload-bytes-read=4308046/5242880 (82.17%)
+2019-01-31 11:30:31 1548934231.861259 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4310515 total-bytes-write=52 payload-bytes-read=4310486/5242880 (82.22%)
+2019-01-31 11:30:31 1548934231.863857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4314997 total-bytes-write=52 payload-bytes-read=4314968/5242880 (82.30%)
+2019-01-31 11:30:31 1548934231.868314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4316491 total-bytes-write=52 payload-bytes-read=4316462/5242880 (82.33%)
+2019-01-31 11:30:31 1548934231.872438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4319977 total-bytes-write=52 payload-bytes-read=4319948/5242880 (82.40%)
+2019-01-31 11:30:31 1548934231.908073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4323961 total-bytes-write=52 payload-bytes-read=4323932/5242880 (82.47%)
+2019-01-31 11:30:31 1548934231.908326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4325405 total-bytes-write=52 payload-bytes-read=4325376/5242880 (82.50%)
+2019-01-31 11:30:31 1548934231.910311 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4327895 total-bytes-write=52 payload-bytes-read=4327866/5242880 (82.55%)
+2019-01-31 11:30:31 1548934231.916663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4330385 total-bytes-write=52 payload-bytes-read=4330356/5242880 (82.59%)
+2019-01-31 11:30:31 1548934231.960388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4341341 total-bytes-write=52 payload-bytes-read=4341312/5242880 (82.80%)
+2019-01-31 11:30:32 1548934232.004386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4353243 total-bytes-write=52 payload-bytes-read=4353214/5242880 (83.03%)
+2019-01-31 11:30:32 1548934232.048430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4358671 total-bytes-write=52 payload-bytes-read=4358642/5242880 (83.13%)
+2019-01-31 11:30:32 1548934232.052917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4363153 total-bytes-write=52 payload-bytes-read=4363124/5242880 (83.22%)
+2019-01-31 11:30:32 1548934232.058995 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4366639 total-bytes-write=52 payload-bytes-read=4366610/5242880 (83.29%)
+2019-01-31 11:30:32 1548934232.060874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4370623 total-bytes-write=52 payload-bytes-read=4370594/5242880 (83.36%)
+2019-01-31 11:30:32 1548934232.099574 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4374557 total-bytes-write=52 payload-bytes-read=4374528/5242880 (83.44%)
+2019-01-31 11:30:32 1548934232.109438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4379039 total-bytes-write=52 payload-bytes-read=4379010/5242880 (83.52%)
+2019-01-31 11:30:32 1548934232.109525 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4381031 total-bytes-write=52 payload-bytes-read=4381002/5242880 (83.56%)
+2019-01-31 11:30:32 1548934232.110025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4385015 total-bytes-write=52 payload-bytes-read=4384986/5242880 (83.64%)
+2019-01-31 11:30:32 1548934232.148464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4388501 total-bytes-write=52 payload-bytes-read=4388472/5242880 (83.70%)
+2019-01-31 11:30:32 1548934232.156421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4392435 total-bytes-write=52 payload-bytes-read=4392406/5242880 (83.78%)
+2019-01-31 11:30:32 1548934232.158179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4396419 total-bytes-write=52 payload-bytes-read=4396390/5242880 (83.85%)
+2019-01-31 11:30:32 1548934232.195878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4400403 total-bytes-write=52 payload-bytes-read=4400374/5242880 (83.93%)
+2019-01-31 11:30:32 1548934232.236409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4411807 total-bytes-write=52 payload-bytes-read=4411778/5242880 (84.15%)
+2019-01-31 11:30:32 1548934232.280409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4425203 total-bytes-write=52 payload-bytes-read=4425174/5242880 (84.40%)
+2019-01-31 11:30:32 1548934232.324402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4436657 total-bytes-write=52 payload-bytes-read=4436628/5242880 (84.62%)
+2019-01-31 11:30:32 1548934232.341925 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4440093 total-bytes-write=52 payload-bytes-read=4440064/5242880 (84.69%)
+2019-01-31 11:30:32 1548934232.346638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4444077 total-bytes-write=52 payload-bytes-read=4444048/5242880 (84.76%)
+2019-01-31 11:30:32 1548934232.348003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4448061 total-bytes-write=52 payload-bytes-read=4448032/5242880 (84.84%)
+2019-01-31 11:30:32 1548934232.388393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4452543 total-bytes-write=52 payload-bytes-read=4452514/5242880 (84.92%)
+2019-01-31 11:30:32 1548934232.432391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4463449 total-bytes-write=52 payload-bytes-read=4463420/5242880 (85.13%)
+2019-01-31 11:30:32 1548934232.476410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4479335 total-bytes-write=52 payload-bytes-read=4479306/5242880 (85.44%)
+2019-01-31 11:30:32 1548934232.520405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4493229 total-bytes-write=52 payload-bytes-read=4493200/5242880 (85.70%)
+2019-01-31 11:30:32 1548934232.529933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4495719 total-bytes-write=52 payload-bytes-read=4495690/5242880 (85.75%)
+2019-01-31 11:30:32 1548934232.539401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4500201 total-bytes-write=52 payload-bytes-read=4500172/5242880 (85.83%)
+2019-01-31 11:30:32 1548934232.542459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4503687 total-bytes-write=52 payload-bytes-read=4503658/5242880 (85.90%)
+2019-01-31 11:30:32 1548934232.544637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4507621 total-bytes-write=52 payload-bytes-read=4507592/5242880 (85.98%)
+2019-01-31 11:30:32 1548934232.588628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4512601 total-bytes-write=52 payload-bytes-read=4512572/5242880 (86.07%)
+2019-01-31 11:30:32 1548934232.606784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4519573 total-bytes-write=52 payload-bytes-read=4519544/5242880 (86.20%)
+2019-01-31 11:30:32 1548934232.650983 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4529981 total-bytes-write=52 payload-bytes-read=4529952/5242880 (86.40%)
+2019-01-31 11:30:32 1548934232.659921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4533467 total-bytes-write=52 payload-bytes-read=4533438/5242880 (86.47%)
+2019-01-31 11:30:32 1548934232.699084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4536953 total-bytes-write=52 payload-bytes-read=4536924/5242880 (86.53%)
+2019-01-31 11:30:32 1548934232.740399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4548357 total-bytes-write=52 payload-bytes-read=4548328/5242880 (86.75%)
+2019-01-31 11:30:32 1548934232.784415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4563745 total-bytes-write=52 payload-bytes-read=4563716/5242880 (87.05%)
+2019-01-31 11:30:32 1548934232.828394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4579631 total-bytes-write=52 payload-bytes-read=4579602/5242880 (87.35%)
+2019-01-31 11:30:32 1548934232.872396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4593525 total-bytes-write=52 payload-bytes-read=4593496/5242880 (87.61%)
+2019-01-31 11:30:32 1548934232.911020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4597509 total-bytes-write=52 payload-bytes-read=4597480/5242880 (87.69%)
+2019-01-31 11:30:32 1548934232.912605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4599999 total-bytes-write=52 payload-bytes-read=4599970/5242880 (87.74%)
+2019-01-31 11:30:32 1548934232.912883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4601493 total-bytes-write=52 payload-bytes-read=4601464/5242880 (87.77%)
+2019-01-31 11:30:32 1548934232.915082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4604929 total-bytes-write=52 payload-bytes-read=4604900/5242880 (87.83%)
+2019-01-31 11:30:32 1548934232.915705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4608415 total-bytes-write=52 payload-bytes-read=4608386/5242880 (87.90%)
+2019-01-31 11:30:32 1548934232.916570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4609411 total-bytes-write=52 payload-bytes-read=4609382/5242880 (87.92%)
+2019-01-31 11:30:32 1548934232.960728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4612897 total-bytes-write=52 payload-bytes-read=4612868/5242880 (87.98%)
+2019-01-31 11:30:32 1548934232.965906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4617877 total-bytes-write=52 payload-bytes-read=4617848/5242880 (88.08%)
+2019-01-31 11:30:32 1548934232.966043 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4621811 total-bytes-write=52 payload-bytes-read=4621782/5242880 (88.15%)
+2019-01-31 11:30:33 1548934233.007435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4625795 total-bytes-write=52 payload-bytes-read=4625766/5242880 (88.23%)
+2019-01-31 11:30:33 1548934233.008113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4628285 total-bytes-write=52 payload-bytes-read=4628256/5242880 (88.28%)
+2019-01-31 11:30:33 1548934233.013017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4631771 total-bytes-write=52 payload-bytes-read=4631742/5242880 (88.34%)
+2019-01-31 11:30:33 1548934233.013472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4635755 total-bytes-write=52 payload-bytes-read=4635726/5242880 (88.42%)
+2019-01-31 11:30:33 1548934233.014846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4639689 total-bytes-write=52 payload-bytes-read=4639660/5242880 (88.49%)
+2019-01-31 11:30:33 1548934233.055272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4643673 total-bytes-write=52 payload-bytes-read=4643644/5242880 (88.57%)
+2019-01-31 11:30:33 1548934233.061138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4647159 total-bytes-write=52 payload-bytes-read=4647130/5242880 (88.64%)
+2019-01-31 11:30:33 1548934233.068137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4654081 total-bytes-write=52 payload-bytes-read=4654052/5242880 (88.77%)
+2019-01-31 11:30:33 1548934233.068909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4656571 total-bytes-write=52 payload-bytes-read=4656542/5242880 (88.82%)
+2019-01-31 11:30:33 1548934233.101846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4660057 total-bytes-write=52 payload-bytes-read=4660028/5242880 (88.88%)
+2019-01-31 11:30:33 1548934233.107588 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4663543 total-bytes-write=52 payload-bytes-read=4663514/5242880 (88.95%)
+2019-01-31 11:30:33 1548934233.148385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4673453 total-bytes-write=52 payload-bytes-read=4673424/5242880 (89.14%)
+2019-01-31 11:30:33 1548934233.192418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4689837 total-bytes-write=52 payload-bytes-read=4689808/5242880 (89.45%)
+2019-01-31 11:30:33 1548934233.236413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4707715 total-bytes-write=52 payload-bytes-read=4707686/5242880 (89.79%)
+2019-01-31 11:30:33 1548934233.280418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4722605 total-bytes-write=52 payload-bytes-read=4722576/5242880 (90.08%)
+2019-01-31 11:30:33 1548934233.297195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4727087 total-bytes-write=52 payload-bytes-read=4727058/5242880 (90.16%)
+2019-01-31 11:30:33 1548934233.297287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4730573 total-bytes-write=52 payload-bytes-read=4730544/5242880 (90.23%)
+2019-01-31 11:30:33 1548934233.312165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4738989 total-bytes-write=52 payload-bytes-read=4738960/5242880 (90.39%)
+2019-01-31 11:30:33 1548934233.344734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4742475 total-bytes-write=52 payload-bytes-read=4742446/5242880 (90.45%)
+2019-01-31 11:30:33 1548934233.345594 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4746459 total-bytes-write=52 payload-bytes-read=4746430/5242880 (90.53%)
+2019-01-31 11:30:33 1548934233.348212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4750443 total-bytes-write=52 payload-bytes-read=4750414/5242880 (90.61%)
+2019-01-31 11:30:33 1548934233.388461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4759855 total-bytes-write=52 payload-bytes-read=4759826/5242880 (90.79%)
+2019-01-31 11:30:33 1548934233.432404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4778231 total-bytes-write=52 payload-bytes-read=4778202/5242880 (91.14%)
+2019-01-31 11:30:33 1548934233.476387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4790631 total-bytes-write=52 payload-bytes-read=4790602/5242880 (91.37%)
+2019-01-31 11:30:33 1548934233.476478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4794615 total-bytes-write=52 payload-bytes-read=4794586/5242880 (91.45%)
+2019-01-31 11:30:33 1548934233.505406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4798599 total-bytes-write=52 payload-bytes-read=4798570/5242880 (91.53%)
+2019-01-31 11:30:33 1548934233.548406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4815481 total-bytes-write=52 payload-bytes-read=4815452/5242880 (91.85%)
+2019-01-31 11:30:33 1548934233.592423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4836297 total-bytes-write=52 payload-bytes-read=4836268/5242880 (92.24%)
+2019-01-31 11:30:33 1548934233.636397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4854673 total-bytes-write=52 payload-bytes-read=4854644/5242880 (92.59%)
+2019-01-31 11:30:33 1548934233.650269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4859155 total-bytes-write=52 payload-bytes-read=4859126/5242880 (92.68%)
+2019-01-31 11:30:33 1548934233.650478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4861147 total-bytes-write=52 payload-bytes-read=4861118/5242880 (92.72%)
+2019-01-31 11:30:33 1548934233.658451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4864633 total-bytes-write=52 payload-bytes-read=4864604/5242880 (92.78%)
+2019-01-31 11:30:33 1548934233.670271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4868069 total-bytes-write=52 payload-bytes-read=4868040/5242880 (92.85%)
+2019-01-31 11:30:33 1548934233.671069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4869563 total-bytes-write=52 payload-bytes-read=4869534/5242880 (92.88%)
+2019-01-31 11:30:33 1548934233.680854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4873049 total-bytes-write=52 payload-bytes-read=4873020/5242880 (92.95%)
+2019-01-31 11:30:33 1548934233.700343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4877033 total-bytes-write=52 payload-bytes-read=4877004/5242880 (93.02%)
+2019-01-31 11:30:33 1548934233.747569 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4880519 total-bytes-write=52 payload-bytes-read=4880490/5242880 (93.09%)
+2019-01-31 11:30:33 1548934233.756824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4881515 total-bytes-write=52 payload-bytes-read=4881486/5242880 (93.11%)
+2019-01-31 11:30:33 1548934233.757453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4884951 total-bytes-write=52 payload-bytes-read=4884922/5242880 (93.17%)
+2019-01-31 11:30:33 1548934233.758629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4888935 total-bytes-write=52 payload-bytes-read=4888906/5242880 (93.25%)
+2019-01-31 11:30:33 1548934233.759841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4892919 total-bytes-write=52 payload-bytes-read=4892890/5242880 (93.32%)
+2019-01-31 11:30:33 1548934233.800416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4900837 total-bytes-write=52 payload-bytes-read=4900808/5242880 (93.48%)
+2019-01-31 11:30:33 1548934233.844443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4923197 total-bytes-write=52 payload-bytes-read=4923168/5242880 (93.90%)
+2019-01-31 11:30:33 1548934233.888431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4938585 total-bytes-write=52 payload-bytes-read=4938556/5242880 (94.20%)
+2019-01-31 11:30:33 1548934233.889222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4939083 total-bytes-write=52 payload-bytes-read=4939054/5242880 (94.20%)
+2019-01-31 11:30:33 1548934233.890347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4942569 total-bytes-write=52 payload-bytes-read=4942540/5242880 (94.27%)
+2019-01-31 11:30:33 1548934233.899690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4946553 total-bytes-write=52 payload-bytes-read=4946524/5242880 (94.35%)
+2019-01-31 11:30:33 1548934233.903009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4950487 total-bytes-write=52 payload-bytes-read=4950458/5242880 (94.42%)
+2019-01-31 11:30:33 1548934233.904002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4954471 total-bytes-write=52 payload-bytes-read=4954442/5242880 (94.50%)
+2019-01-31 11:30:33 1548934233.904684 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4954969 total-bytes-write=52 payload-bytes-read=4954940/5242880 (94.51%)
+2019-01-31 11:30:33 1548934233.905755 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4957957 total-bytes-write=52 payload-bytes-read=4957928/5242880 (94.56%)
+2019-01-31 11:30:33 1548934233.906017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4959451 total-bytes-write=52 payload-bytes-read=4959422/5242880 (94.59%)
+2019-01-31 11:30:33 1548934233.938285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4962937 total-bytes-write=52 payload-bytes-read=4962908/5242880 (94.66%)
+2019-01-31 11:30:33 1548934233.939316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4964381 total-bytes-write=52 payload-bytes-read=4964352/5242880 (94.69%)
+2019-01-31 11:30:33 1548934233.951487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4967867 total-bytes-write=52 payload-bytes-read=4967838/5242880 (94.75%)
+2019-01-31 11:30:33 1548934233.955456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4971353 total-bytes-write=52 payload-bytes-read=4971324/5242880 (94.82%)
+2019-01-31 11:30:33 1548934233.996361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4971851 total-bytes-write=52 payload-bytes-read=4971822/5242880 (94.83%)
+2019-01-31 11:30:34 1548934234.069768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4975337 total-bytes-write=52 payload-bytes-read=4975308/5242880 (94.90%)
+2019-01-31 11:30:34 1548934234.120617 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4978823 total-bytes-write=52 payload-bytes-read=4978794/5242880 (94.96%)
+2019-01-31 11:30:34 1548934234.164383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4982259 total-bytes-write=52 payload-bytes-read=4982230/5242880 (95.03%)
+2019-01-31 11:30:34 1548934234.252469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4983255 total-bytes-write=52 payload-bytes-read=4983226/5242880 (95.05%)
+2019-01-31 11:30:34 1548934234.256685 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4986741 total-bytes-write=52 payload-bytes-read=4986712/5242880 (95.11%)
+2019-01-31 11:30:34 1548934234.300404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5006611 total-bytes-write=52 payload-bytes-read=5006582/5242880 (95.49%)
+2019-01-31 11:30:34 1548934234.344422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5029917 total-bytes-write=52 payload-bytes-read=5029888/5242880 (95.94%)
+2019-01-31 11:30:34 1548934234.388453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5057257 total-bytes-write=52 payload-bytes-read=5057228/5242880 (96.46%)
+2019-01-31 11:30:34 1548934234.432439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5083551 total-bytes-write=52 payload-bytes-read=5083522/5242880 (96.96%)
+2019-01-31 11:30:34 1548934234.447135 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5087535 total-bytes-write=52 payload-bytes-read=5087506/5242880 (97.04%)
+2019-01-31 11:30:34 1548934234.448326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5088033 total-bytes-write=52 payload-bytes-read=5088004/5242880 (97.05%)
+2019-01-31 11:30:34 1548934234.448758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5089527 total-bytes-write=52 payload-bytes-read=5089498/5242880 (97.07%)
+2019-01-31 11:30:34 1548934234.463055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5096947 total-bytes-write=52 payload-bytes-read=5096918/5242880 (97.22%)
+2019-01-31 11:30:34 1548934234.463141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5100931 total-bytes-write=52 payload-bytes-read=5100902/5242880 (97.29%)
+2019-01-31 11:30:34 1548934234.467004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5105413 total-bytes-write=52 payload-bytes-read=5105384/5242880 (97.38%)
+2019-01-31 11:30:34 1548934234.467099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5109895 total-bytes-write=52 payload-bytes-read=5109866/5242880 (97.46%)
+2019-01-31 11:30:34 1548934234.467185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5113331 total-bytes-write=52 payload-bytes-read=5113302/5242880 (97.53%)
+2019-01-31 11:30:34 1548934234.496812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5116817 total-bytes-write=52 payload-bytes-read=5116788/5242880 (97.59%)
+2019-01-31 11:30:34 1548934234.510170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5120303 total-bytes-write=52 payload-bytes-read=5120274/5242880 (97.66%)
+2019-01-31 11:30:34 1548934234.552433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5146099 total-bytes-write=52 payload-bytes-read=5146070/5242880 (98.15%)
+2019-01-31 11:30:34 1548934234.596430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5175929 total-bytes-write=52 payload-bytes-read=5175900/5242880 (98.72%)
+2019-01-31 11:30:34 1548934234.640435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5205211 total-bytes-write=52 payload-bytes-read=5205182/5242880 (99.28%)
+2019-01-31 11:30:34 1548934234.654848 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5207701 total-bytes-write=52 payload-bytes-read=5207672/5242880 (99.33%)
+2019-01-31 11:30:34 1548934234.655602 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5211137 total-bytes-write=52 payload-bytes-read=5211108/5242880 (99.39%)
+2019-01-31 11:30:34 1548934234.666725 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5212631 total-bytes-write=52 payload-bytes-read=5212602/5242880 (99.42%)
+2019-01-31 11:30:34 1548934234.757148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5216117 total-bytes-write=52 payload-bytes-read=5216088/5242880 (99.49%)
+2019-01-31 11:30:34 1548934234.762105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5219603 total-bytes-write=52 payload-bytes-read=5219574/5242880 (99.56%)
+2019-01-31 11:30:34 1548934234.804397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5231007 total-bytes-write=52 payload-bytes-read=5230978/5242880 (99.77%)
+2019-01-31 11:30:34 1548934234.848415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5233995 total-bytes-write=52 payload-bytes-read=5233966/5242880 (99.83%)
+2019-01-31 11:30:35 1548934235.187957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5237481 total-bytes-write=52 payload-bytes-read=5237452/5242880 (99.90%)
+2019-01-31 11:30:35 1548934235.355746 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5240967 total-bytes-write=52 payload-bytes-read=5240938/5242880 (99.96%)
+2019-01-31 11:30:35 1548934235.394054 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:30:35 1548934235.394251 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:30:35 1548934235.394321 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=SUCCESS,error=NONE MD5 checksums passed: computed=fbc7364eca413dc6ffdf4a8e3b58337b received=fbc7364eca413dc6ffdf4a8e3b58337b
+2019-01-31 11:30:35 1548934235.394420 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=13 usecs-to-socket-connect=284 usecs-to-proxy-init=367 usecs-to-proxy-choice=467 usecs-to-proxy-request=541 usecs-to-proxy-response=-1 usecs-to-command=3219279 usecs-to-response=3624489 usecs-to-first-byte=3722948 usecs-to-last-byte=21754394 usecs-to-checksum=21754565
+2019-01-31 11:30:35 1548934235.394528 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:30:35 1548934235.394574 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 12
+2019-01-31 11:30:35 1548934235.394677 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:30:35 1548934235.394749 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:30:35 1548934235.395039 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:30:35 1548934235.395139 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:30:35 1548934235.968872 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:30:35 1548934235.968972 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:30:35 1548934235.969047 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36418 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:30:35 1548934235.969106 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:30:35 1548934235.969238 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,3,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:30:36 1548934236.599603 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:30:36 1548934236.599667 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:30:36 1548934236.640360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:30:36 1548934236.703137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=7001 total-bytes-write=52 payload-bytes-read=6972/5242880 (0.13%)
+2019-01-31 11:30:36 1548934236.703393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=7499 total-bytes-write=52 payload-bytes-read=7470/5242880 (0.14%)
+2019-01-31 11:30:36 1548934236.712483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=10985 total-bytes-write=52 payload-bytes-read=10956/5242880 (0.21%)
+2019-01-31 11:30:36 1548934236.785499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=14471 total-bytes-write=52 payload-bytes-read=14442/5242880 (0.28%)
+2019-01-31 11:30:36 1548934236.786228 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=18405 total-bytes-write=52 payload-bytes-read=18376/5242880 (0.35%)
+2019-01-31 11:30:36 1548934236.796441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=18903 total-bytes-write=52 payload-bytes-read=18874/5242880 (0.36%)
+2019-01-31 11:30:36 1548934236.798365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:30:36 1548934236.868394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=26373 total-bytes-write=52 payload-bytes-read=26344/5242880 (0.50%)
+2019-01-31 11:30:36 1548934236.870527 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=31851 total-bytes-write=52 payload-bytes-read=31822/5242880 (0.61%)
+2019-01-31 11:30:36 1548934236.870614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=34291 total-bytes-write=52 payload-bytes-read=34262/5242880 (0.65%)
+2019-01-31 11:30:36 1548934236.872358 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=37777 total-bytes-write=52 payload-bytes-read=37748/5242880 (0.72%)
+2019-01-31 11:30:36 1548934236.880317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=42259 total-bytes-write=52 payload-bytes-read=42230/5242880 (0.81%)
+2019-01-31 11:30:36 1548934236.881374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=45745 total-bytes-write=52 payload-bytes-read=45716/5242880 (0.87%)
+2019-01-31 11:30:36 1548934236.882576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=49679 total-bytes-write=52 payload-bytes-read=49650/5242880 (0.95%)
+2019-01-31 11:30:36 1548934236.924803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=53663 total-bytes-write=52 payload-bytes-read=53634/5242880 (1.02%)
+2019-01-31 11:30:36 1548934236.953091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=57647 total-bytes-write=52 payload-bytes-read=57618/5242880 (1.10%)
+2019-01-31 11:30:36 1548934236.953235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=58145 total-bytes-write=52 payload-bytes-read=58116/5242880 (1.11%)
+2019-01-31 11:30:36 1548934236.954560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=61631 total-bytes-write=52 payload-bytes-read=61602/5242880 (1.17%)
+2019-01-31 11:30:36 1548934236.955085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=64619 total-bytes-write=52 payload-bytes-read=64590/5242880 (1.23%)
+2019-01-31 11:30:36 1548934236.956798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=68055 total-bytes-write=52 payload-bytes-read=68026/5242880 (1.30%)
+2019-01-31 11:30:36 1548934236.959342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=72103 total-bytes-write=52 payload-bytes-read=72074/5242880 (1.37%)
+2019-01-31 11:30:37 1548934237.000505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=98333 total-bytes-write=52 payload-bytes-read=98304/5242880 (1.88%)
+2019-01-31 11:30:37 1548934237.044501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=142555 total-bytes-write=52 payload-bytes-read=142526/5242880 (2.72%)
+2019-01-31 11:30:37 1548934237.088472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=192703 total-bytes-write=52 payload-bytes-read=192674/5242880 (3.67%)
+2019-01-31 11:30:37 1548934237.090700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=196637 total-bytes-write=52 payload-bytes-read=196608/5242880 (3.75%)
+2019-01-31 11:30:37 1548934237.091483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=200621 total-bytes-write=52 payload-bytes-read=200592/5242880 (3.83%)
+2019-01-31 11:30:37 1548934237.117906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=205103 total-bytes-write=52 payload-bytes-read=205074/5242880 (3.91%)
+2019-01-31 11:30:37 1548934237.117971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=206099 total-bytes-write=52 payload-bytes-read=206070/5242880 (3.93%)
+2019-01-31 11:30:37 1548934237.119374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=213519 total-bytes-write=52 payload-bytes-read=213490/5242880 (4.07%)
+2019-01-31 11:30:37 1548934237.119627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=217503 total-bytes-write=52 payload-bytes-read=217474/5242880 (4.15%)
+2019-01-31 11:30:37 1548934237.122952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=221487 total-bytes-write=52 payload-bytes-read=221458/5242880 (4.22%)
+2019-01-31 11:30:37 1548934237.164443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:30:37 1548934237.817439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:30:37 1548934237.900003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=254753 total-bytes-write=52 payload-bytes-read=254724/5242880 (4.86%)
+2019-01-31 11:30:37 1548934237.981541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=258737 total-bytes-write=52 payload-bytes-read=258708/5242880 (4.93%)
+2019-01-31 11:30:37 1548934237.984547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=266655 total-bytes-write=52 payload-bytes-read=266626/5242880 (5.09%)
+2019-01-31 11:30:37 1548934237.984686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:30:38 1548934238.065403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=274623 total-bytes-write=52 payload-bytes-read=274594/5242880 (5.24%)
+2019-01-31 11:30:38 1548934238.066162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=278557 total-bytes-write=52 payload-bytes-read=278528/5242880 (5.31%)
+2019-01-31 11:30:38 1548934238.067478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=282043 total-bytes-write=52 payload-bytes-read=282014/5242880 (5.38%)
+2019-01-31 11:30:38 1548934238.069364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=290011 total-bytes-write=52 payload-bytes-read=289982/5242880 (5.53%)
+2019-01-31 11:30:38 1548934238.069828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=294493 total-bytes-write=52 payload-bytes-read=294464/5242880 (5.62%)
+2019-01-31 11:30:38 1548934238.149516 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=301913 total-bytes-write=52 payload-bytes-read=301884/5242880 (5.76%)
+2019-01-31 11:30:38 1548934238.149650 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=305897 total-bytes-write=52 payload-bytes-read=305868/5242880 (5.83%)
+2019-01-31 11:30:38 1548934238.151304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=309945 total-bytes-write=52 payload-bytes-read=309916/5242880 (5.91%)
+2019-01-31 11:30:38 1548934238.192456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=343645 total-bytes-write=52 payload-bytes-read=343616/5242880 (6.55%)
+2019-01-31 11:30:38 1548934238.236468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=359531 total-bytes-write=52 payload-bytes-read=359502/5242880 (6.86%)
+2019-01-31 11:30:38 1548934238.236723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=365457 total-bytes-write=52 payload-bytes-read=365428/5242880 (6.97%)
+2019-01-31 11:30:38 1548934238.238456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=372927 total-bytes-write=52 payload-bytes-read=372898/5242880 (7.11%)
+2019-01-31 11:30:38 1548934238.241015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=376861 total-bytes-write=52 payload-bytes-read=376832/5242880 (7.19%)
+2019-01-31 11:30:38 1548934238.246977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=381343 total-bytes-write=52 payload-bytes-read=381314/5242880 (7.27%)
+2019-01-31 11:30:38 1548934238.247102 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=384829 total-bytes-write=52 payload-bytes-read=384800/5242880 (7.34%)
+2019-01-31 11:30:38 1548934238.262660 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=392797 total-bytes-write=52 payload-bytes-read=392768/5242880 (7.49%)
+2019-01-31 11:30:38 1548934238.262766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=397229 total-bytes-write=52 payload-bytes-read=397200/5242880 (7.58%)
+2019-01-31 11:30:38 1548934238.263005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=405197 total-bytes-write=52 payload-bytes-read=405168/5242880 (7.73%)
+2019-01-31 11:30:38 1548934238.263118 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=409181 total-bytes-write=52 payload-bytes-read=409152/5242880 (7.80%)
+2019-01-31 11:30:38 1548934238.263282 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=413115 total-bytes-write=52 payload-bytes-read=413086/5242880 (7.88%)
+2019-01-31 11:30:38 1548934238.264591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=420585 total-bytes-write=52 payload-bytes-read=420556/5242880 (8.02%)
+2019-01-31 11:30:38 1548934238.264723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=424569 total-bytes-write=52 payload-bytes-read=424540/5242880 (8.10%)
+2019-01-31 11:30:38 1548934238.265001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=432487 total-bytes-write=52 payload-bytes-read=432458/5242880 (8.25%)
+2019-01-31 11:30:38 1548934238.265201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=436471 total-bytes-write=52 payload-bytes-read=436442/5242880 (8.32%)
+2019-01-31 11:30:38 1548934238.317460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=444389 total-bytes-write=52 payload-bytes-read=444360/5242880 (8.48%)
+2019-01-31 11:30:38 1548934238.319997 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=452357 total-bytes-write=52 payload-bytes-read=452328/5242880 (8.63%)
+2019-01-31 11:30:38 1548934238.320080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=455843 total-bytes-write=52 payload-bytes-read=455814/5242880 (8.69%)
+2019-01-31 11:30:38 1548934238.320675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=459777 total-bytes-write=52 payload-bytes-read=459748/5242880 (8.77%)
+2019-01-31 11:30:38 1548934238.321448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=463761 total-bytes-write=52 payload-bytes-read=463732/5242880 (8.84%)
+2019-01-31 11:30:38 1548934238.322918 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=467745 total-bytes-write=52 payload-bytes-read=467716/5242880 (8.92%)
+2019-01-31 11:30:38 1548934238.364433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=496031 total-bytes-write=52 payload-bytes-read=496002/5242880 (9.46%)
+2019-01-31 11:30:38 1548934238.700694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=499517 total-bytes-write=52 payload-bytes-read=499488/5242880 (9.53%)
+2019-01-31 11:30:38 1548934238.702976 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=503003 total-bytes-write=52 payload-bytes-read=502974/5242880 (9.59%)
+2019-01-31 11:30:38 1548934238.709368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=510423 total-bytes-write=52 payload-bytes-read=510394/5242880 (9.73%)
+2019-01-31 11:30:38 1548934238.710342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=518391 total-bytes-write=52 payload-bytes-read=518362/5242880 (9.89%)
+2019-01-31 11:30:38 1548934238.720670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=518889 total-bytes-write=52 payload-bytes-read=518860/5242880 (9.90%)
+2019-01-31 11:30:38 1548934238.723520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=522375 total-bytes-write=52 payload-bytes-read=522346/5242880 (9.96%)
+2019-01-31 11:30:38 1548934238.726818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=530293 total-bytes-write=52 payload-bytes-read=530264/5242880 (10.11%)
+2019-01-31 11:30:38 1548934238.726923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=533779 total-bytes-write=52 payload-bytes-read=533750/5242880 (10.18%)
+2019-01-31 11:30:38 1548934238.777805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=534775 total-bytes-write=52 payload-bytes-read=534746/5242880 (10.20%)
+2019-01-31 11:30:38 1548934238.778892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=541199 total-bytes-write=52 payload-bytes-read=541170/5242880 (10.32%)
+2019-01-31 11:30:38 1548934238.826281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=544685 total-bytes-write=52 payload-bytes-read=544656/5242880 (10.39%)
+2019-01-31 11:30:38 1548934238.831592 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=552653 total-bytes-write=52 payload-bytes-read=552624/5242880 (10.54%)
+2019-01-31 11:30:38 1548934238.831697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=556637 total-bytes-write=52 payload-bytes-read=556608/5242880 (10.62%)
+2019-01-31 11:30:38 1548934238.851132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=560073 total-bytes-write=52 payload-bytes-read=560044/5242880 (10.68%)
+2019-01-31 11:30:38 1548934238.862356 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=561069 total-bytes-write=52 payload-bytes-read=561040/5242880 (10.70%)
+2019-01-31 11:30:38 1548934238.865755 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=565117 total-bytes-write=52 payload-bytes-read=565088/5242880 (10.78%)
+2019-01-31 11:30:38 1548934238.908468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=607731 total-bytes-write=52 payload-bytes-read=607702/5242880 (11.59%)
+2019-01-31 11:30:38 1548934238.956463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=652451 total-bytes-write=52 payload-bytes-read=652422/5242880 (12.44%)
+2019-01-31 11:30:39 1548934239.004452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=690647 total-bytes-write=52 payload-bytes-read=690618/5242880 (13.17%)
+2019-01-31 11:30:39 1548934239.026017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=691145 total-bytes-write=52 payload-bytes-read=691116/5242880 (13.18%)
+2019-01-31 11:30:39 1548934239.026427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=694133 total-bytes-write=52 payload-bytes-read=694104/5242880 (13.24%)
+2019-01-31 11:30:39 1548934239.048800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=697619 total-bytes-write=52 payload-bytes-read=697590/5242880 (13.31%)
+2019-01-31 11:30:39 1548934239.049439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=701603 total-bytes-write=52 payload-bytes-read=701574/5242880 (13.38%)
+2019-01-31 11:30:39 1548934239.051058 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=709521 total-bytes-write=52 payload-bytes-read=709492/5242880 (13.53%)
+2019-01-31 11:30:39 1548934239.051751 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=713505 total-bytes-write=52 payload-bytes-read=713476/5242880 (13.61%)
+2019-01-31 11:30:39 1548934239.059706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=714003 total-bytes-write=52 payload-bytes-read=713974/5242880 (13.62%)
+2019-01-31 11:30:39 1548934239.060363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=717489 total-bytes-write=52 payload-bytes-read=717460/5242880 (13.68%)
+2019-01-31 11:30:39 1548934239.062065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=721423 total-bytes-write=52 payload-bytes-read=721394/5242880 (13.76%)
+2019-01-31 11:30:39 1548934239.062269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=725407 total-bytes-write=52 payload-bytes-read=725378/5242880 (13.84%)
+2019-01-31 11:30:39 1548934239.063254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=729391 total-bytes-write=52 payload-bytes-read=729362/5242880 (13.91%)
+2019-01-31 11:30:39 1548934239.104411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=741791 total-bytes-write=52 payload-bytes-read=741762/5242880 (14.15%)
+2019-01-31 11:30:39 1548934239.152646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=743783 total-bytes-write=52 payload-bytes-read=743754/5242880 (14.19%)
+2019-01-31 11:30:39 1548934239.287297 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=744281 total-bytes-write=52 payload-bytes-read=744252/5242880 (14.20%)
+2019-01-31 11:30:39 1548934239.430824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=747767 total-bytes-write=52 payload-bytes-read=747738/5242880 (14.26%)
+2019-01-31 11:30:39 1548934239.442725 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=751253 total-bytes-write=52 payload-bytes-read=751224/5242880 (14.33%)
+2019-01-31 11:30:39 1548934239.484449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=786013 total-bytes-write=52 payload-bytes-read=785984/5242880 (14.99%)
+2019-01-31 11:30:39 1548934239.528438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=808323 total-bytes-write=52 payload-bytes-read=808294/5242880 (15.42%)
+2019-01-31 11:30:39 1548934239.536632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=811809 total-bytes-write=52 payload-bytes-read=811780/5242880 (15.48%)
+2019-01-31 11:30:39 1548934239.538693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=819727 total-bytes-write=52 payload-bytes-read=819698/5242880 (15.63%)
+2019-01-31 11:30:39 1548934239.538774 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=823711 total-bytes-write=52 payload-bytes-read=823682/5242880 (15.71%)
+2019-01-31 11:30:39 1548934239.538922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=824209 total-bytes-write=52 payload-bytes-read=824180/5242880 (15.72%)
+2019-01-31 11:30:39 1548934239.539657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=827695 total-bytes-write=52 payload-bytes-read=827666/5242880 (15.79%)
+2019-01-31 11:30:39 1548934239.548410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=828691 total-bytes-write=52 payload-bytes-read=828662/5242880 (15.81%)
+2019-01-31 11:30:39 1548934239.549466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=832177 total-bytes-write=52 payload-bytes-read=832148/5242880 (15.87%)
+2019-01-31 11:30:39 1548934239.561519 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=832675 total-bytes-write=52 payload-bytes-read=832646/5242880 (15.88%)
+2019-01-31 11:30:39 1548934239.561644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=836111 total-bytes-write=52 payload-bytes-read=836082/5242880 (15.95%)
+2019-01-31 11:30:39 1548934239.608412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=836609 total-bytes-write=52 payload-bytes-read=836580/5242880 (15.96%)
+2019-01-31 11:30:39 1548934239.609156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=840095 total-bytes-write=52 payload-bytes-read=840066/5242880 (16.02%)
+2019-01-31 11:30:39 1548934239.610861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=844079 total-bytes-write=52 payload-bytes-read=844050/5242880 (16.10%)
+2019-01-31 11:30:39 1548934239.612528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=851997 total-bytes-write=52 payload-bytes-read=851968/5242880 (16.25%)
+2019-01-31 11:30:39 1548934239.612634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=855981 total-bytes-write=52 payload-bytes-read=855952/5242880 (16.33%)
+2019-01-31 11:30:39 1548934239.615680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=863949 total-bytes-write=52 payload-bytes-read=863920/5242880 (16.48%)
+2019-01-31 11:30:39 1548934239.615775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=867933 total-bytes-write=52 payload-bytes-read=867904/5242880 (16.55%)
+2019-01-31 11:30:39 1548934239.621429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=868381 total-bytes-write=52 payload-bytes-read=868352/5242880 (16.56%)
+2019-01-31 11:30:39 1548934239.621963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=871867 total-bytes-write=52 payload-bytes-read=871838/5242880 (16.63%)
+2019-01-31 11:30:39 1548934239.623174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=879835 total-bytes-write=52 payload-bytes-read=879806/5242880 (16.78%)
+2019-01-31 11:30:39 1548934239.624193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=883819 total-bytes-write=52 payload-bytes-read=883790/5242880 (16.86%)
+2019-01-31 11:30:39 1548934239.625227 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=887753 total-bytes-write=52 payload-bytes-read=887724/5242880 (16.93%)
+2019-01-31 11:30:39 1548934239.625429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=895721 total-bytes-write=52 payload-bytes-read=895692/5242880 (17.08%)
+2019-01-31 11:30:39 1548934239.625787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=898211 total-bytes-write=52 payload-bytes-read=898182/5242880 (17.13%)
+2019-01-31 11:30:39 1548934239.632207 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=901647 total-bytes-write=52 payload-bytes-read=901618/5242880 (17.20%)
+2019-01-31 11:30:39 1548934239.643760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=902643 total-bytes-write=52 payload-bytes-read=902614/5242880 (17.22%)
+2019-01-31 11:30:39 1548934239.644298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=906129 total-bytes-write=52 payload-bytes-read=906100/5242880 (17.28%)
+2019-01-31 11:30:39 1548934239.645059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=910113 total-bytes-write=52 payload-bytes-read=910084/5242880 (17.36%)
+2019-01-31 11:30:39 1548934239.646092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=918031 total-bytes-write=52 payload-bytes-read=918002/5242880 (17.51%)
+2019-01-31 11:30:39 1548934239.665962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=919027 total-bytes-write=52 payload-bytes-read=918998/5242880 (17.53%)
+2019-01-31 11:30:39 1548934239.668829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=923011 total-bytes-write=52 payload-bytes-read=922982/5242880 (17.60%)
+2019-01-31 11:30:39 1548934239.668931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=926995 total-bytes-write=52 payload-bytes-read=926966/5242880 (17.68%)
+2019-01-31 11:30:39 1548934239.712380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=936905 total-bytes-write=52 payload-bytes-read=936876/5242880 (17.87%)
+2019-01-31 11:30:39 1548934239.756427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=940391 total-bytes-write=52 payload-bytes-read=940362/5242880 (17.94%)
+2019-01-31 11:30:39 1548934239.769179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=942881 total-bytes-write=52 payload-bytes-read=942852/5242880 (17.98%)
+2019-01-31 11:30:39 1548934239.843621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=946367 total-bytes-write=52 payload-bytes-read=946338/5242880 (18.05%)
+2019-01-31 11:30:39 1548934239.854221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=949853 total-bytes-write=52 payload-bytes-read=949824/5242880 (18.12%)
+2019-01-31 11:30:39 1548934239.896391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=960759 total-bytes-write=52 payload-bytes-read=960730/5242880 (18.32%)
+2019-01-31 11:30:39 1548934239.940394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=965739 total-bytes-write=52 payload-bytes-read=965710/5242880 (18.42%)
+2019-01-31 11:30:39 1548934239.957646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=969175 total-bytes-write=52 payload-bytes-read=969146/5242880 (18.48%)
+2019-01-31 11:30:39 1548934239.960105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=975649 total-bytes-write=52 payload-bytes-read=975620/5242880 (18.61%)
+2019-01-31 11:30:39 1548934239.996226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=982123 total-bytes-write=52 payload-bytes-read=982094/5242880 (18.73%)
+2019-01-31 11:30:40 1548934240.036332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=985559 total-bytes-write=52 payload-bytes-read=985530/5242880 (18.80%)
+2019-01-31 11:30:40 1548934240.046233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=989543 total-bytes-write=52 payload-bytes-read=989514/5242880 (18.87%)
+2019-01-31 11:30:40 1548934240.129916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=990539 total-bytes-write=52 payload-bytes-read=990510/5242880 (18.89%)
+2019-01-31 11:30:40 1548934240.153618 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=992531 total-bytes-write=52 payload-bytes-read=992502/5242880 (18.93%)
+2019-01-31 11:30:40 1548934240.250065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=996017 total-bytes-write=52 payload-bytes-read=995988/5242880 (19.00%)
+2019-01-31 11:30:40 1548934240.250861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=999951 total-bytes-write=52 payload-bytes-read=999922/5242880 (19.07%)
+2019-01-31 11:30:40 1548934240.251208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1003437 total-bytes-write=52 payload-bytes-read=1003408/5242880 (19.14%)
+2019-01-31 11:30:40 1548934240.265582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1010907 total-bytes-write=52 payload-bytes-read=1010878/5242880 (19.28%)
+2019-01-31 11:30:40 1548934240.265793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1018825 total-bytes-write=52 payload-bytes-read=1018796/5242880 (19.43%)
+2019-01-31 11:30:40 1548934240.266047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1022311 total-bytes-write=52 payload-bytes-read=1022282/5242880 (19.50%)
+2019-01-31 11:30:40 1548934240.273376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1029781 total-bytes-write=52 payload-bytes-read=1029752/5242880 (19.64%)
+2019-01-31 11:30:40 1548934240.285530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1037201 total-bytes-write=52 payload-bytes-read=1037172/5242880 (19.78%)
+2019-01-31 11:30:40 1548934240.285632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1041185 total-bytes-write=52 payload-bytes-read=1041156/5242880 (19.86%)
+2019-01-31 11:30:40 1548934240.287207 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1045667 total-bytes-write=52 payload-bytes-read=1045638/5242880 (19.94%)
+2019-01-31 11:30:40 1548934240.287385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1053087 total-bytes-write=52 payload-bytes-read=1053058/5242880 (20.09%)
+2019-01-31 11:30:40 1548934240.287471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1055079 total-bytes-write=52 payload-bytes-read=1055050/5242880 (20.12%)
+2019-01-31 11:30:40 1548934240.295372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1058565 total-bytes-write=52 payload-bytes-read=1058536/5242880 (20.19%)
+2019-01-31 11:30:40 1548934240.300187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1062549 total-bytes-write=52 payload-bytes-read=1062520/5242880 (20.27%)
+2019-01-31 11:30:40 1548934240.303033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1070467 total-bytes-write=52 payload-bytes-read=1070438/5242880 (20.42%)
+2019-01-31 11:30:40 1548934240.306068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1071961 total-bytes-write=52 payload-bytes-read=1071932/5242880 (20.45%)
+2019-01-31 11:30:40 1548934240.307329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1075447 total-bytes-write=52 payload-bytes-read=1075418/5242880 (20.51%)
+2019-01-31 11:30:40 1548934240.351232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1076443 total-bytes-write=52 payload-bytes-read=1076414/5242880 (20.53%)
+2019-01-31 11:30:40 1548934240.352041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1079929 total-bytes-write=52 payload-bytes-read=1079900/5242880 (20.60%)
+2019-01-31 11:30:40 1548934240.352871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1083863 total-bytes-write=52 payload-bytes-read=1083834/5242880 (20.67%)
+2019-01-31 11:30:40 1548934240.364838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1088843 total-bytes-write=52 payload-bytes-read=1088814/5242880 (20.77%)
+2019-01-31 11:30:40 1548934240.383680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1092329 total-bytes-write=52 payload-bytes-read=1092300/5242880 (20.83%)
+2019-01-31 11:30:40 1548934240.386099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1100247 total-bytes-write=52 payload-bytes-read=1100218/5242880 (20.98%)
+2019-01-31 11:30:40 1548934240.386183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1104231 total-bytes-write=52 payload-bytes-read=1104202/5242880 (21.06%)
+2019-01-31 11:30:40 1548934240.388550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1104729 total-bytes-write=52 payload-bytes-read=1104700/5242880 (21.07%)
+2019-01-31 11:30:40 1548934240.389714 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1112199 total-bytes-write=52 payload-bytes-read=1112170/5242880 (21.21%)
+2019-01-31 11:30:40 1548934240.389899 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1120117 total-bytes-write=52 payload-bytes-read=1120088/5242880 (21.36%)
+2019-01-31 11:30:40 1548934240.393762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1120615 total-bytes-write=52 payload-bytes-read=1120586/5242880 (21.37%)
+2019-01-31 11:30:40 1548934240.394641 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1124101 total-bytes-write=52 payload-bytes-read=1124072/5242880 (21.44%)
+2019-01-31 11:30:40 1548934240.398403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1132019 total-bytes-write=52 payload-bytes-read=1131990/5242880 (21.59%)
+2019-01-31 11:30:40 1548934240.398500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1136501 total-bytes-write=52 payload-bytes-read=1136472/5242880 (21.68%)
+2019-01-31 11:30:40 1548934240.398572 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1139489 total-bytes-write=52 payload-bytes-read=1139460/5242880 (21.73%)
+2019-01-31 11:30:40 1548934240.406688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1142975 total-bytes-write=52 payload-bytes-read=1142946/5242880 (21.80%)
+2019-01-31 11:30:40 1548934240.408263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1150893 total-bytes-write=52 payload-bytes-read=1150864/5242880 (21.95%)
+2019-01-31 11:30:40 1548934240.408347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1154877 total-bytes-write=52 payload-bytes-read=1154848/5242880 (22.03%)
+2019-01-31 11:30:40 1548934240.428243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1158861 total-bytes-write=52 payload-bytes-read=1158832/5242880 (22.10%)
+2019-01-31 11:30:40 1548934240.468413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1169767 total-bytes-write=52 payload-bytes-read=1169738/5242880 (22.31%)
+2019-01-31 11:30:40 1548934240.512392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1176739 total-bytes-write=52 payload-bytes-read=1176710/5242880 (22.44%)
+2019-01-31 11:30:40 1548934240.519688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1177237 total-bytes-write=52 payload-bytes-read=1177208/5242880 (22.45%)
+2019-01-31 11:30:40 1548934240.520670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1184159 total-bytes-write=52 payload-bytes-read=1184130/5242880 (22.59%)
+2019-01-31 11:30:40 1548934240.542651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1186649 total-bytes-write=52 payload-bytes-read=1186620/5242880 (22.63%)
+2019-01-31 11:30:40 1548934240.589034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1190135 total-bytes-write=52 payload-bytes-read=1190106/5242880 (22.70%)
+2019-01-31 11:30:40 1548934240.668342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1191131 total-bytes-write=52 payload-bytes-read=1191102/5242880 (22.72%)
+2019-01-31 11:30:40 1548934240.675814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1194617 total-bytes-write=52 payload-bytes-read=1194588/5242880 (22.78%)
+2019-01-31 11:30:40 1548934240.676035 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1202535 total-bytes-write=52 payload-bytes-read=1202506/5242880 (22.94%)
+2019-01-31 11:30:40 1548934240.680273 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1206021 total-bytes-write=52 payload-bytes-read=1205992/5242880 (23.00%)
+2019-01-31 11:30:40 1548934240.681707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1210005 total-bytes-write=52 payload-bytes-read=1209976/5242880 (23.08%)
+2019-01-31 11:30:40 1548934240.703448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1213441 total-bytes-write=52 payload-bytes-read=1213412/5242880 (23.14%)
+2019-01-31 11:30:40 1548934240.779071 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1214437 total-bytes-write=52 payload-bytes-read=1214408/5242880 (23.16%)
+2019-01-31 11:30:40 1548934240.780239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1217923 total-bytes-write=52 payload-bytes-read=1217894/5242880 (23.23%)
+2019-01-31 11:30:40 1548934240.823917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1218919 total-bytes-write=52 payload-bytes-read=1218890/5242880 (23.25%)
+2019-01-31 11:30:40 1548934240.825079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1222405 total-bytes-write=52 payload-bytes-read=1222376/5242880 (23.31%)
+2019-01-31 11:30:40 1548934240.826094 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1226389 total-bytes-write=52 payload-bytes-read=1226360/5242880 (23.39%)
+2019-01-31 11:30:40 1548934240.826672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1234307 total-bytes-write=52 payload-bytes-read=1234278/5242880 (23.54%)
+2019-01-31 11:30:40 1548934240.880450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1234805 total-bytes-write=52 payload-bytes-read=1234776/5242880 (23.55%)
+2019-01-31 11:30:40 1548934240.881619 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1238291 total-bytes-write=52 payload-bytes-read=1238262/5242880 (23.62%)
+2019-01-31 11:30:40 1548934240.934777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1239785 total-bytes-write=52 payload-bytes-read=1239756/5242880 (23.65%)
+2019-01-31 11:30:40 1548934240.935003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1247205 total-bytes-write=52 payload-bytes-read=1247176/5242880 (23.79%)
+2019-01-31 11:30:40 1548934240.936241 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1255173 total-bytes-write=52 payload-bytes-read=1255144/5242880 (23.94%)
+2019-01-31 11:30:40 1548934240.936311 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1255671 total-bytes-write=52 payload-bytes-read=1255642/5242880 (23.95%)
+2019-01-31 11:30:40 1548934240.936821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1263091 total-bytes-write=52 payload-bytes-read=1263062/5242880 (24.09%)
+2019-01-31 11:30:40 1548934240.945373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1266577 total-bytes-write=52 payload-bytes-read=1266548/5242880 (24.16%)
+2019-01-31 11:30:40 1548934240.945803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1270561 total-bytes-write=52 payload-bytes-read=1270532/5242880 (24.23%)
+2019-01-31 11:30:40 1548934240.956279 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1271557 total-bytes-write=52 payload-bytes-read=1271528/5242880 (24.25%)
+2019-01-31 11:30:40 1548934240.958293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1275043 total-bytes-write=52 payload-bytes-read=1275014/5242880 (24.32%)
+2019-01-31 11:30:40 1548934240.966828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1278479 total-bytes-write=52 payload-bytes-read=1278450/5242880 (24.38%)
+2019-01-31 11:30:40 1548934240.967500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1282463 total-bytes-write=52 payload-bytes-read=1282434/5242880 (24.46%)
+2019-01-31 11:30:41 1548934241.029928 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1283459 total-bytes-write=52 payload-bytes-read=1283430/5242880 (24.48%)
+2019-01-31 11:30:41 1548934241.031272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1286945 total-bytes-write=52 payload-bytes-read=1286916/5242880 (24.55%)
+2019-01-31 11:30:41 1548934241.044041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1294365 total-bytes-write=52 payload-bytes-read=1294336/5242880 (24.69%)
+2019-01-31 11:30:41 1548934241.044142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1298349 total-bytes-write=52 payload-bytes-read=1298320/5242880 (24.76%)
+2019-01-31 11:30:41 1548934241.044730 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1302831 total-bytes-write=52 payload-bytes-read=1302802/5242880 (24.85%)
+2019-01-31 11:30:41 1548934241.047791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1310301 total-bytes-write=52 payload-bytes-read=1310272/5242880 (24.99%)
+2019-01-31 11:30:41 1548934241.049344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1318219 total-bytes-write=52 payload-bytes-read=1318190/5242880 (25.14%)
+2019-01-31 11:30:41 1548934241.049410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1318717 total-bytes-write=52 payload-bytes-read=1318688/5242880 (25.15%)
+2019-01-31 11:30:41 1548934241.054801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1326187 total-bytes-write=52 payload-bytes-read=1326158/5242880 (25.29%)
+2019-01-31 11:30:41 1548934241.054883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:30:41 1548934241.072791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1330619 total-bytes-write=52 payload-bytes-read=1330590/5242880 (25.38%)
+2019-01-31 11:30:41 1548934241.074073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1334105 total-bytes-write=52 payload-bytes-read=1334076/5242880 (25.45%)
+2019-01-31 11:30:41 1548934241.095573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1335599 total-bytes-write=52 payload-bytes-read=1335570/5242880 (25.47%)
+2019-01-31 11:30:41 1548934241.097610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1343069 total-bytes-write=52 payload-bytes-read=1343040/5242880 (25.62%)
+2019-01-31 11:30:41 1548934241.099165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1350987 total-bytes-write=52 payload-bytes-read=1350958/5242880 (25.77%)
+2019-01-31 11:30:41 1548934241.099305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1354971 total-bytes-write=52 payload-bytes-read=1354942/5242880 (25.84%)
+2019-01-31 11:30:41 1548934241.106836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1355967 total-bytes-write=52 payload-bytes-read=1355938/5242880 (25.86%)
+2019-01-31 11:30:41 1548934241.107996 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1359453 total-bytes-write=52 payload-bytes-read=1359424/5242880 (25.93%)
+2019-01-31 11:30:41 1548934241.146011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1362889 total-bytes-write=52 payload-bytes-read=1362860/5242880 (25.99%)
+2019-01-31 11:30:41 1548934241.194590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1364383 total-bytes-write=52 payload-bytes-read=1364354/5242880 (26.02%)
+2019-01-31 11:30:41 1548934241.195226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1367869 total-bytes-write=52 payload-bytes-read=1367840/5242880 (26.09%)
+2019-01-31 11:30:41 1548934241.227378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1368367 total-bytes-write=52 payload-bytes-read=1368338/5242880 (26.10%)
+2019-01-31 11:30:41 1548934241.228077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1371853 total-bytes-write=52 payload-bytes-read=1371824/5242880 (26.17%)
+2019-01-31 11:30:41 1548934241.228411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1374343 total-bytes-write=52 payload-bytes-read=1374314/5242880 (26.21%)
+2019-01-31 11:30:41 1548934241.241705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1381763 total-bytes-write=52 payload-bytes-read=1381734/5242880 (26.35%)
+2019-01-31 11:30:41 1548934241.242520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1389731 total-bytes-write=52 payload-bytes-read=1389702/5242880 (26.51%)
+2019-01-31 11:30:41 1548934241.251429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1390229 total-bytes-write=52 payload-bytes-read=1390200/5242880 (26.52%)
+2019-01-31 11:30:41 1548934241.251980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1393665 total-bytes-write=52 payload-bytes-read=1393636/5242880 (26.58%)
+2019-01-31 11:30:41 1548934241.254608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1401633 total-bytes-write=52 payload-bytes-read=1401604/5242880 (26.73%)
+2019-01-31 11:30:41 1548934241.255565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1406115 total-bytes-write=52 payload-bytes-read=1406086/5242880 (26.82%)
+2019-01-31 11:30:41 1548934241.255640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1408107 total-bytes-write=52 payload-bytes-read=1408078/5242880 (26.86%)
+2019-01-31 11:30:41 1548934241.272709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1408605 total-bytes-write=52 payload-bytes-read=1408576/5242880 (26.87%)
+2019-01-31 11:30:41 1548934241.273268 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1412041 total-bytes-write=52 payload-bytes-read=1412012/5242880 (26.93%)
+2019-01-31 11:30:41 1548934241.273981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1415029 total-bytes-write=52 payload-bytes-read=1415000/5242880 (26.99%)
+2019-01-31 11:30:41 1548934241.286981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1422499 total-bytes-write=52 payload-bytes-read=1422470/5242880 (27.13%)
+2019-01-31 11:30:41 1548934241.287075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1425437 total-bytes-write=52 payload-bytes-read=1425408/5242880 (27.19%)
+2019-01-31 11:30:41 1548934241.307189 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1428923 total-bytes-write=52 payload-bytes-read=1428894/5242880 (27.25%)
+2019-01-31 11:30:41 1548934241.308353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1432907 total-bytes-write=52 payload-bytes-read=1432878/5242880 (27.33%)
+2019-01-31 11:30:41 1548934241.332349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1436393 total-bytes-write=52 payload-bytes-read=1436364/5242880 (27.40%)
+2019-01-31 11:30:41 1548934241.471539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1439879 total-bytes-write=52 payload-bytes-read=1439850/5242880 (27.46%)
+2019-01-31 11:30:41 1548934241.512424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1457757 total-bytes-write=52 payload-bytes-read=1457728/5242880 (27.80%)
+2019-01-31 11:30:41 1548934241.567684 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1461193 total-bytes-write=52 payload-bytes-read=1461164/5242880 (27.87%)
+2019-01-31 11:30:41 1548934241.579818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1464679 total-bytes-write=52 payload-bytes-read=1464650/5242880 (27.94%)
+2019-01-31 11:30:41 1548934241.592698 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1472149 total-bytes-write=52 payload-bytes-read=1472120/5242880 (28.08%)
+2019-01-31 11:30:41 1548934241.592822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1480067 total-bytes-write=52 payload-bytes-read=1480038/5242880 (28.23%)
+2019-01-31 11:30:41 1548934241.593782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1483055 total-bytes-write=52 payload-bytes-read=1483026/5242880 (28.29%)
+2019-01-31 11:30:41 1548934241.600103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1486541 total-bytes-write=52 payload-bytes-read=1486512/5242880 (28.35%)
+2019-01-31 11:30:41 1548934241.601419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1490525 total-bytes-write=52 payload-bytes-read=1490496/5242880 (28.43%)
+2019-01-31 11:30:41 1548934241.602126 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1497945 total-bytes-write=52 payload-bytes-read=1497916/5242880 (28.57%)
+2019-01-31 11:30:41 1548934241.612350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1501431 total-bytes-write=52 payload-bytes-read=1501402/5242880 (28.64%)
+2019-01-31 11:30:41 1548934241.635933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1502427 total-bytes-write=52 payload-bytes-read=1502398/5242880 (28.66%)
+2019-01-31 11:30:41 1548934241.637281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1505913 total-bytes-write=52 payload-bytes-read=1505884/5242880 (28.72%)
+2019-01-31 11:30:41 1548934241.659136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1509847 total-bytes-write=52 payload-bytes-read=1509818/5242880 (28.80%)
+2019-01-31 11:30:41 1548934241.660339 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1513333 total-bytes-write=52 payload-bytes-read=1513304/5242880 (28.86%)
+2019-01-31 11:30:41 1548934241.669546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1516819 total-bytes-write=52 payload-bytes-read=1516790/5242880 (28.93%)
+2019-01-31 11:30:41 1548934241.716530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1554567 total-bytes-write=52 payload-bytes-read=1554538/5242880 (29.65%)
+2019-01-31 11:30:41 1548934241.760380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1562485 total-bytes-write=52 payload-bytes-read=1562456/5242880 (29.80%)
+2019-01-31 11:30:41 1548934241.772001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1566967 total-bytes-write=52 payload-bytes-read=1566938/5242880 (29.89%)
+2019-01-31 11:30:41 1548934241.772088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1570453 total-bytes-write=52 payload-bytes-read=1570424/5242880 (29.95%)
+2019-01-31 11:30:41 1548934241.779138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1573889 total-bytes-write=52 payload-bytes-read=1573860/5242880 (30.02%)
+2019-01-31 11:30:41 1548934241.816640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1574387 total-bytes-write=52 payload-bytes-read=1574358/5242880 (30.03%)
+2019-01-31 11:30:41 1548934241.817112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1577873 total-bytes-write=52 payload-bytes-read=1577844/5242880 (30.09%)
+2019-01-31 11:30:41 1548934241.863524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1580363 total-bytes-write=52 payload-bytes-read=1580334/5242880 (30.14%)
+2019-01-31 11:30:41 1548934241.878116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1583849 total-bytes-write=52 payload-bytes-read=1583820/5242880 (30.21%)
+2019-01-31 11:30:41 1548934241.908318 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1584347 total-bytes-write=52 payload-bytes-read=1584318/5242880 (30.22%)
+2019-01-31 11:30:41 1548934241.908873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1587833 total-bytes-write=52 payload-bytes-read=1587804/5242880 (30.28%)
+2019-01-31 11:30:41 1548934241.965076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1591767 total-bytes-write=52 payload-bytes-read=1591738/5242880 (30.36%)
+2019-01-31 11:30:41 1548934241.965575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1595751 total-bytes-write=52 payload-bytes-read=1595722/5242880 (30.44%)
+2019-01-31 11:30:41 1548934241.976978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1599237 total-bytes-write=52 payload-bytes-read=1599208/5242880 (30.50%)
+2019-01-31 11:30:42 1548934242.008907 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1600731 total-bytes-write=52 payload-bytes-read=1600702/5242880 (30.53%)
+2019-01-31 11:30:42 1548934242.009476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1604217 total-bytes-write=52 payload-bytes-read=1604188/5242880 (30.60%)
+2019-01-31 11:30:42 1548934242.053582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1607653 total-bytes-write=52 payload-bytes-read=1607624/5242880 (30.66%)
+2019-01-31 11:30:42 1548934242.066160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1608649 total-bytes-write=52 payload-bytes-read=1608620/5242880 (30.68%)
+2019-01-31 11:30:42 1548934242.066681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1612135 total-bytes-write=52 payload-bytes-read=1612106/5242880 (30.75%)
+2019-01-31 11:30:42 1548934242.190743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1613131 total-bytes-write=52 payload-bytes-read=1613102/5242880 (30.77%)
+2019-01-31 11:30:42 1548934242.255434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1616617 total-bytes-write=52 payload-bytes-read=1616588/5242880 (30.83%)
+2019-01-31 11:30:42 1548934242.257084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1620601 total-bytes-write=52 payload-bytes-read=1620572/5242880 (30.91%)
+2019-01-31 11:30:42 1548934242.258022 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1624037 total-bytes-write=52 payload-bytes-read=1624008/5242880 (30.98%)
+2019-01-31 11:30:42 1548934242.267754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1627523 total-bytes-write=52 payload-bytes-read=1627494/5242880 (31.04%)
+2019-01-31 11:30:42 1548934242.271603 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1635491 total-bytes-write=52 payload-bytes-read=1635462/5242880 (31.19%)
+2019-01-31 11:30:42 1548934242.271723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1639425 total-bytes-write=52 payload-bytes-read=1639396/5242880 (31.27%)
+2019-01-31 11:30:42 1548934242.275704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1639923 total-bytes-write=52 payload-bytes-read=1639894/5242880 (31.28%)
+2019-01-31 11:30:42 1548934242.277286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1647393 total-bytes-write=52 payload-bytes-read=1647364/5242880 (31.42%)
+2019-01-31 11:30:42 1548934242.277530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1655311 total-bytes-write=52 payload-bytes-read=1655282/5242880 (31.57%)
+2019-01-31 11:30:42 1548934242.278777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1655809 total-bytes-write=52 payload-bytes-read=1655780/5242880 (31.58%)
+2019-01-31 11:30:42 1548934242.279973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1659295 total-bytes-write=52 payload-bytes-read=1659266/5242880 (31.65%)
+2019-01-31 11:30:42 1548934242.284166 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1667263 total-bytes-write=52 payload-bytes-read=1667234/5242880 (31.80%)
+2019-01-31 11:30:42 1548934242.284304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1671695 total-bytes-write=52 payload-bytes-read=1671666/5242880 (31.88%)
+2019-01-31 11:30:42 1548934242.284457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1677173 total-bytes-write=52 payload-bytes-read=1677144/5242880 (31.99%)
+2019-01-31 11:30:42 1548934242.290993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1680659 total-bytes-write=52 payload-bytes-read=1680630/5242880 (32.06%)
+2019-01-31 11:30:42 1548934242.333390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1681157 total-bytes-write=52 payload-bytes-read=1681128/5242880 (32.06%)
+2019-01-31 11:30:42 1548934242.334647 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1684643 total-bytes-write=52 payload-bytes-read=1684614/5242880 (32.13%)
+2019-01-31 11:30:42 1548934242.352903 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1689075 total-bytes-write=52 payload-bytes-read=1689046/5242880 (32.22%)
+2019-01-31 11:30:42 1548934242.353124 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1697043 total-bytes-write=52 payload-bytes-read=1697014/5242880 (32.37%)
+2019-01-31 11:30:42 1548934242.353185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1699035 total-bytes-write=52 payload-bytes-read=1699006/5242880 (32.41%)
+2019-01-31 11:30:42 1548934242.359080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1702521 total-bytes-write=52 payload-bytes-read=1702492/5242880 (32.47%)
+2019-01-31 11:30:42 1548934242.360922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1710439 total-bytes-write=52 payload-bytes-read=1710410/5242880 (32.62%)
+2019-01-31 11:30:42 1548934242.364280 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1714921 total-bytes-write=52 payload-bytes-read=1714892/5242880 (32.71%)
+2019-01-31 11:30:42 1548934242.364456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1721843 total-bytes-write=52 payload-bytes-read=1721814/5242880 (32.84%)
+2019-01-31 11:30:42 1548934242.369330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1725329 total-bytes-write=52 payload-bytes-read=1725300/5242880 (32.91%)
+2019-01-31 11:30:42 1548934242.370809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1729313 total-bytes-write=52 payload-bytes-read=1729284/5242880 (32.98%)
+2019-01-31 11:30:42 1548934242.414998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1729811 total-bytes-write=52 payload-bytes-read=1729782/5242880 (32.99%)
+2019-01-31 11:30:42 1548934242.416293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1733297 total-bytes-write=52 payload-bytes-read=1733268/5242880 (33.06%)
+2019-01-31 11:30:42 1548934242.446185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1734791 total-bytes-write=52 payload-bytes-read=1734762/5242880 (33.09%)
+2019-01-31 11:30:42 1548934242.452531 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1738227 total-bytes-write=52 payload-bytes-read=1738198/5242880 (33.15%)
+2019-01-31 11:30:42 1548934242.453949 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1746195 total-bytes-write=52 payload-bytes-read=1746166/5242880 (33.31%)
+2019-01-31 11:30:42 1548934242.454014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1748187 total-bytes-write=52 payload-bytes-read=1748158/5242880 (33.34%)
+2019-01-31 11:30:42 1548934242.464854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1755607 total-bytes-write=52 payload-bytes-read=1755578/5242880 (33.48%)
+2019-01-31 11:30:42 1548934242.465080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1763575 total-bytes-write=52 payload-bytes-read=1763546/5242880 (33.64%)
+2019-01-31 11:30:42 1548934242.465212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1767559 total-bytes-write=52 payload-bytes-read=1767530/5242880 (33.71%)
+2019-01-31 11:30:42 1548934242.465326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1771493 total-bytes-write=52 payload-bytes-read=1771464/5242880 (33.79%)
+2019-01-31 11:30:42 1548934242.469865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1771991 total-bytes-write=52 payload-bytes-read=1771962/5242880 (33.80%)
+2019-01-31 11:30:42 1548934242.471341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1775477 total-bytes-write=52 payload-bytes-read=1775448/5242880 (33.86%)
+2019-01-31 11:30:42 1548934242.483057 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1778963 total-bytes-write=52 payload-bytes-read=1778934/5242880 (33.93%)
+2019-01-31 11:30:42 1548934242.524400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1801323 total-bytes-write=52 payload-bytes-read=1801294/5242880 (34.36%)
+2019-01-31 11:30:42 1548934242.568402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1812229 total-bytes-write=52 payload-bytes-read=1812200/5242880 (34.56%)
+2019-01-31 11:30:42 1548934242.573587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1813225 total-bytes-write=52 payload-bytes-read=1813196/5242880 (34.58%)
+2019-01-31 11:30:42 1548934242.574385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1816711 total-bytes-write=52 payload-bytes-read=1816682/5242880 (34.65%)
+2019-01-31 11:30:42 1548934242.580780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1817209 total-bytes-write=52 payload-bytes-read=1817180/5242880 (34.66%)
+2019-01-31 11:30:42 1548934242.581792 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1820645 total-bytes-write=52 payload-bytes-read=1820616/5242880 (34.73%)
+2019-01-31 11:30:42 1548934242.585075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1828613 total-bytes-write=52 payload-bytes-read=1828584/5242880 (34.88%)
+2019-01-31 11:30:42 1548934242.591743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1829609 total-bytes-write=52 payload-bytes-read=1829580/5242880 (34.90%)
+2019-01-31 11:30:42 1548934242.591921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1830605 total-bytes-write=52 payload-bytes-read=1830576/5242880 (34.92%)
+2019-01-31 11:30:42 1548934242.660968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1833593 total-bytes-write=52 payload-bytes-read=1833564/5242880 (34.97%)
+2019-01-31 11:30:42 1548934242.704378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1836531 total-bytes-write=52 payload-bytes-read=1836502/5242880 (35.03%)
+2019-01-31 11:30:42 1548934242.765318 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1840017 total-bytes-write=52 payload-bytes-read=1839988/5242880 (35.09%)
+2019-01-31 11:30:42 1548934242.808404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1851421 total-bytes-write=52 payload-bytes-read=1851392/5242880 (35.31%)
+2019-01-31 11:30:42 1548934242.852420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1868801 total-bytes-write=52 payload-bytes-read=1868772/5242880 (35.64%)
+2019-01-31 11:30:42 1548934242.900398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1879757 total-bytes-write=52 payload-bytes-read=1879728/5242880 (35.85%)
+2019-01-31 11:30:42 1548934242.950058 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1883243 total-bytes-write=52 payload-bytes-read=1883214/5242880 (35.92%)
+2019-01-31 11:30:42 1548934242.965601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1890663 total-bytes-write=52 payload-bytes-read=1890634/5242880 (36.06%)
+2019-01-31 11:30:42 1548934242.965788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1898631 total-bytes-write=52 payload-bytes-read=1898602/5242880 (36.21%)
+2019-01-31 11:30:42 1548934242.965907 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1902565 total-bytes-write=52 payload-bytes-read=1902536/5242880 (36.29%)
+2019-01-31 11:30:43 1548934243.038515 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1903063 total-bytes-write=52 payload-bytes-read=1903034/5242880 (36.30%)
+2019-01-31 11:30:43 1548934243.038722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1905055 total-bytes-write=52 payload-bytes-read=1905026/5242880 (36.34%)
+2019-01-31 11:30:43 1548934243.048740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1908043 total-bytes-write=52 payload-bytes-read=1908014/5242880 (36.39%)
+2019-01-31 11:30:43 1548934243.057784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1911031 total-bytes-write=52 payload-bytes-read=1911002/5242880 (36.45%)
+2019-01-31 11:30:43 1548934243.100442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1949725 total-bytes-write=52 payload-bytes-read=1949696/5242880 (37.19%)
+2019-01-31 11:30:43 1548934243.144401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1962175 total-bytes-write=52 payload-bytes-read=1962146/5242880 (37.42%)
+2019-01-31 11:30:43 1548934243.168119 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1963171 total-bytes-write=52 payload-bytes-read=1963142/5242880 (37.44%)
+2019-01-31 11:30:43 1548934243.170664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1966607 total-bytes-write=52 payload-bytes-read=1966578/5242880 (37.51%)
+2019-01-31 11:30:43 1548934243.222263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1967603 total-bytes-write=52 payload-bytes-read=1967574/5242880 (37.53%)
+2019-01-31 11:30:43 1548934243.223162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1971089 total-bytes-write=52 payload-bytes-read=1971060/5242880 (37.59%)
+2019-01-31 11:30:43 1548934243.239269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1974575 total-bytes-write=52 payload-bytes-read=1974546/5242880 (37.66%)
+2019-01-31 11:30:43 1548934243.280439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2008837 total-bytes-write=52 payload-bytes-read=2008808/5242880 (38.31%)
+2019-01-31 11:30:43 1548934243.337689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2013817 total-bytes-write=52 payload-bytes-read=2013788/5242880 (38.41%)
+2019-01-31 11:30:43 1548934243.337878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2021735 total-bytes-write=52 payload-bytes-read=2021706/5242880 (38.56%)
+2019-01-31 11:30:43 1548934243.338024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2026217 total-bytes-write=52 payload-bytes-read=2026188/5242880 (38.65%)
+2019-01-31 11:30:43 1548934243.338185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2032143 total-bytes-write=52 payload-bytes-read=2032114/5242880 (38.76%)
+2019-01-31 11:30:43 1548934243.338689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2036625 total-bytes-write=52 payload-bytes-read=2036596/5242880 (38.84%)
+2019-01-31 11:30:43 1548934243.339326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2044593 total-bytes-write=52 payload-bytes-read=2044564/5242880 (39.00%)
+2019-01-31 11:30:43 1548934243.339438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2048527 total-bytes-write=52 payload-bytes-read=2048498/5242880 (39.07%)
+2019-01-31 11:30:43 1548934243.340040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2053009 total-bytes-write=52 payload-bytes-read=2052980/5242880 (39.16%)
+2019-01-31 11:30:43 1548934243.340099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2054005 total-bytes-write=52 payload-bytes-read=2053976/5242880 (39.18%)
+2019-01-31 11:30:43 1548934243.410220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2057491 total-bytes-write=52 payload-bytes-read=2057462/5242880 (39.24%)
+2019-01-31 11:30:43 1548934243.440751 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2057989 total-bytes-write=52 payload-bytes-read=2057960/5242880 (39.25%)
+2019-01-31 11:30:43 1548934243.442495 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2065409 total-bytes-write=52 payload-bytes-read=2065380/5242880 (39.39%)
+2019-01-31 11:30:43 1548934243.444534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2071385 total-bytes-write=52 payload-bytes-read=2071356/5242880 (39.51%)
+2019-01-31 11:30:43 1548934243.463296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2074871 total-bytes-write=52 payload-bytes-read=2074842/5242880 (39.57%)
+2019-01-31 11:30:43 1548934243.463518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2078855 total-bytes-write=52 payload-bytes-read=2078826/5242880 (39.65%)
+2019-01-31 11:30:43 1548934243.517524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2082291 total-bytes-write=52 payload-bytes-read=2082262/5242880 (39.72%)
+2019-01-31 11:30:43 1548934243.532529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2087271 total-bytes-write=52 payload-bytes-read=2087242/5242880 (39.81%)
+2019-01-31 11:30:43 1548934243.539497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2095239 total-bytes-write=52 payload-bytes-read=2095210/5242880 (39.96%)
+2019-01-31 11:30:43 1548934243.539627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2099671 total-bytes-write=52 payload-bytes-read=2099642/5242880 (40.05%)
+2019-01-31 11:30:43 1548934243.539793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2105149 total-bytes-write=52 payload-bytes-read=2105120/5242880 (40.15%)
+2019-01-31 11:30:43 1548934243.559152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2106145 total-bytes-write=52 payload-bytes-read=2106116/5242880 (40.17%)
+2019-01-31 11:30:43 1548934243.559409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2107639 total-bytes-write=52 payload-bytes-read=2107610/5242880 (40.20%)
+2019-01-31 11:30:43 1548934243.658016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2111125 total-bytes-write=52 payload-bytes-read=2111096/5242880 (40.27%)
+2019-01-31 11:30:43 1548934243.669306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2114561 total-bytes-write=52 payload-bytes-read=2114532/5242880 (40.33%)
+2019-01-31 11:30:43 1548934243.669994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2118545 total-bytes-write=52 payload-bytes-read=2118516/5242880 (40.41%)
+2019-01-31 11:30:43 1548934243.671731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2122529 total-bytes-write=52 payload-bytes-read=2122500/5242880 (40.48%)
+2019-01-31 11:30:43 1548934243.712386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2128505 total-bytes-write=52 payload-bytes-read=2128476/5242880 (40.60%)
+2019-01-31 11:30:43 1548934243.756396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2132439 total-bytes-write=52 payload-bytes-read=2132410/5242880 (40.67%)
+2019-01-31 11:30:43 1548934243.774237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2139909 total-bytes-write=52 payload-bytes-read=2139880/5242880 (40.81%)
+2019-01-31 11:30:43 1548934243.774319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2143893 total-bytes-write=52 payload-bytes-read=2143864/5242880 (40.89%)
+2019-01-31 11:30:43 1548934243.776369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2147827 total-bytes-write=52 payload-bytes-read=2147798/5242880 (40.97%)
+2019-01-31 11:30:43 1548934243.821008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2149321 total-bytes-write=52 payload-bytes-read=2149292/5242880 (40.99%)
+2019-01-31 11:30:43 1548934243.821209 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2156791 total-bytes-write=52 payload-bytes-read=2156762/5242880 (41.14%)
+2019-01-31 11:30:43 1548934243.821343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2160775 total-bytes-write=52 payload-bytes-read=2160746/5242880 (41.21%)
+2019-01-31 11:30:43 1548934243.829560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2164211 total-bytes-write=52 payload-bytes-read=2164182/5242880 (41.28%)
+2019-01-31 11:30:43 1548934243.831480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2168195 total-bytes-write=52 payload-bytes-read=2168166/5242880 (41.35%)
+2019-01-31 11:30:43 1548934243.831970 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2174669 total-bytes-write=52 payload-bytes-read=2174640/5242880 (41.48%)
+2019-01-31 11:30:43 1548934243.850689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2182089 total-bytes-write=52 payload-bytes-read=2182060/5242880 (41.62%)
+2019-01-31 11:30:43 1548934243.850905 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2190057 total-bytes-write=52 payload-bytes-read=2190028/5242880 (41.77%)
+2019-01-31 11:30:43 1548934243.851027 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2194041 total-bytes-write=52 payload-bytes-read=2194012/5242880 (41.85%)
+2019-01-31 11:30:43 1548934243.851138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2197975 total-bytes-write=52 payload-bytes-read=2197946/5242880 (41.92%)
+2019-01-31 11:30:43 1548934243.852670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2198473 total-bytes-write=52 payload-bytes-read=2198444/5242880 (41.93%)
+2019-01-31 11:30:43 1548934243.853713 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2201959 total-bytes-write=52 payload-bytes-read=2201930/5242880 (42.00%)
+2019-01-31 11:30:43 1548934243.895472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2202457 total-bytes-write=52 payload-bytes-read=2202428/5242880 (42.01%)
+2019-01-31 11:30:43 1548934243.896054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2204947 total-bytes-write=52 payload-bytes-read=2204918/5242880 (42.06%)
+2019-01-31 11:30:43 1548934243.909690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2208433 total-bytes-write=52 payload-bytes-read=2208404/5242880 (42.12%)
+2019-01-31 11:30:43 1548934243.911266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2216351 total-bytes-write=52 payload-bytes-read=2216322/5242880 (42.27%)
+2019-01-31 11:30:43 1548934243.911402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2220335 total-bytes-write=52 payload-bytes-read=2220306/5242880 (42.35%)
+2019-01-31 11:30:43 1548934243.927472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2220833 total-bytes-write=52 payload-bytes-read=2220804/5242880 (42.36%)
+2019-01-31 11:30:43 1548934243.928381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2224319 total-bytes-write=52 payload-bytes-read=2224290/5242880 (42.42%)
+2019-01-31 11:30:43 1548934243.929316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2228253 total-bytes-write=52 payload-bytes-read=2228224/5242880 (42.50%)
+2019-01-31 11:30:43 1548934243.939732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2231739 total-bytes-write=52 payload-bytes-read=2231710/5242880 (42.57%)
+2019-01-31 11:30:43 1548934243.943078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2239707 total-bytes-write=52 payload-bytes-read=2239678/5242880 (42.72%)
+2019-01-31 11:30:43 1548934243.943240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2244189 total-bytes-write=52 payload-bytes-read=2244160/5242880 (42.80%)
+2019-01-31 11:30:43 1548934243.943360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2247127 total-bytes-write=52 payload-bytes-read=2247098/5242880 (42.86%)
+2019-01-31 11:30:43 1548934243.955243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2250613 total-bytes-write=52 payload-bytes-read=2250584/5242880 (42.93%)
+2019-01-31 11:30:43 1548934243.963308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2253103 total-bytes-write=52 payload-bytes-read=2253074/5242880 (42.97%)
+2019-01-31 11:30:43 1548934243.995372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2256589 total-bytes-write=52 payload-bytes-read=2256560/5242880 (43.04%)
+2019-01-31 11:30:44 1548934244.037667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2258581 total-bytes-write=52 payload-bytes-read=2258552/5242880 (43.08%)
+2019-01-31 11:30:44 1548934244.049476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2262017 total-bytes-write=52 payload-bytes-read=2261988/5242880 (43.14%)
+2019-01-31 11:30:44 1548934244.050015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2266001 total-bytes-write=52 payload-bytes-read=2265972/5242880 (43.22%)
+2019-01-31 11:30:44 1548934244.052074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2273969 total-bytes-write=52 payload-bytes-read=2273940/5242880 (43.37%)
+2019-01-31 11:30:44 1548934244.052134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2274467 total-bytes-write=52 payload-bytes-read=2274438/5242880 (43.38%)
+2019-01-31 11:30:44 1548934244.052396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2277903 total-bytes-write=52 payload-bytes-read=2277874/5242880 (43.45%)
+2019-01-31 11:30:44 1548934244.102912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2281389 total-bytes-write=52 payload-bytes-read=2281360/5242880 (43.51%)
+2019-01-31 11:30:44 1548934244.142950 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2282883 total-bytes-write=52 payload-bytes-read=2282854/5242880 (43.54%)
+2019-01-31 11:30:44 1548934244.143668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2283381 total-bytes-write=52 payload-bytes-read=2283352/5242880 (43.55%)
+2019-01-31 11:30:44 1548934244.219609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:30:44 1548934244.255839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2290353 total-bytes-write=52 payload-bytes-read=2290324/5242880 (43.68%)
+2019-01-31 11:30:44 1548934244.296409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2312663 total-bytes-write=52 payload-bytes-read=2312634/5242880 (44.11%)
+2019-01-31 11:30:44 1548934244.340431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2333031 total-bytes-write=52 payload-bytes-read=2333002/5242880 (44.50%)
+2019-01-31 11:30:44 1548934244.398542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2336517 total-bytes-write=52 payload-bytes-read=2336488/5242880 (44.56%)
+2019-01-31 11:30:44 1548934244.399309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2340501 total-bytes-write=52 payload-bytes-read=2340472/5242880 (44.64%)
+2019-01-31 11:30:44 1548934244.399859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2343937 total-bytes-write=52 payload-bytes-read=2343908/5242880 (44.71%)
+2019-01-31 11:30:44 1548934244.409657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2347423 total-bytes-write=52 payload-bytes-read=2347394/5242880 (44.77%)
+2019-01-31 11:30:44 1548934244.420791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2350411 total-bytes-write=52 payload-bytes-read=2350382/5242880 (44.83%)
+2019-01-31 11:30:44 1548934244.433802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2353897 total-bytes-write=52 payload-bytes-read=2353868/5242880 (44.90%)
+2019-01-31 11:30:44 1548934244.515352 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2354395 total-bytes-write=52 payload-bytes-read=2354366/5242880 (44.91%)
+2019-01-31 11:30:44 1548934244.551216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2358877 total-bytes-write=52 payload-bytes-read=2358848/5242880 (44.99%)
+2019-01-31 11:30:44 1548934244.551330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2363309 total-bytes-write=52 payload-bytes-read=2363280/5242880 (45.08%)
+2019-01-31 11:30:44 1548934244.551446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2367791 total-bytes-write=52 payload-bytes-read=2367762/5242880 (45.16%)
+2019-01-31 11:30:44 1548934244.551758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2371277 total-bytes-write=52 payload-bytes-read=2371248/5242880 (45.23%)
+2019-01-31 11:30:44 1548934244.553420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2375709 total-bytes-write=52 payload-bytes-read=2375680/5242880 (45.31%)
+2019-01-31 11:30:44 1548934244.553582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2378697 total-bytes-write=52 payload-bytes-read=2378668/5242880 (45.37%)
+2019-01-31 11:30:44 1548934244.567534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2385669 total-bytes-write=52 payload-bytes-read=2385640/5242880 (45.50%)
+2019-01-31 11:30:44 1548934244.571496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2389155 total-bytes-write=52 payload-bytes-read=2389126/5242880 (45.57%)
+2019-01-31 11:30:44 1548934244.571919 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2393089 total-bytes-write=52 payload-bytes-read=2393060/5242880 (45.64%)
+2019-01-31 11:30:44 1548934244.573500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2397073 total-bytes-write=52 payload-bytes-read=2397044/5242880 (45.72%)
+2019-01-31 11:30:44 1548934244.573974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2401057 total-bytes-write=52 payload-bytes-read=2401028/5242880 (45.80%)
+2019-01-31 11:30:44 1548934244.616456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2441245 total-bytes-write=52 payload-bytes-read=2441216/5242880 (46.56%)
+2019-01-31 11:30:44 1548934244.664427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2471573 total-bytes-write=52 payload-bytes-read=2471544/5242880 (47.14%)
+2019-01-31 11:30:44 1548934244.669717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2475507 total-bytes-write=52 payload-bytes-read=2475478/5242880 (47.22%)
+2019-01-31 11:30:44 1548934244.714859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2478993 total-bytes-write=52 payload-bytes-read=2478964/5242880 (47.28%)
+2019-01-31 11:30:44 1548934244.753419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2479491 total-bytes-write=52 payload-bytes-read=2479462/5242880 (47.29%)
+2019-01-31 11:30:44 1548934244.754299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2482977 total-bytes-write=52 payload-bytes-read=2482948/5242880 (47.36%)
+2019-01-31 11:30:44 1548934244.755056 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:30:44 1548934244.764761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2488953 total-bytes-write=52 payload-bytes-read=2488924/5242880 (47.47%)
+2019-01-31 11:30:44 1548934244.765464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2490895 total-bytes-write=52 payload-bytes-read=2490866/5242880 (47.51%)
+2019-01-31 11:30:44 1548934244.774442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2494381 total-bytes-write=52 payload-bytes-read=2494352/5242880 (47.58%)
+2019-01-31 11:30:44 1548934244.775811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2498365 total-bytes-write=52 payload-bytes-read=2498336/5242880 (47.65%)
+2019-01-31 11:30:44 1548934244.777723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2502349 total-bytes-write=52 payload-bytes-read=2502320/5242880 (47.73%)
+2019-01-31 11:30:44 1548934244.864389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2503843 total-bytes-write=52 payload-bytes-read=2503814/5242880 (47.76%)
+2019-01-31 11:30:44 1548934244.871731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2506781 total-bytes-write=52 payload-bytes-read=2506752/5242880 (47.81%)
+2019-01-31 11:30:44 1548934244.893552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2510267 total-bytes-write=52 payload-bytes-read=2510238/5242880 (47.88%)
+2019-01-31 11:30:44 1548934244.894200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2514251 total-bytes-write=52 payload-bytes-read=2514222/5242880 (47.95%)
+2019-01-31 11:30:44 1548934244.936377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2525655 total-bytes-write=52 payload-bytes-read=2525626/5242880 (48.17%)
+2019-01-31 11:30:44 1548934244.982629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:30:44 1548934244.983666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2533125 total-bytes-write=52 payload-bytes-read=2533096/5242880 (48.31%)
+2019-01-31 11:30:44 1548934244.984215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2540545 total-bytes-write=52 payload-bytes-read=2540516/5242880 (48.46%)
+2019-01-31 11:30:45 1548934245.042260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2544031 total-bytes-write=52 payload-bytes-read=2544002/5242880 (48.52%)
+2019-01-31 11:30:45 1548934245.042669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2548015 total-bytes-write=52 payload-bytes-read=2547986/5242880 (48.60%)
+2019-01-31 11:30:45 1548934245.043533 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2551999 total-bytes-write=52 payload-bytes-read=2551970/5242880 (48.67%)
+2019-01-31 11:30:45 1548934245.084412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2572317 total-bytes-write=52 payload-bytes-read=2572288/5242880 (49.06%)
+2019-01-31 11:30:45 1548934245.128405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2577795 total-bytes-write=52 payload-bytes-read=2577766/5242880 (49.17%)
+2019-01-31 11:30:45 1548934245.193085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2579289 total-bytes-write=52 payload-bytes-read=2579260/5242880 (49.20%)
+2019-01-31 11:30:45 1548934245.225168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2582775 total-bytes-write=52 payload-bytes-read=2582746/5242880 (49.26%)
+2019-01-31 11:30:45 1548934245.226131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2584767 total-bytes-write=52 payload-bytes-read=2584738/5242880 (49.30%)
+2019-01-31 11:30:45 1548934245.236689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2588253 total-bytes-write=52 payload-bytes-read=2588224/5242880 (49.37%)
+2019-01-31 11:30:45 1548934245.246835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2588701 total-bytes-write=52 payload-bytes-read=2588672/5242880 (49.38%)
+2019-01-31 11:30:45 1548934245.247912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2592187 total-bytes-write=52 payload-bytes-read=2592158/5242880 (49.44%)
+2019-01-31 11:30:45 1548934245.258312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2595673 total-bytes-write=52 payload-bytes-read=2595644/5242880 (49.51%)
+2019-01-31 11:30:45 1548934245.300428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2615543 total-bytes-write=52 payload-bytes-read=2615514/5242880 (49.89%)
+2019-01-31 11:30:45 1548934245.344514 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2679087 total-bytes-write=52 payload-bytes-read=2679058/5242880 (51.10%)
+2019-01-31 11:30:45 1548934245.444628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2682573 total-bytes-write=52 payload-bytes-read=2682544/5242880 (51.17%)
+2019-01-31 11:30:45 1548934245.458039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2687503 total-bytes-write=52 payload-bytes-read=2687474/5242880 (51.26%)
+2019-01-31 11:30:45 1548934245.458136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2691487 total-bytes-write=52 payload-bytes-read=2691458/5242880 (51.34%)
+2019-01-31 11:30:45 1548934245.478993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2692483 total-bytes-write=52 payload-bytes-read=2692454/5242880 (51.35%)
+2019-01-31 11:30:45 1548934245.481852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2693977 total-bytes-write=52 payload-bytes-read=2693948/5242880 (51.38%)
+2019-01-31 11:30:45 1548934245.533269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2697463 total-bytes-write=52 payload-bytes-read=2697434/5242880 (51.45%)
+2019-01-31 11:30:45 1548934245.535743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:30:45 1548934245.535827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2709365 total-bytes-write=52 payload-bytes-read=2709336/5242880 (51.68%)
+2019-01-31 11:30:45 1548934245.550361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2716835 total-bytes-write=52 payload-bytes-read=2716806/5242880 (51.82%)
+2019-01-31 11:30:45 1548934245.552259 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2720271 total-bytes-write=52 payload-bytes-read=2720242/5242880 (51.88%)
+2019-01-31 11:30:45 1548934245.560633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2723757 total-bytes-write=52 payload-bytes-read=2723728/5242880 (51.95%)
+2019-01-31 11:30:45 1548934245.618652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2724753 total-bytes-write=52 payload-bytes-read=2724724/5242880 (51.97%)
+2019-01-31 11:30:45 1548934245.619039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2727741 total-bytes-write=52 payload-bytes-read=2727712/5242880 (52.03%)
+2019-01-31 11:30:45 1548934245.628205 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2731227 total-bytes-write=52 payload-bytes-read=2731198/5242880 (52.09%)
+2019-01-31 11:30:45 1548934245.630794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2734713 total-bytes-write=52 payload-bytes-read=2734684/5242880 (52.16%)
+2019-01-31 11:30:45 1548934245.672371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2739145 total-bytes-write=52 payload-bytes-read=2739116/5242880 (52.24%)
+2019-01-31 11:30:45 1548934245.716452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2769921 total-bytes-write=52 payload-bytes-read=2769892/5242880 (52.83%)
+2019-01-31 11:30:45 1548934245.760390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2773905 total-bytes-write=52 payload-bytes-read=2773876/5242880 (52.91%)
+2019-01-31 11:30:45 1548934245.783303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2775399 total-bytes-write=52 payload-bytes-read=2775370/5242880 (52.94%)
+2019-01-31 11:30:45 1548934245.783502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2782869 total-bytes-write=52 payload-bytes-read=2782840/5242880 (53.08%)
+2019-01-31 11:30:45 1548934245.823073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2783367 total-bytes-write=52 payload-bytes-read=2783338/5242880 (53.09%)
+2019-01-31 11:30:45 1548934245.824040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2786803 total-bytes-write=52 payload-bytes-read=2786774/5242880 (53.15%)
+2019-01-31 11:30:45 1548934245.824825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2794771 total-bytes-write=52 payload-bytes-read=2794742/5242880 (53.31%)
+2019-01-31 11:30:45 1548934245.825390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2798755 total-bytes-write=52 payload-bytes-read=2798726/5242880 (53.38%)
+2019-01-31 11:30:45 1548934245.828769 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2799253 total-bytes-write=52 payload-bytes-read=2799224/5242880 (53.39%)
+2019-01-31 11:30:45 1548934245.832152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2805677 total-bytes-write=52 payload-bytes-read=2805648/5242880 (53.51%)
+2019-01-31 11:30:45 1548934245.835905 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2809163 total-bytes-write=52 payload-bytes-read=2809134/5242880 (53.58%)
+2019-01-31 11:30:45 1548934245.838293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2817131 total-bytes-write=52 payload-bytes-read=2817102/5242880 (53.73%)
+2019-01-31 11:30:45 1548934245.838375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2820069 total-bytes-write=52 payload-bytes-read=2820040/5242880 (53.79%)
+2019-01-31 11:30:45 1548934245.863266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2823555 total-bytes-write=52 payload-bytes-read=2823526/5242880 (53.85%)
+2019-01-31 11:30:45 1548934245.897295 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2828037 total-bytes-write=52 payload-bytes-read=2828008/5242880 (53.94%)
+2019-01-31 11:30:45 1548934245.897403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2834013 total-bytes-write=52 payload-bytes-read=2833984/5242880 (54.05%)
+2019-01-31 11:30:45 1548934245.946039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2841433 total-bytes-write=52 payload-bytes-read=2841404/5242880 (54.20%)
+2019-01-31 11:30:45 1548934245.946144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2846413 total-bytes-write=52 payload-bytes-read=2846384/5242880 (54.29%)
+2019-01-31 11:30:45 1548934245.946317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2851343 total-bytes-write=52 payload-bytes-read=2851314/5242880 (54.38%)
+2019-01-31 11:30:45 1548934245.970065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2854829 total-bytes-write=52 payload-bytes-read=2854800/5242880 (54.45%)
+2019-01-31 11:30:45 1548934245.970405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2858813 total-bytes-write=52 payload-bytes-read=2858784/5242880 (54.53%)
+2019-01-31 11:30:46 1548934246.022544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2860307 total-bytes-write=52 payload-bytes-read=2860278/5242880 (54.56%)
+2019-01-31 11:30:46 1548934246.023430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2863793 total-bytes-write=52 payload-bytes-read=2863764/5242880 (54.62%)
+2019-01-31 11:30:46 1548934246.044969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2865287 total-bytes-write=52 payload-bytes-read=2865258/5242880 (54.65%)
+2019-01-31 11:30:46 1548934246.047691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2872707 total-bytes-write=52 payload-bytes-read=2872678/5242880 (54.79%)
+2019-01-31 11:30:46 1548934246.049165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2880675 total-bytes-write=52 payload-bytes-read=2880646/5242880 (54.94%)
+2019-01-31 11:30:46 1548934246.049303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2884609 total-bytes-write=52 payload-bytes-read=2884580/5242880 (55.02%)
+2019-01-31 11:30:46 1548934246.050209 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2892577 total-bytes-write=52 payload-bytes-read=2892548/5242880 (55.17%)
+2019-01-31 11:30:46 1548934246.050309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2896561 total-bytes-write=52 payload-bytes-read=2896532/5242880 (55.25%)
+2019-01-31 11:30:46 1548934246.073506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2897557 total-bytes-write=52 payload-bytes-read=2897528/5242880 (55.27%)
+2019-01-31 11:30:46 1548934246.074929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2900993 total-bytes-write=52 payload-bytes-read=2900964/5242880 (55.33%)
+2019-01-31 11:30:46 1548934246.077461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2901491 total-bytes-write=52 payload-bytes-read=2901462/5242880 (55.34%)
+2019-01-31 11:30:46 1548934246.077776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2903981 total-bytes-write=52 payload-bytes-read=2903952/5242880 (55.39%)
+2019-01-31 11:30:46 1548934246.333504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2907467 total-bytes-write=52 payload-bytes-read=2907438/5242880 (55.45%)
+2019-01-31 11:30:46 1548934246.344034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2910953 total-bytes-write=52 payload-bytes-read=2910924/5242880 (55.52%)
+2019-01-31 11:30:46 1548934246.365157 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2911949 total-bytes-write=52 payload-bytes-read=2911920/5242880 (55.54%)
+2019-01-31 11:30:46 1548934246.372913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2919369 total-bytes-write=52 payload-bytes-read=2919340/5242880 (55.68%)
+2019-01-31 11:30:46 1548934246.373020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2923353 total-bytes-write=52 payload-bytes-read=2923324/5242880 (55.76%)
+2019-01-31 11:30:46 1548934246.376125 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2924349 total-bytes-write=52 payload-bytes-read=2924320/5242880 (55.78%)
+2019-01-31 11:30:46 1548934246.376609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2927835 total-bytes-write=52 payload-bytes-read=2927806/5242880 (55.84%)
+2019-01-31 11:30:46 1548934246.397812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2931321 total-bytes-write=52 payload-bytes-read=2931292/5242880 (55.91%)
+2019-01-31 11:30:46 1548934246.408606 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2934757 total-bytes-write=52 payload-bytes-read=2934728/5242880 (55.98%)
+2019-01-31 11:30:46 1548934246.409111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2938741 total-bytes-write=52 payload-bytes-read=2938712/5242880 (56.05%)
+2019-01-31 11:30:46 1548934246.419120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2942725 total-bytes-write=52 payload-bytes-read=2942696/5242880 (56.13%)
+2019-01-31 11:30:46 1548934246.420414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2950643 total-bytes-write=52 payload-bytes-read=2950614/5242880 (56.28%)
+2019-01-31 11:30:46 1548934246.482093 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2952137 total-bytes-write=52 payload-bytes-read=2952108/5242880 (56.31%)
+2019-01-31 11:30:46 1548934246.483108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2953631 total-bytes-write=52 payload-bytes-read=2953602/5242880 (56.34%)
+2019-01-31 11:30:46 1548934246.493927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2957117 total-bytes-write=52 payload-bytes-read=2957088/5242880 (56.40%)
+2019-01-31 11:30:46 1548934246.536498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3014685 total-bytes-write=52 payload-bytes-read=3014656/5242880 (57.50%)
+2019-01-31 11:30:46 1548934246.580419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3040033 total-bytes-write=52 payload-bytes-read=3040004/5242880 (57.98%)
+2019-01-31 11:30:46 1548934246.603012 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3040531 total-bytes-write=52 payload-bytes-read=3040502/5242880 (57.99%)
+2019-01-31 11:30:46 1548934246.603432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3044017 total-bytes-write=52 payload-bytes-read=3043988/5242880 (58.06%)
+2019-01-31 11:30:46 1548934246.658811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3047453 total-bytes-write=52 payload-bytes-read=3047424/5242880 (58.13%)
+2019-01-31 11:30:46 1548934246.681053 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3048947 total-bytes-write=52 payload-bytes-read=3048918/5242880 (58.15%)
+2019-01-31 11:30:46 1548934246.681750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3052433 total-bytes-write=52 payload-bytes-read=3052404/5242880 (58.22%)
+2019-01-31 11:30:46 1548934246.693571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3052931 total-bytes-write=52 payload-bytes-read=3052902/5242880 (58.23%)
+2019-01-31 11:30:46 1548934246.693877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:30:46 1548934246.705072 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3059903 total-bytes-write=52 payload-bytes-read=3059874/5242880 (58.36%)
+2019-01-31 11:30:46 1548934246.748398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3071805 total-bytes-write=52 payload-bytes-read=3071776/5242880 (58.59%)
+2019-01-31 11:30:46 1548934246.792436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3098099 total-bytes-write=52 payload-bytes-read=3098070/5242880 (59.09%)
+2019-01-31 11:30:46 1548934246.836401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3109055 total-bytes-write=52 payload-bytes-read=3109026/5242880 (59.30%)
+2019-01-31 11:30:46 1548934246.840373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3116973 total-bytes-write=52 payload-bytes-read=3116944/5242880 (59.45%)
+2019-01-31 11:30:46 1548934246.840464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3120957 total-bytes-write=52 payload-bytes-read=3120928/5242880 (59.53%)
+2019-01-31 11:30:46 1548934246.840704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3128925 total-bytes-write=52 payload-bytes-read=3128896/5242880 (59.68%)
+2019-01-31 11:30:46 1548934246.840853 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3132859 total-bytes-write=52 payload-bytes-read=3132830/5242880 (59.75%)
+2019-01-31 11:30:46 1548934246.842812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3133357 total-bytes-write=52 payload-bytes-read=3133328/5242880 (59.76%)
+2019-01-31 11:30:46 1548934246.843675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3136843 total-bytes-write=52 payload-bytes-read=3136814/5242880 (59.83%)
+2019-01-31 11:30:46 1548934246.844686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3140827 total-bytes-write=52 payload-bytes-read=3140798/5242880 (59.91%)
+2019-01-31 11:30:46 1548934246.877748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3142321 total-bytes-write=52 payload-bytes-read=3142292/5242880 (59.93%)
+2019-01-31 11:30:46 1548934246.878160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3145757 total-bytes-write=52 payload-bytes-read=3145728/5242880 (60.00%)
+2019-01-31 11:30:46 1548934246.901717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3146255 total-bytes-write=52 payload-bytes-read=3146226/5242880 (60.01%)
+2019-01-31 11:30:46 1548934246.902920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3149741 total-bytes-write=52 payload-bytes-read=3149712/5242880 (60.08%)
+2019-01-31 11:30:46 1548934246.922855 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3150239 total-bytes-write=52 payload-bytes-read=3150210/5242880 (60.09%)
+2019-01-31 11:30:46 1548934246.926384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3157709 total-bytes-write=52 payload-bytes-read=3157680/5242880 (60.23%)
+2019-01-31 11:30:46 1548934246.926587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3165627 total-bytes-write=52 payload-bytes-read=3165598/5242880 (60.38%)
+2019-01-31 11:30:46 1548934246.927676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3168117 total-bytes-write=52 payload-bytes-read=3168088/5242880 (60.43%)
+2019-01-31 11:30:46 1548934246.949798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3171603 total-bytes-write=52 payload-bytes-read=3171574/5242880 (60.49%)
+2019-01-31 11:30:47 1548934247.017784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3174591 total-bytes-write=52 payload-bytes-read=3174562/5242880 (60.55%)
+2019-01-31 11:30:47 1548934247.130951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3177081 total-bytes-write=52 payload-bytes-read=3177052/5242880 (60.60%)
+2019-01-31 11:30:47 1548934247.431190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3178525 total-bytes-write=52 payload-bytes-read=3178496/5242880 (60.62%)
+2019-01-31 11:30:47 1548934247.470211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3182011 total-bytes-write=52 payload-bytes-read=3181982/5242880 (60.69%)
+2019-01-31 11:30:47 1548934247.479329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3185497 total-bytes-write=52 payload-bytes-read=3185468/5242880 (60.76%)
+2019-01-31 11:30:47 1548934247.480112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3189481 total-bytes-write=52 payload-bytes-read=3189452/5242880 (60.83%)
+2019-01-31 11:30:47 1548934247.480953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3192967 total-bytes-write=52 payload-bytes-read=3192938/5242880 (60.90%)
+2019-01-31 11:30:47 1548934247.501365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3196403 total-bytes-write=52 payload-bytes-read=3196374/5242880 (60.97%)
+2019-01-31 11:30:47 1548934247.502137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3200387 total-bytes-write=52 payload-bytes-read=3200358/5242880 (61.04%)
+2019-01-31 11:30:47 1548934247.609283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3204371 total-bytes-write=52 payload-bytes-read=3204342/5242880 (61.12%)
+2019-01-31 11:30:47 1548934247.609431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3208853 total-bytes-write=52 payload-bytes-read=3208824/5242880 (61.20%)
+2019-01-31 11:30:47 1548934247.609638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3216273 total-bytes-write=52 payload-bytes-read=3216244/5242880 (61.34%)
+2019-01-31 11:30:47 1548934247.609800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3221751 total-bytes-write=52 payload-bytes-read=3221722/5242880 (61.45%)
+2019-01-31 11:30:47 1548934247.610006 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3226731 total-bytes-write=52 payload-bytes-read=3226702/5242880 (61.54%)
+2019-01-31 11:30:47 1548934247.610184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3230779 total-bytes-write=52 payload-bytes-read=3230750/5242880 (61.62%)
+2019-01-31 11:30:47 1548934247.652409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3253523 total-bytes-write=52 payload-bytes-read=3253494/5242880 (62.06%)
+2019-01-31 11:30:47 1548934247.696413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3260943 total-bytes-write=52 payload-bytes-read=3260914/5242880 (62.20%)
+2019-01-31 11:30:47 1548934247.697926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3264927 total-bytes-write=52 payload-bytes-read=3264898/5242880 (62.27%)
+2019-01-31 11:30:47 1548934247.700636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3268911 total-bytes-write=52 payload-bytes-read=3268882/5242880 (62.35%)
+2019-01-31 11:30:47 1548934247.744408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3274389 total-bytes-write=52 payload-bytes-read=3274360/5242880 (62.45%)
+2019-01-31 11:30:47 1548934247.788418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3298691 total-bytes-write=52 payload-bytes-read=3298662/5242880 (62.92%)
+2019-01-31 11:30:47 1548934247.836405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3315573 total-bytes-write=52 payload-bytes-read=3315544/5242880 (63.24%)
+2019-01-31 11:30:47 1548934247.869599 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3320055 total-bytes-write=52 payload-bytes-read=3320026/5242880 (63.32%)
+2019-01-31 11:30:47 1548934247.869838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3326479 total-bytes-write=52 payload-bytes-read=3326450/5242880 (63.45%)
+2019-01-31 11:30:47 1548934247.871814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3333949 total-bytes-write=52 payload-bytes-read=3333920/5242880 (63.59%)
+2019-01-31 11:30:47 1548934247.871975 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3338431 total-bytes-write=52 payload-bytes-read=3338402/5242880 (63.67%)
+2019-01-31 11:30:47 1548934247.872140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3344357 total-bytes-write=52 payload-bytes-read=3344328/5242880 (63.79%)
+2019-01-31 11:30:47 1548934247.872266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3348341 total-bytes-write=52 payload-bytes-read=3348312/5242880 (63.86%)
+2019-01-31 11:30:47 1548934247.873476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3355313 total-bytes-write=52 payload-bytes-read=3355284/5242880 (64.00%)
+2019-01-31 11:30:47 1548934247.873622 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3359247 total-bytes-write=52 payload-bytes-read=3359218/5242880 (64.07%)
+2019-01-31 11:30:47 1548934247.891497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3367215 total-bytes-write=52 payload-bytes-read=3367186/5242880 (64.22%)
+2019-01-31 11:30:47 1548934247.891591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3368211 total-bytes-write=52 payload-bytes-read=3368182/5242880 (64.24%)
+2019-01-31 11:30:47 1548934247.891681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3372693 total-bytes-write=52 payload-bytes-read=3372664/5242880 (64.33%)
+2019-01-31 11:30:47 1548934247.891796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3375631 total-bytes-write=52 payload-bytes-read=3375602/5242880 (64.38%)
+2019-01-31 11:30:47 1548934247.891935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3379117 total-bytes-write=52 payload-bytes-read=3379088/5242880 (64.45%)
+2019-01-31 11:30:47 1548934247.902213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3383101 total-bytes-write=52 payload-bytes-read=3383072/5242880 (64.53%)
+2019-01-31 11:30:47 1548934247.920018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3386587 total-bytes-write=52 payload-bytes-read=3386558/5242880 (64.59%)
+2019-01-31 11:30:47 1548934247.934030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3390073 total-bytes-write=52 payload-bytes-read=3390044/5242880 (64.66%)
+2019-01-31 11:30:47 1548934247.976431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3418857 total-bytes-write=52 payload-bytes-read=3418828/5242880 (65.21%)
+2019-01-31 11:30:48 1548934248.020396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3422841 total-bytes-write=52 payload-bytes-read=3422812/5242880 (65.28%)
+2019-01-31 11:30:48 1548934248.070254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3423837 total-bytes-write=52 payload-bytes-read=3423808/5242880 (65.30%)
+2019-01-31 11:30:48 1548934248.114620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3425281 total-bytes-write=52 payload-bytes-read=3425252/5242880 (65.33%)
+2019-01-31 11:30:48 1548934248.245659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3428767 total-bytes-write=52 payload-bytes-read=3428738/5242880 (65.40%)
+2019-01-31 11:30:48 1548934248.253991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3432253 total-bytes-write=52 payload-bytes-read=3432224/5242880 (65.46%)
+2019-01-31 11:30:48 1548934248.296402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3442163 total-bytes-write=52 payload-bytes-read=3442134/5242880 (65.65%)
+2019-01-31 11:30:48 1548934248.340453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3445649 total-bytes-write=52 payload-bytes-read=3445620/5242880 (65.72%)
+2019-01-31 11:30:48 1548934248.363565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3449135 total-bytes-write=52 payload-bytes-read=3449106/5242880 (65.79%)
+2019-01-31 11:30:48 1548934248.404412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3461037 total-bytes-write=52 payload-bytes-read=3461008/5242880 (66.01%)
+2019-01-31 11:30:48 1548934248.448396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3469005 total-bytes-write=52 payload-bytes-read=3468976/5242880 (66.17%)
+2019-01-31 11:30:48 1548934248.450375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3469503 total-bytes-write=52 payload-bytes-read=3469474/5242880 (66.17%)
+2019-01-31 11:30:48 1548934248.451928 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3476923 total-bytes-write=52 payload-bytes-read=3476894/5242880 (66.32%)
+2019-01-31 11:30:48 1548934248.452030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3480907 total-bytes-write=52 payload-bytes-read=3480878/5242880 (66.39%)
+2019-01-31 11:30:48 1548934248.452914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3484891 total-bytes-write=52 payload-bytes-read=3484862/5242880 (66.47%)
+2019-01-31 11:30:48 1548934248.496406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3497789 total-bytes-write=52 payload-bytes-read=3497760/5242880 (66.71%)
+2019-01-31 11:30:48 1548934248.571065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3498287 total-bytes-write=52 payload-bytes-read=3498258/5242880 (66.72%)
+2019-01-31 11:30:48 1548934248.572168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3501773 total-bytes-write=52 payload-bytes-read=3501744/5242880 (66.79%)
+2019-01-31 11:30:48 1548934248.603552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3502271 total-bytes-write=52 payload-bytes-read=3502242/5242880 (66.80%)
+2019-01-31 11:30:48 1548934248.604041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3505757 total-bytes-write=52 payload-bytes-read=3505728/5242880 (66.87%)
+2019-01-31 11:30:48 1548934248.614659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3509193 total-bytes-write=52 payload-bytes-read=3509164/5242880 (66.93%)
+2019-01-31 11:30:48 1548934248.623110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3509691 total-bytes-write=52 payload-bytes-read=3509662/5242880 (66.94%)
+2019-01-31 11:30:48 1548934248.623706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3513177 total-bytes-write=52 payload-bytes-read=3513148/5242880 (67.01%)
+2019-01-31 11:30:48 1548934248.626364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3517161 total-bytes-write=52 payload-bytes-read=3517132/5242880 (67.08%)
+2019-01-31 11:30:48 1548934248.635676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3524581 total-bytes-write=52 payload-bytes-read=3524552/5242880 (67.23%)
+2019-01-31 11:30:48 1548934248.644163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3526075 total-bytes-write=52 payload-bytes-read=3526046/5242880 (67.25%)
+2019-01-31 11:30:48 1548934248.644991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3529561 total-bytes-write=52 payload-bytes-read=3529532/5242880 (67.32%)
+2019-01-31 11:30:48 1548934248.646148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3533545 total-bytes-write=52 payload-bytes-read=3533516/5242880 (67.40%)
+2019-01-31 11:30:48 1548934248.648562 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3539471 total-bytes-write=52 payload-bytes-read=3539442/5242880 (67.51%)
+2019-01-31 11:30:48 1548934248.672586 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3542957 total-bytes-write=52 payload-bytes-read=3542928/5242880 (67.58%)
+2019-01-31 11:30:48 1548934248.673219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3546941 total-bytes-write=52 payload-bytes-read=3546912/5242880 (67.65%)
+2019-01-31 11:30:48 1548934248.673950 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3550925 total-bytes-write=52 payload-bytes-read=3550896/5242880 (67.73%)
+2019-01-31 11:30:48 1548934248.710435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3627367 total-bytes-write=52 payload-bytes-read=3627338/5242880 (69.19%)
+2019-01-31 11:30:48 1548934248.723370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3630853 total-bytes-write=52 payload-bytes-read=3630824/5242880 (69.25%)
+2019-01-31 11:30:48 1548934248.781149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3631351 total-bytes-write=52 payload-bytes-read=3631322/5242880 (69.26%)
+2019-01-31 11:30:48 1548934248.863986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3631849 total-bytes-write=52 payload-bytes-read=3631820/5242880 (69.27%)
+2019-01-31 11:30:48 1548934248.878257 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3635335 total-bytes-write=52 payload-bytes-read=3635306/5242880 (69.34%)
+2019-01-31 11:30:48 1548934248.881171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3643253 total-bytes-write=52 payload-bytes-read=3643224/5242880 (69.49%)
+2019-01-31 11:30:48 1548934248.881469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3647735 total-bytes-write=52 payload-bytes-read=3647706/5242880 (69.57%)
+2019-01-31 11:30:48 1548934248.883200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3655155 total-bytes-write=52 payload-bytes-read=3655126/5242880 (69.72%)
+2019-01-31 11:30:48 1548934248.883348 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3659139 total-bytes-write=52 payload-bytes-read=3659110/5242880 (69.79%)
+2019-01-31 11:30:48 1548934248.883652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3663123 total-bytes-write=52 payload-bytes-read=3663094/5242880 (69.87%)
+2019-01-31 11:30:48 1548934248.924377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3666609 total-bytes-write=52 payload-bytes-read=3666580/5242880 (69.93%)
+2019-01-31 11:30:48 1548934248.964269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3670045 total-bytes-write=52 payload-bytes-read=3670016/5242880 (70.00%)
+2019-01-31 11:30:48 1548934248.974569 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3671539 total-bytes-write=52 payload-bytes-read=3671510/5242880 (70.03%)
+2019-01-31 11:30:48 1548934248.974981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3673531 total-bytes-write=52 payload-bytes-read=3673502/5242880 (70.07%)
+2019-01-31 11:30:49 1548934249.060524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3677579 total-bytes-write=52 payload-bytes-read=3677550/5242880 (70.14%)
+2019-01-31 11:30:49 1548934249.104423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3688421 total-bytes-write=52 payload-bytes-read=3688392/5242880 (70.35%)
+2019-01-31 11:30:49 1548934249.148399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3692903 total-bytes-write=52 payload-bytes-read=3692874/5242880 (70.44%)
+2019-01-31 11:30:49 1548934249.176491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3693899 total-bytes-write=52 payload-bytes-read=3693870/5242880 (70.45%)
+2019-01-31 11:30:49 1548934249.177024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3697385 total-bytes-write=52 payload-bytes-read=3697356/5242880 (70.52%)
+2019-01-31 11:30:49 1548934249.260359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3698381 total-bytes-write=52 payload-bytes-read=3698352/5242880 (70.54%)
+2019-01-31 11:30:49 1548934249.450512 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3701867 total-bytes-write=52 payload-bytes-read=3701838/5242880 (70.61%)
+2019-01-31 11:30:49 1548934249.482295 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3705303 total-bytes-write=52 payload-bytes-read=3705274/5242880 (70.67%)
+2019-01-31 11:30:49 1548934249.494082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3708789 total-bytes-write=52 payload-bytes-read=3708760/5242880 (70.74%)
+2019-01-31 11:30:49 1548934249.506066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3712275 total-bytes-write=52 payload-bytes-read=3712246/5242880 (70.81%)
+2019-01-31 11:30:49 1548934249.548484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3744545 total-bytes-write=52 payload-bytes-read=3744516/5242880 (71.42%)
+2019-01-31 11:30:49 1548934249.592390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3752961 total-bytes-write=52 payload-bytes-read=3752932/5242880 (71.58%)
+2019-01-31 11:30:49 1548934249.602639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3753957 total-bytes-write=52 payload-bytes-read=3753928/5242880 (71.60%)
+2019-01-31 11:30:49 1548934249.603353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3757443 total-bytes-write=52 payload-bytes-read=3757414/5242880 (71.67%)
+2019-01-31 11:30:49 1548934249.624726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3764913 total-bytes-write=52 payload-bytes-read=3764884/5242880 (71.81%)
+2019-01-31 11:30:49 1548934249.626705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3768847 total-bytes-write=52 payload-bytes-read=3768818/5242880 (71.88%)
+2019-01-31 11:30:49 1548934249.634437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3769843 total-bytes-write=52 payload-bytes-read=3769814/5242880 (71.90%)
+2019-01-31 11:30:49 1548934249.634960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3770839 total-bytes-write=52 payload-bytes-read=3770810/5242880 (71.92%)
+2019-01-31 11:30:49 1548934249.676407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3787721 total-bytes-write=52 payload-bytes-read=3787692/5242880 (72.24%)
+2019-01-31 11:30:49 1548934249.720371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3791207 total-bytes-write=52 payload-bytes-read=3791178/5242880 (72.31%)
+2019-01-31 11:30:49 1548934249.724336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3795191 total-bytes-write=52 payload-bytes-read=3795162/5242880 (72.39%)
+2019-01-31 11:30:49 1548934249.726103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3803109 total-bytes-write=52 payload-bytes-read=3803080/5242880 (72.54%)
+2019-01-31 11:30:49 1548934249.726175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3805101 total-bytes-write=52 payload-bytes-read=3805072/5242880 (72.58%)
+2019-01-31 11:30:49 1548934249.735196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3808587 total-bytes-write=52 payload-bytes-read=3808558/5242880 (72.64%)
+2019-01-31 11:30:49 1548934249.745261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3809583 total-bytes-write=52 payload-bytes-read=3809554/5242880 (72.66%)
+2019-01-31 11:30:49 1548934249.746083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3813069 total-bytes-write=52 payload-bytes-read=3813040/5242880 (72.73%)
+2019-01-31 11:30:49 1548934249.760310 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3816555 total-bytes-write=52 payload-bytes-read=3816526/5242880 (72.79%)
+2019-01-31 11:30:49 1548934249.800497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3863217 total-bytes-write=52 payload-bytes-read=3863188/5242880 (73.68%)
+2019-01-31 11:30:49 1548934249.844429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3874621 total-bytes-write=52 payload-bytes-read=3874592/5242880 (73.90%)
+2019-01-31 11:30:49 1548934249.845306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3878107 total-bytes-write=52 payload-bytes-read=3878078/5242880 (73.97%)
+2019-01-31 11:30:49 1548934249.846478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3886025 total-bytes-write=52 payload-bytes-read=3885996/5242880 (74.12%)
+2019-01-31 11:30:49 1548934249.849191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3890009 total-bytes-write=52 payload-bytes-read=3889980/5242880 (74.20%)
+2019-01-31 11:30:49 1548934249.849785 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3892997 total-bytes-write=52 payload-bytes-read=3892968/5242880 (74.25%)
+2019-01-31 11:30:49 1548934249.879140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3893993 total-bytes-write=52 payload-bytes-read=3893964/5242880 (74.27%)
+2019-01-31 11:30:49 1548934249.880390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3897479 total-bytes-write=52 payload-bytes-read=3897450/5242880 (74.34%)
+2019-01-31 11:30:49 1548934249.881018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3901413 total-bytes-write=52 payload-bytes-read=3901384/5242880 (74.41%)
+2019-01-31 11:30:49 1548934249.881760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3909381 total-bytes-write=52 payload-bytes-read=3909352/5242880 (74.56%)
+2019-01-31 11:30:49 1548934249.925382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3910377 total-bytes-write=52 payload-bytes-read=3910348/5242880 (74.58%)
+2019-01-31 11:30:49 1548934249.926448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3913863 total-bytes-write=52 payload-bytes-read=3913834/5242880 (74.65%)
+2019-01-31 11:30:50 1548934250.007825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3915357 total-bytes-write=52 payload-bytes-read=3915328/5242880 (74.68%)
+2019-01-31 11:30:50 1548934250.034553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3918793 total-bytes-write=52 payload-bytes-read=3918764/5242880 (74.74%)
+2019-01-31 11:30:50 1548934250.056302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3922279 total-bytes-write=52 payload-bytes-read=3922250/5242880 (74.81%)
+2019-01-31 11:30:50 1548934250.056768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3925267 total-bytes-write=52 payload-bytes-read=3925238/5242880 (74.87%)
+2019-01-31 11:30:50 1548934250.067291 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3928753 total-bytes-write=52 payload-bytes-read=3928724/5242880 (74.93%)
+2019-01-31 11:30:50 1548934250.068288 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3932687 total-bytes-write=52 payload-bytes-read=3932658/5242880 (75.01%)
+2019-01-31 11:30:50 1548934250.090642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3936173 total-bytes-write=52 payload-bytes-read=3936144/5242880 (75.08%)
+2019-01-31 11:30:50 1548934250.101122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3939659 total-bytes-write=52 payload-bytes-read=3939630/5242880 (75.14%)
+2019-01-31 11:30:50 1548934250.144417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3962517 total-bytes-write=52 payload-bytes-read=3962488/5242880 (75.58%)
+2019-01-31 11:30:50 1548934250.188377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3964509 total-bytes-write=52 payload-bytes-read=3964480/5242880 (75.62%)
+2019-01-31 11:30:50 1548934250.261021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3967945 total-bytes-write=52 payload-bytes-read=3967916/5242880 (75.68%)
+2019-01-31 11:30:50 1548934250.335408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3971431 total-bytes-write=52 payload-bytes-read=3971402/5242880 (75.75%)
+2019-01-31 11:30:50 1548934250.342168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3974917 total-bytes-write=52 payload-bytes-read=3974888/5242880 (75.81%)
+2019-01-31 11:30:50 1548934250.384402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3989807 total-bytes-write=52 payload-bytes-read=3989778/5242880 (76.10%)
+2019-01-31 11:30:50 1548934250.460056 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3993293 total-bytes-write=52 payload-bytes-read=3993264/5242880 (76.17%)
+2019-01-31 11:30:50 1548934250.470736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3993791 total-bytes-write=52 payload-bytes-read=3993762/5242880 (76.17%)
+2019-01-31 11:30:50 1548934250.471295 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3996281 total-bytes-write=52 payload-bytes-read=3996252/5242880 (76.22%)
+2019-01-31 11:30:50 1548934250.482475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3999717 total-bytes-write=52 payload-bytes-read=3999688/5242880 (76.29%)
+2019-01-31 11:30:50 1548934250.483099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4003701 total-bytes-write=52 payload-bytes-read=4003672/5242880 (76.36%)
+2019-01-31 11:30:50 1548934250.493264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4004697 total-bytes-write=52 payload-bytes-read=4004668/5242880 (76.38%)
+2019-01-31 11:30:50 1548934250.494621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4008183 total-bytes-write=52 payload-bytes-read=4008154/5242880 (76.45%)
+2019-01-31 11:30:50 1548934250.503859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4008681 total-bytes-write=52 payload-bytes-read=4008652/5242880 (76.46%)
+2019-01-31 11:30:50 1548934250.504290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4012167 total-bytes-write=52 payload-bytes-read=4012138/5242880 (76.53%)
+2019-01-31 11:30:50 1548934250.505135 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4016101 total-bytes-write=52 payload-bytes-read=4016072/5242880 (76.60%)
+2019-01-31 11:30:50 1548934250.506454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4024069 total-bytes-write=52 payload-bytes-read=4024040/5242880 (76.75%)
+2019-01-31 11:30:50 1548934250.520319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4027555 total-bytes-write=52 payload-bytes-read=4027526/5242880 (76.82%)
+2019-01-31 11:30:50 1548934250.522943 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4035473 total-bytes-write=52 payload-bytes-read=4035444/5242880 (76.97%)
+2019-01-31 11:30:50 1548934250.526793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4036967 total-bytes-write=52 payload-bytes-read=4036938/5242880 (77.00%)
+2019-01-31 11:30:50 1548934250.528122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4040453 total-bytes-write=52 payload-bytes-read=4040424/5242880 (77.06%)
+2019-01-31 11:30:50 1548934250.529490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4048371 total-bytes-write=52 payload-bytes-read=4048342/5242880 (77.22%)
+2019-01-31 11:30:50 1548934250.540819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4048869 total-bytes-write=52 payload-bytes-read=4048840/5242880 (77.23%)
+2019-01-31 11:30:50 1548934250.542309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4056339 total-bytes-write=52 payload-bytes-read=4056310/5242880 (77.37%)
+2019-01-31 11:30:50 1548934250.542776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4060323 total-bytes-write=52 payload-bytes-read=4060294/5242880 (77.44%)
+2019-01-31 11:30:50 1548934250.543329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4064257 total-bytes-write=52 payload-bytes-read=4064228/5242880 (77.52%)
+2019-01-31 11:30:50 1548934250.551486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4067743 total-bytes-write=52 payload-bytes-read=4067714/5242880 (77.59%)
+2019-01-31 11:30:50 1548934250.552672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4075711 total-bytes-write=52 payload-bytes-read=4075682/5242880 (77.74%)
+2019-01-31 11:30:50 1548934250.554395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4080143 total-bytes-write=52 payload-bytes-read=4080114/5242880 (77.82%)
+2019-01-31 11:30:50 1548934250.555139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4087613 total-bytes-write=52 payload-bytes-read=4087584/5242880 (77.96%)
+2019-01-31 11:30:50 1548934250.572662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4088111 total-bytes-write=52 payload-bytes-read=4088082/5242880 (77.97%)
+2019-01-31 11:30:50 1548934250.573756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4091597 total-bytes-write=52 payload-bytes-read=4091568/5242880 (78.04%)
+2019-01-31 11:30:50 1548934250.583545 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4095083 total-bytes-write=52 payload-bytes-read=4095054/5242880 (78.11%)
+2019-01-31 11:30:50 1548934250.624479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4135769 total-bytes-write=52 payload-bytes-read=4135740/5242880 (78.88%)
+2019-01-31 11:30:50 1548934250.668408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4140251 total-bytes-write=52 payload-bytes-read=4140222/5242880 (78.97%)
+2019-01-31 11:30:50 1548934250.673836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4143737 total-bytes-write=52 payload-bytes-read=4143708/5242880 (79.03%)
+2019-01-31 11:30:50 1548934250.675111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4146675 total-bytes-write=52 payload-bytes-read=4146646/5242880 (79.09%)
+2019-01-31 11:30:50 1548934250.683826 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4150161 total-bytes-write=52 payload-bytes-read=4150132/5242880 (79.16%)
+2019-01-31 11:30:50 1548934250.685621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4156635 total-bytes-write=52 payload-bytes-read=4156606/5242880 (79.28%)
+2019-01-31 11:30:50 1548934250.695042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4160121 total-bytes-write=52 payload-bytes-read=4160092/5242880 (79.35%)
+2019-01-31 11:30:50 1548934250.710269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4163557 total-bytes-write=52 payload-bytes-read=4163528/5242880 (79.41%)
+2019-01-31 11:30:50 1548934250.751405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4164055 total-bytes-write=52 payload-bytes-read=4164026/5242880 (79.42%)
+2019-01-31 11:30:50 1548934250.755635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4167541 total-bytes-write=52 payload-bytes-read=4167512/5242880 (79.49%)
+2019-01-31 11:30:50 1548934250.821611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4168537 total-bytes-write=52 payload-bytes-read=4168508/5242880 (79.51%)
+2019-01-31 11:30:50 1548934250.821985 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4176007 total-bytes-write=52 payload-bytes-read=4175978/5242880 (79.65%)
+2019-01-31 11:30:50 1548934250.822101 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4179941 total-bytes-write=52 payload-bytes-read=4179912/5242880 (79.73%)
+2019-01-31 11:30:50 1548934250.830051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4180439 total-bytes-write=52 payload-bytes-read=4180410/5242880 (79.73%)
+2019-01-31 11:30:50 1548934250.832131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4183925 total-bytes-write=52 payload-bytes-read=4183896/5242880 (79.80%)
+2019-01-31 11:30:50 1548934250.833141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4189901 total-bytes-write=52 payload-bytes-read=4189872/5242880 (79.92%)
+2019-01-31 11:30:50 1548934250.865847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4193387 total-bytes-write=52 payload-bytes-read=4193358/5242880 (79.98%)
+2019-01-31 11:30:50 1548934250.868018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4197321 total-bytes-write=52 payload-bytes-read=4197292/5242880 (80.06%)
+2019-01-31 11:30:50 1548934250.878627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4201803 total-bytes-write=52 payload-bytes-read=4201774/5242880 (80.14%)
+2019-01-31 11:30:50 1548934250.879269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4205787 total-bytes-write=52 payload-bytes-read=4205758/5242880 (80.22%)
+2019-01-31 11:30:50 1548934250.889314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4209771 total-bytes-write=52 payload-bytes-read=4209742/5242880 (80.29%)
+2019-01-31 11:30:50 1548934250.932388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4217191 total-bytes-write=52 payload-bytes-read=4217162/5242880 (80.44%)
+2019-01-31 11:30:51 1548934251.107116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4220677 total-bytes-write=52 payload-bytes-read=4220648/5242880 (80.50%)
+2019-01-31 11:30:51 1548934251.107199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4223167 total-bytes-write=52 payload-bytes-read=4223138/5242880 (80.55%)
+2019-01-31 11:30:51 1548934251.118723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4226653 total-bytes-write=52 payload-bytes-read=4226624/5242880 (80.62%)
+2019-01-31 11:30:51 1548934251.139756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4230089 total-bytes-write=52 payload-bytes-read=4230060/5242880 (80.68%)
+2019-01-31 11:30:51 1548934251.144945 [message] [shd-tgen-driver.c:107] [_tgendriver_onHeartbeat] [driver-heartbeat] bytes-read=14716017 bytes-written=332 current-transfers-succeeded=2 current-transfers-failed=0 total-transfers-succeeded=2 total-transfers-failed=0
+2019-01-31 11:30:51 1548934251.144999 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE moving from state PAYLOAD to state ERROR
+2019-01-31 11:30:51 1548934251.145039 [info] [shd-tgen-transfer.c:371] [_tgentransfer_changeError] transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=ERROR,error=NONE moving from error NONE to error TIMEOUT
+2019-01-31 11:30:51 1548934251.145092 [message] [shd-tgen-transfer.c:1504] [_tgentransfer_log] [transfer-error] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=ERROR,error=TIMEOUT total-bytes-read=4230089 total-bytes-write=52 payload-bytes-read=4230060/5242880 (80.68%) usecs-to-socket-create=9 usecs-to-socket-connect=190 usecs-to-proxy-init=268 usecs-to-proxy-choice=544 usecs-to-proxy-request=645 usecs-to-proxy-response=-1 usecs-to-command=574722 usecs-to-response=1205097 usecs-to-first-byte=1245750 usecs-to-last-byte=-1 usecs-to-checksum=-1
+2019-01-31 11:30:51 1548934251.145229 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:30:51 1548934251.145286 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 14
+2019-01-31 11:30:51 1548934251.145355 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:30:51 1548934251.145417 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:30:51 1548934251.145558 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:30:51 1548934251.145619 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:30:51 1548934251.924119 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:30:51 1548934251.924181 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:30:51 1548934251.924251 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36428 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:30:51 1548934251.924300 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:30:51 1548934251.924372 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,4,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:30:52 1548934252.579879 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:30:52 1548934252.579955 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:30:52 1548934252.684458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:30:52 1548934252.727627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=7499 total-bytes-write=52 payload-bytes-read=7470/5242880 (0.14%)
+2019-01-31 11:30:52 1548934252.766982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=11483 total-bytes-write=52 payload-bytes-read=11454/5242880 (0.22%)
+2019-01-31 11:30:52 1548934252.768148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=15965 total-bytes-write=52 payload-bytes-read=15936/5242880 (0.30%)
+2019-01-31 11:30:52 1548934252.810266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=19401 total-bytes-write=52 payload-bytes-read=19372/5242880 (0.37%)
+2019-01-31 11:30:52 1548934252.811215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=20397 total-bytes-write=52 payload-bytes-read=20368/5242880 (0.39%)
+2019-01-31 11:30:52 1548934252.850842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=23883 total-bytes-write=52 payload-bytes-read=23854/5242880 (0.45%)
+2019-01-31 11:30:52 1548934252.851978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=27369 total-bytes-write=52 payload-bytes-read=27340/5242880 (0.52%)
+2019-01-31 11:30:52 1548934252.855428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=31851 total-bytes-write=52 payload-bytes-read=31822/5242880 (0.61%)
+2019-01-31 11:30:52 1548934252.855822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=35785 total-bytes-write=52 payload-bytes-read=35756/5242880 (0.68%)
+2019-01-31 11:30:52 1548934252.898296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=39271 total-bytes-write=52 payload-bytes-read=39242/5242880 (0.75%)
+2019-01-31 11:30:52 1548934252.899360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=43255 total-bytes-write=52 payload-bytes-read=43226/5242880 (0.82%)
+2019-01-31 11:30:52 1548934252.899829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=47239 total-bytes-write=52 payload-bytes-read=47210/5242880 (0.90%)
+2019-01-31 11:30:52 1548934252.933822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=51671 total-bytes-write=52 payload-bytes-read=51642/5242880 (0.98%)
+2019-01-31 11:30:52 1548934252.935263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=55157 total-bytes-write=52 payload-bytes-read=55128/5242880 (1.05%)
+2019-01-31 11:30:52 1548934252.937647 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=59141 total-bytes-write=52 payload-bytes-read=59112/5242880 (1.13%)
+2019-01-31 11:30:52 1548934252.942726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=63189 total-bytes-write=52 payload-bytes-read=63160/5242880 (1.20%)
+2019-01-31 11:30:52 1548934252.984408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=86431 total-bytes-write=52 payload-bytes-read=86402/5242880 (1.65%)
+2019-01-31 11:30:53 1548934253.028479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=130653 total-bytes-write=52 payload-bytes-read=130624/5242880 (2.49%)
+2019-01-31 11:30:53 1548934253.072468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=166359 total-bytes-write=52 payload-bytes-read=166330/5242880 (3.17%)
+2019-01-31 11:30:53 1548934253.073440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=170343 total-bytes-write=52 payload-bytes-read=170314/5242880 (3.25%)
+2019-01-31 11:30:53 1548934253.075567 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=174825 total-bytes-write=52 payload-bytes-read=174796/5242880 (3.33%)
+2019-01-31 11:30:53 1548934253.075737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=182245 total-bytes-write=52 payload-bytes-read=182216/5242880 (3.48%)
+2019-01-31 11:30:53 1548934253.075862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=186229 total-bytes-write=52 payload-bytes-read=186200/5242880 (3.55%)
+2019-01-31 11:30:53 1548934253.102315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=190711 total-bytes-write=52 payload-bytes-read=190682/5242880 (3.64%)
+2019-01-31 11:30:53 1548934253.103722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=194197 total-bytes-write=52 payload-bytes-read=194168/5242880 (3.70%)
+2019-01-31 11:30:53 1548934253.105068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=202115 total-bytes-write=52 payload-bytes-read=202086/5242880 (3.85%)
+2019-01-31 11:30:53 1548934253.106604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=206099 total-bytes-write=52 payload-bytes-read=206070/5242880 (3.93%)
+2019-01-31 11:30:53 1548934253.107240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=210083 total-bytes-write=52 payload-bytes-read=210054/5242880 (4.01%)
+2019-01-31 11:30:53 1548934253.148456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:30:53 1548934253.550304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:30:53 1548934253.634306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=254753 total-bytes-write=52 payload-bytes-read=254724/5242880 (4.86%)
+2019-01-31 11:30:53 1548934253.717142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=258239 total-bytes-write=52 payload-bytes-read=258210/5242880 (4.92%)
+2019-01-31 11:30:53 1548934253.717381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=261725 total-bytes-write=52 payload-bytes-read=261696/5242880 (4.99%)
+2019-01-31 11:30:53 1548934253.718852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=266157 total-bytes-write=52 payload-bytes-read=266128/5242880 (5.08%)
+2019-01-31 11:30:53 1548934253.764408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:30:53 1548934253.802353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=274125 total-bytes-write=52 payload-bytes-read=274096/5242880 (5.23%)
+2019-01-31 11:30:53 1548934253.803659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=279553 total-bytes-write=52 payload-bytes-read=279524/5242880 (5.33%)
+2019-01-31 11:30:53 1548934253.805974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=287023 total-bytes-write=52 payload-bytes-read=286994/5242880 (5.47%)
+2019-01-31 11:30:53 1548934253.806210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=291007 total-bytes-write=52 payload-bytes-read=290978/5242880 (5.55%)
+2019-01-31 11:30:53 1548934253.845847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:30:53 1548934253.846933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=295439 total-bytes-write=52 payload-bytes-read=295410/5242880 (5.63%)
+2019-01-31 11:30:53 1548934253.883666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=299423 total-bytes-write=52 payload-bytes-read=299394/5242880 (5.71%)
+2019-01-31 11:30:53 1548934253.886827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=303905 total-bytes-write=52 payload-bytes-read=303876/5242880 (5.80%)
+2019-01-31 11:30:53 1548934253.889144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=307391 total-bytes-write=52 payload-bytes-read=307362/5242880 (5.86%)
+2019-01-31 11:30:53 1548934253.891722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=311439 total-bytes-write=52 payload-bytes-read=311410/5242880 (5.94%)
+2019-01-31 11:30:53 1548934253.932436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=340159 total-bytes-write=52 payload-bytes-read=340130/5242880 (6.49%)
+2019-01-31 11:30:53 1548934253.976437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=373425 total-bytes-write=52 payload-bytes-read=373396/5242880 (7.12%)
+2019-01-31 11:30:54 1548934254.020493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=421581 total-bytes-write=52 payload-bytes-read=421552/5242880 (8.04%)
+2019-01-31 11:30:54 1548934254.064481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=453851 total-bytes-write=52 payload-bytes-read=453822/5242880 (8.66%)
+2019-01-31 11:30:54 1548934254.067704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=461769 total-bytes-write=52 payload-bytes-read=461740/5242880 (8.81%)
+2019-01-31 11:30:54 1548934254.072518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=469239 total-bytes-write=52 payload-bytes-read=469210/5242880 (8.95%)
+2019-01-31 11:30:54 1548934254.072720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=477157 total-bytes-write=52 payload-bytes-read=477128/5242880 (9.10%)
+2019-01-31 11:30:54 1548934254.072921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=485125 total-bytes-write=52 payload-bytes-read=485096/5242880 (9.25%)
+2019-01-31 11:30:54 1548934254.073131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=493043 total-bytes-write=52 payload-bytes-read=493014/5242880 (9.40%)
+2019-01-31 11:30:54 1548934254.073273 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=496031 total-bytes-write=52 payload-bytes-read=496002/5242880 (9.46%)
+2019-01-31 11:30:54 1548934254.449372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=499517 total-bytes-write=52 payload-bytes-read=499488/5242880 (9.53%)
+2019-01-31 11:30:54 1548934254.470319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=506987 total-bytes-write=52 payload-bytes-read=506958/5242880 (9.67%)
+2019-01-31 11:30:54 1548934254.470416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=510921 total-bytes-write=52 payload-bytes-read=510892/5242880 (9.74%)
+2019-01-31 11:30:54 1548934254.495313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=514407 total-bytes-write=52 payload-bytes-read=514378/5242880 (9.81%)
+2019-01-31 11:30:54 1548934254.525753 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=517893 total-bytes-write=52 payload-bytes-read=517864/5242880 (9.88%)
+2019-01-31 11:30:54 1548934254.559255 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=519387 total-bytes-write=52 payload-bytes-read=519358/5242880 (9.91%)
+2019-01-31 11:30:54 1548934254.560862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=526807 total-bytes-write=52 payload-bytes-read=526778/5242880 (10.05%)
+2019-01-31 11:30:54 1548934254.561098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=534775 total-bytes-write=52 payload-bytes-read=534746/5242880 (10.20%)
+2019-01-31 11:30:54 1548934254.562477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=538759 total-bytes-write=52 payload-bytes-read=538730/5242880 (10.28%)
+2019-01-31 11:30:54 1548934254.562548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=542693 total-bytes-write=52 payload-bytes-read=542664/5242880 (10.35%)
+2019-01-31 11:30:54 1548934254.571675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=543689 total-bytes-write=52 payload-bytes-read=543660/5242880 (10.37%)
+2019-01-31 11:30:54 1548934254.575509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=547175 total-bytes-write=52 payload-bytes-read=547146/5242880 (10.44%)
+2019-01-31 11:30:54 1548934254.577967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=551159 total-bytes-write=52 payload-bytes-read=551130/5242880 (10.51%)
+2019-01-31 11:30:54 1548934254.581154 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=554645 total-bytes-write=52 payload-bytes-read=554616/5242880 (10.58%)
+2019-01-31 11:30:54 1548934254.583598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=558081 total-bytes-write=52 payload-bytes-read=558052/5242880 (10.64%)
+2019-01-31 11:30:54 1548934254.591632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=561567 total-bytes-write=52 payload-bytes-read=561538/5242880 (10.71%)
+2019-01-31 11:30:54 1548934254.594559 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=565551 total-bytes-write=52 payload-bytes-read=565522/5242880 (10.79%)
+2019-01-31 11:30:54 1548934254.601654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=567045 total-bytes-write=52 payload-bytes-read=567016/5242880 (10.81%)
+2019-01-31 11:30:54 1548934254.602180 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=570531 total-bytes-write=52 payload-bytes-read=570502/5242880 (10.88%)
+2019-01-31 11:30:54 1548934254.613489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=573967 total-bytes-write=52 payload-bytes-read=573938/5242880 (10.95%)
+2019-01-31 11:30:54 1548934254.623741 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=577453 total-bytes-write=52 payload-bytes-read=577424/5242880 (11.01%)
+2019-01-31 11:30:54 1548934254.636361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=578449 total-bytes-write=52 payload-bytes-read=578420/5242880 (11.03%)
+2019-01-31 11:30:54 1548934254.639647 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=582497 total-bytes-write=52 payload-bytes-read=582468/5242880 (11.11%)
+2019-01-31 11:30:54 1548934254.680528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=647969 total-bytes-write=52 payload-bytes-read=647940/5242880 (12.36%)
+2019-01-31 11:30:54 1548934254.724456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=690647 total-bytes-write=52 payload-bytes-read=690618/5242880 (13.17%)
+2019-01-31 11:30:54 1548934254.755463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=694133 total-bytes-write=52 payload-bytes-read=694104/5242880 (13.24%)
+2019-01-31 11:30:54 1548934254.766743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=694631 total-bytes-write=52 payload-bytes-read=694602/5242880 (13.25%)
+2019-01-31 11:30:54 1548934254.767838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=698117 total-bytes-write=52 payload-bytes-read=698088/5242880 (13.31%)
+2019-01-31 11:30:54 1548934254.769414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=702101 total-bytes-write=52 payload-bytes-read=702072/5242880 (13.39%)
+2019-01-31 11:30:54 1548934254.772248 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=710019 total-bytes-write=52 payload-bytes-read=709990/5242880 (13.54%)
+2019-01-31 11:30:54 1548934254.772383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=714003 total-bytes-write=52 payload-bytes-read=713974/5242880 (13.62%)
+2019-01-31 11:30:54 1548934254.772566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=717987 total-bytes-write=52 payload-bytes-read=717958/5242880 (13.69%)
+2019-01-31 11:30:54 1548934254.816397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=733375 total-bytes-write=52 payload-bytes-read=733346/5242880 (13.99%)
+2019-01-31 11:30:54 1548934254.860391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=743783 total-bytes-write=52 payload-bytes-read=743754/5242880 (14.19%)
+2019-01-31 11:30:54 1548934254.905658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=744281 total-bytes-write=52 payload-bytes-read=744252/5242880 (14.20%)
+2019-01-31 11:30:55 1548934255.360610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=747767 total-bytes-write=52 payload-bytes-read=747738/5242880 (14.26%)
+2019-01-31 11:30:55 1548934255.448051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=751253 total-bytes-write=52 payload-bytes-read=751224/5242880 (14.33%)
+2019-01-31 11:30:55 1548934255.534238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=758673 total-bytes-write=52 payload-bytes-read=758644/5242880 (14.47%)
+2019-01-31 11:30:55 1548934255.534341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=762657 total-bytes-write=52 payload-bytes-read=762628/5242880 (14.55%)
+2019-01-31 11:30:55 1548934255.574810 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=766143 total-bytes-write=52 payload-bytes-read=766114/5242880 (14.61%)
+2019-01-31 11:30:55 1548934255.621175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=770077 total-bytes-write=52 payload-bytes-read=770048/5242880 (14.69%)
+2019-01-31 11:30:55 1548934255.624460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=774061 total-bytes-write=52 payload-bytes-read=774032/5242880 (14.76%)
+2019-01-31 11:30:55 1548934255.626384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=778045 total-bytes-write=52 payload-bytes-read=778016/5242880 (14.84%)
+2019-01-31 11:30:55 1548934255.627176 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=778543 total-bytes-write=52 payload-bytes-read=778514/5242880 (14.85%)
+2019-01-31 11:30:55 1548934255.628169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=782029 total-bytes-write=52 payload-bytes-read=782000/5242880 (14.92%)
+2019-01-31 11:30:55 1548934255.628801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=783025 total-bytes-write=52 payload-bytes-read=782996/5242880 (14.93%)
+2019-01-31 11:30:55 1548934255.630824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=786461 total-bytes-write=52 payload-bytes-read=786432/5242880 (15.00%)
+2019-01-31 11:30:55 1548934255.663950 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=791939 total-bytes-write=52 payload-bytes-read=791910/5242880 (15.10%)
+2019-01-31 11:30:55 1548934255.702384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=795425 total-bytes-write=52 payload-bytes-read=795396/5242880 (15.17%)
+2019-01-31 11:30:55 1548934255.708236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=799409 total-bytes-write=52 payload-bytes-read=799380/5242880 (15.25%)
+2019-01-31 11:30:55 1548934255.710074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=803457 total-bytes-write=52 payload-bytes-read=803428/5242880 (15.32%)
+2019-01-31 11:30:55 1548934255.752478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=843581 total-bytes-write=52 payload-bytes-read=843552/5242880 (16.09%)
+2019-01-31 11:30:55 1548934255.796418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=862455 total-bytes-write=52 payload-bytes-read=862426/5242880 (16.45%)
+2019-01-31 11:30:55 1548934255.798843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=866439 total-bytes-write=52 payload-bytes-read=866410/5242880 (16.53%)
+2019-01-31 11:30:55 1548934255.799098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=870373 total-bytes-write=52 payload-bytes-read=870344/5242880 (16.60%)
+2019-01-31 11:30:55 1548934255.806379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=877843 total-bytes-write=52 payload-bytes-read=877814/5242880 (16.74%)
+2019-01-31 11:30:55 1548934255.809507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=885761 total-bytes-write=52 payload-bytes-read=885732/5242880 (16.89%)
+2019-01-31 11:30:55 1548934255.809627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=889745 total-bytes-write=52 payload-bytes-read=889716/5242880 (16.97%)
+2019-01-31 11:30:55 1548934255.811672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=894227 total-bytes-write=52 payload-bytes-read=894198/5242880 (17.06%)
+2019-01-31 11:30:55 1548934255.811894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=901647 total-bytes-write=52 payload-bytes-read=901618/5242880 (17.20%)
+2019-01-31 11:30:55 1548934255.813620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=909615 total-bytes-write=52 payload-bytes-read=909586/5242880 (17.35%)
+2019-01-31 11:30:55 1548934255.813751 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=913599 total-bytes-write=52 payload-bytes-read=913570/5242880 (17.42%)
+2019-01-31 11:30:55 1548934255.814196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=917533 total-bytes-write=52 payload-bytes-read=917504/5242880 (17.50%)
+2019-01-31 11:30:55 1548934255.830984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=921517 total-bytes-write=52 payload-bytes-read=921488/5242880 (17.58%)
+2019-01-31 11:30:55 1548934255.831748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=925999 total-bytes-write=52 payload-bytes-read=925970/5242880 (17.66%)
+2019-01-31 11:30:55 1548934255.833339 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=929485 total-bytes-write=52 payload-bytes-read=929456/5242880 (17.73%)
+2019-01-31 11:30:55 1548934255.868436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=933469 total-bytes-write=52 payload-bytes-read=933440/5242880 (17.80%)
+2019-01-31 11:30:55 1548934255.874011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=937403 total-bytes-write=52 payload-bytes-read=937374/5242880 (17.88%)
+2019-01-31 11:30:55 1548934255.876064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=941885 total-bytes-write=52 payload-bytes-read=941856/5242880 (17.96%)
+2019-01-31 11:30:55 1548934255.876250 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=945371 total-bytes-write=52 payload-bytes-read=945342/5242880 (18.03%)
+2019-01-31 11:30:55 1548934255.877045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=949355 total-bytes-write=52 payload-bytes-read=949326/5242880 (18.11%)
+2019-01-31 11:30:55 1548934255.877906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=953289 total-bytes-write=52 payload-bytes-read=953260/5242880 (18.18%)
+2019-01-31 11:30:55 1548934255.881003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=957273 total-bytes-write=52 payload-bytes-read=957244/5242880 (18.26%)
+2019-01-31 11:30:55 1548934255.884331 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=960759 total-bytes-write=52 payload-bytes-read=960730/5242880 (18.32%)
+2019-01-31 11:30:55 1548934255.887019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=968677 total-bytes-write=52 payload-bytes-read=968648/5242880 (18.48%)
+2019-01-31 11:30:55 1548934255.887193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=972661 total-bytes-write=52 payload-bytes-read=972632/5242880 (18.55%)
+2019-01-31 11:30:55 1548934255.889269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=980629 total-bytes-write=52 payload-bytes-read=980600/5242880 (18.70%)
+2019-01-31 11:30:55 1548934255.889428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=984563 total-bytes-write=52 payload-bytes-read=984534/5242880 (18.78%)
+2019-01-31 11:30:55 1548934255.897200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=988547 total-bytes-write=52 payload-bytes-read=988518/5242880 (18.85%)
+2019-01-31 11:30:55 1548934255.951422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=992531 total-bytes-write=52 payload-bytes-read=992502/5242880 (18.93%)
+2019-01-31 11:30:56 1548934256.594941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=996017 total-bytes-write=52 payload-bytes-read=995988/5242880 (19.00%)
+2019-01-31 11:30:56 1548934256.677504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=999453 total-bytes-write=52 payload-bytes-read=999424/5242880 (19.06%)
+2019-01-31 11:30:56 1548934256.761197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1002939 total-bytes-write=52 payload-bytes-read=1002910/5242880 (19.13%)
+2019-01-31 11:30:56 1548934256.763849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1010907 total-bytes-write=52 payload-bytes-read=1010878/5242880 (19.28%)
+2019-01-31 11:30:56 1548934256.855811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1017331 total-bytes-write=52 payload-bytes-read=1017302/5242880 (19.40%)
+2019-01-31 11:30:56 1548934256.855901 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1021813 total-bytes-write=52 payload-bytes-read=1021784/5242880 (19.49%)
+2019-01-31 11:30:56 1548934256.856181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1029283 total-bytes-write=52 payload-bytes-read=1029254/5242880 (19.63%)
+2019-01-31 11:30:56 1548934256.939262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1035707 total-bytes-write=52 payload-bytes-read=1035678/5242880 (19.75%)
+2019-01-31 11:30:56 1548934256.943809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1043177 total-bytes-write=52 payload-bytes-read=1043148/5242880 (19.90%)
+2019-01-31 11:30:56 1548934256.944748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1049103 total-bytes-write=52 payload-bytes-read=1049074/5242880 (20.01%)
+2019-01-31 11:30:56 1548934256.944828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1052589 total-bytes-write=52 payload-bytes-read=1052560/5242880 (20.08%)
+2019-01-31 11:30:57 1548934257.023917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1056573 total-bytes-write=52 payload-bytes-read=1056544/5242880 (20.15%)
+2019-01-31 11:30:57 1548934257.038403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1060621 total-bytes-write=52 payload-bytes-read=1060592/5242880 (20.23%)
+2019-01-31 11:30:57 1548934257.080479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1098753 total-bytes-write=52 payload-bytes-read=1098724/5242880 (20.96%)
+2019-01-31 11:30:57 1548934257.124377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1102239 total-bytes-write=52 payload-bytes-read=1102210/5242880 (21.02%)
+2019-01-31 11:30:57 1548934257.167511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1106223 total-bytes-write=52 payload-bytes-read=1106194/5242880 (21.10%)
+2019-01-31 11:30:57 1548934257.169439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1109709 total-bytes-write=52 payload-bytes-read=1109680/5242880 (21.17%)
+2019-01-31 11:30:57 1548934257.171680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1113693 total-bytes-write=52 payload-bytes-read=1113664/5242880 (21.24%)
+2019-01-31 11:30:57 1548934257.173018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1117627 total-bytes-write=52 payload-bytes-read=1117598/5242880 (21.32%)
+2019-01-31 11:30:57 1548934257.176217 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1122109 total-bytes-write=52 payload-bytes-read=1122080/5242880 (21.40%)
+2019-01-31 11:30:57 1548934257.176514 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1129579 total-bytes-write=52 payload-bytes-read=1129550/5242880 (21.54%)
+2019-01-31 11:30:57 1548934257.178512 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1137497 total-bytes-write=52 payload-bytes-read=1137468/5242880 (21.70%)
+2019-01-31 11:30:57 1548934257.178681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1141481 total-bytes-write=52 payload-bytes-read=1141452/5242880 (21.77%)
+2019-01-31 11:30:57 1548934257.178856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1145465 total-bytes-write=52 payload-bytes-read=1145436/5242880 (21.85%)
+2019-01-31 11:30:57 1548934257.220453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1181171 total-bytes-write=52 payload-bytes-read=1181142/5242880 (22.53%)
+2019-01-31 11:30:57 1548934257.268534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1197057 total-bytes-write=52 payload-bytes-read=1197028/5242880 (22.83%)
+2019-01-31 11:30:57 1548934257.272818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1201539 total-bytes-write=52 payload-bytes-read=1201510/5242880 (22.92%)
+2019-01-31 11:30:57 1548934257.273642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1205025 total-bytes-write=52 payload-bytes-read=1204996/5242880 (22.98%)
+2019-01-31 11:30:57 1548934257.275904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1212943 total-bytes-write=52 payload-bytes-read=1212914/5242880 (23.13%)
+2019-01-31 11:30:57 1548934257.281412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1216927 total-bytes-write=52 payload-bytes-read=1216898/5242880 (23.21%)
+2019-01-31 11:30:57 1548934257.288228 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1224895 total-bytes-write=52 payload-bytes-read=1224866/5242880 (23.36%)
+2019-01-31 11:30:57 1548934257.293027 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1228829 total-bytes-write=52 payload-bytes-read=1228800/5242880 (23.44%)
+2019-01-31 11:30:57 1548934257.294116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1232813 total-bytes-write=52 payload-bytes-read=1232784/5242880 (23.51%)
+2019-01-31 11:30:57 1548934257.298827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1236299 total-bytes-write=52 payload-bytes-read=1236270/5242880 (23.58%)
+2019-01-31 11:30:57 1548934257.299381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1240781 total-bytes-write=52 payload-bytes-read=1240752/5242880 (23.67%)
+2019-01-31 11:30:57 1548934257.578731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1244267 total-bytes-write=52 payload-bytes-read=1244238/5242880 (23.73%)
+2019-01-31 11:30:57 1548934257.579282 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1248201 total-bytes-write=52 payload-bytes-read=1248172/5242880 (23.81%)
+2019-01-31 11:30:57 1548934257.594202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1251687 total-bytes-write=52 payload-bytes-read=1251658/5242880 (23.87%)
+2019-01-31 11:30:57 1548934257.611949 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1252185 total-bytes-write=52 payload-bytes-read=1252156/5242880 (23.88%)
+2019-01-31 11:30:57 1548934257.612425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1255671 total-bytes-write=52 payload-bytes-read=1255642/5242880 (23.95%)
+2019-01-31 11:30:57 1548934257.639433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1259655 total-bytes-write=52 payload-bytes-read=1259626/5242880 (24.03%)
+2019-01-31 11:30:57 1548934257.645677 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1263589 total-bytes-write=52 payload-bytes-read=1263560/5242880 (24.10%)
+2019-01-31 11:30:57 1548934257.645747 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1265581 total-bytes-write=52 payload-bytes-read=1265552/5242880 (24.14%)
+2019-01-31 11:30:57 1548934257.656462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1272055 total-bytes-write=52 payload-bytes-read=1272026/5242880 (24.26%)
+2019-01-31 11:30:57 1548934257.673032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1279475 total-bytes-write=52 payload-bytes-read=1279446/5242880 (24.40%)
+2019-01-31 11:30:57 1548934257.673151 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1283459 total-bytes-write=52 payload-bytes-read=1283430/5242880 (24.48%)
+2019-01-31 11:30:57 1548934257.687261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1283957 total-bytes-write=52 payload-bytes-read=1283928/5242880 (24.49%)
+2019-01-31 11:30:57 1548934257.688507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1287443 total-bytes-write=52 payload-bytes-read=1287414/5242880 (24.56%)
+2019-01-31 11:30:57 1548934257.754768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1292423 total-bytes-write=52 payload-bytes-read=1292394/5242880 (24.65%)
+2019-01-31 11:30:57 1548934257.754923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1296357 total-bytes-write=52 payload-bytes-read=1296328/5242880 (24.73%)
+2019-01-31 11:30:57 1548934257.755917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1304325 total-bytes-write=52 payload-bytes-read=1304296/5242880 (24.88%)
+2019-01-31 11:30:57 1548934257.756763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1308309 total-bytes-write=52 payload-bytes-read=1308280/5242880 (24.95%)
+2019-01-31 11:30:57 1548934257.758095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1316227 total-bytes-write=52 payload-bytes-read=1316198/5242880 (25.10%)
+2019-01-31 11:30:57 1548934257.758179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1317721 total-bytes-write=52 payload-bytes-read=1317692/5242880 (25.13%)
+2019-01-31 11:30:57 1548934257.764444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1321207 total-bytes-write=52 payload-bytes-read=1321178/5242880 (25.20%)
+2019-01-31 11:30:57 1548934257.765985 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1325191 total-bytes-write=52 payload-bytes-read=1325162/5242880 (25.28%)
+2019-01-31 11:30:57 1548934257.766307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1329125 total-bytes-write=52 payload-bytes-read=1329096/5242880 (25.35%)
+2019-01-31 11:30:57 1548934257.830657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1332611 total-bytes-write=52 payload-bytes-read=1332582/5242880 (25.42%)
+2019-01-31 11:30:57 1548934257.841019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1336097 total-bytes-write=52 payload-bytes-read=1336068/5242880 (25.48%)
+2019-01-31 11:30:57 1548934257.884368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1336595 total-bytes-write=52 payload-bytes-read=1336566/5242880 (25.49%)
+2019-01-31 11:30:57 1548934257.885100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1340081 total-bytes-write=52 payload-bytes-read=1340052/5242880 (25.56%)
+2019-01-31 11:30:57 1548934257.928509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1397649 total-bytes-write=52 payload-bytes-read=1397620/5242880 (26.66%)
+2019-01-31 11:30:57 1548934257.972442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1431911 total-bytes-write=52 payload-bytes-read=1431882/5242880 (27.31%)
+2019-01-31 11:30:58 1548934258.012975 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1433405 total-bytes-write=52 payload-bytes-read=1433376/5242880 (27.34%)
+2019-01-31 11:30:58 1548934258.015904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1436891 total-bytes-write=52 payload-bytes-read=1436862/5242880 (27.41%)
+2019-01-31 11:30:58 1548934258.068893 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1438385 total-bytes-write=52 payload-bytes-read=1438356/5242880 (27.43%)
+2019-01-31 11:30:58 1548934258.082079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1445805 total-bytes-write=52 payload-bytes-read=1445776/5242880 (27.58%)
+2019-01-31 11:30:58 1548934258.082162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1449789 total-bytes-write=52 payload-bytes-read=1449760/5242880 (27.65%)
+2019-01-31 11:30:58 1548934258.089342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1453275 total-bytes-write=52 payload-bytes-read=1453246/5242880 (27.72%)
+2019-01-31 11:30:58 1548934258.090955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1461193 total-bytes-write=52 payload-bytes-read=1461164/5242880 (27.87%)
+2019-01-31 11:30:58 1548934258.092489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1465675 total-bytes-write=52 payload-bytes-read=1465646/5242880 (27.95%)
+2019-01-31 11:30:58 1548934258.092652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1469161 total-bytes-write=52 payload-bytes-read=1469132/5242880 (28.02%)
+2019-01-31 11:30:58 1548934258.095190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1477079 total-bytes-write=52 payload-bytes-read=1477050/5242880 (28.17%)
+2019-01-31 11:30:58 1548934258.095326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1481063 total-bytes-write=52 payload-bytes-read=1481034/5242880 (28.25%)
+2019-01-31 11:30:58 1548934258.100156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1481561 total-bytes-write=52 payload-bytes-read=1481532/5242880 (28.26%)
+2019-01-31 11:30:58 1548934258.101112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1485047 total-bytes-write=52 payload-bytes-read=1485018/5242880 (28.32%)
+2019-01-31 11:30:58 1548934258.139695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1486541 total-bytes-write=52 payload-bytes-read=1486512/5242880 (28.35%)
+2019-01-31 11:30:58 1548934258.140134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1489031 total-bytes-write=52 payload-bytes-read=1489002/5242880 (28.40%)
+2019-01-31 11:30:58 1548934258.594206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1490973 total-bytes-write=52 payload-bytes-read=1490944/5242880 (28.44%)
+2019-01-31 11:30:58 1548934258.677303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1494459 total-bytes-write=52 payload-bytes-read=1494430/5242880 (28.50%)
+2019-01-31 11:30:58 1548934258.731581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1497447 total-bytes-write=52 payload-bytes-read=1497418/5242880 (28.56%)
+2019-01-31 11:30:58 1548934258.759995 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1500933 total-bytes-write=52 payload-bytes-read=1500904/5242880 (28.63%)
+2019-01-31 11:30:58 1548934258.760895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1504917 total-bytes-write=52 payload-bytes-read=1504888/5242880 (28.70%)
+2019-01-31 11:30:58 1548934258.816365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1508851 total-bytes-write=52 payload-bytes-read=1508822/5242880 (28.78%)
+2019-01-31 11:30:58 1548934258.842870 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1512835 total-bytes-write=52 payload-bytes-read=1512806/5242880 (28.85%)
+2019-01-31 11:30:58 1548934258.843029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1513333 total-bytes-write=52 payload-bytes-read=1513304/5242880 (28.86%)
+2019-01-31 11:30:58 1548934258.844019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1516819 total-bytes-write=52 payload-bytes-read=1516790/5242880 (28.93%)
+2019-01-31 11:30:58 1548934258.844516 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1520305 total-bytes-write=52 payload-bytes-read=1520276/5242880 (29.00%)
+2019-01-31 11:30:58 1548934258.845365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1524239 total-bytes-write=52 payload-bytes-read=1524210/5242880 (29.07%)
+2019-01-31 11:30:58 1548934258.845712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1527227 total-bytes-write=52 payload-bytes-read=1527198/5242880 (29.13%)
+2019-01-31 11:30:58 1548934258.901330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1534697 total-bytes-write=52 payload-bytes-read=1534668/5242880 (29.27%)
+2019-01-31 11:30:58 1548934258.927123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1541619 total-bytes-write=52 payload-bytes-read=1541590/5242880 (29.40%)
+2019-01-31 11:30:58 1548934258.927814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1545667 total-bytes-write=52 payload-bytes-read=1545638/5242880 (29.48%)
+2019-01-31 11:30:58 1548934258.968428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1562485 total-bytes-write=52 payload-bytes-read=1562456/5242880 (29.80%)
+2019-01-31 11:30:59 1548934259.012448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1594257 total-bytes-write=52 payload-bytes-read=1594228/5242880 (30.41%)
+2019-01-31 11:30:59 1548934259.056474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1634495 total-bytes-write=52 payload-bytes-read=1634466/5242880 (31.17%)
+2019-01-31 11:30:59 1548934259.100446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1653369 total-bytes-write=52 payload-bytes-read=1653340/5242880 (31.53%)
+2019-01-31 11:30:59 1548934259.163998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1660789 total-bytes-write=52 payload-bytes-read=1660760/5242880 (31.68%)
+2019-01-31 11:30:59 1548934259.164092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1664773 total-bytes-write=52 payload-bytes-read=1664744/5242880 (31.75%)
+2019-01-31 11:30:59 1548934259.164280 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1672691 total-bytes-write=52 payload-bytes-read=1672662/5242880 (31.90%)
+2019-01-31 11:30:59 1548934259.164425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1677173 total-bytes-write=52 payload-bytes-read=1677144/5242880 (31.99%)
+2019-01-31 11:30:59 1548934259.164563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1681157 total-bytes-write=52 payload-bytes-read=1681128/5242880 (32.06%)
+2019-01-31 11:30:59 1548934259.164688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1685141 total-bytes-write=52 payload-bytes-read=1685112/5242880 (32.14%)
+2019-01-31 11:30:59 1548934259.208500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1737231 total-bytes-write=52 payload-bytes-read=1737202/5242880 (33.13%)
+2019-01-31 11:30:59 1548934259.736559 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1740717 total-bytes-write=52 payload-bytes-read=1740688/5242880 (33.20%)
+2019-01-31 11:30:59 1548934259.820132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1744203 total-bytes-write=52 payload-bytes-read=1744174/5242880 (33.27%)
+2019-01-31 11:30:59 1548934259.901226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1747689 total-bytes-write=52 payload-bytes-read=1747660/5242880 (33.33%)
+2019-01-31 11:30:59 1548934259.902347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1751673 total-bytes-write=52 payload-bytes-read=1751644/5242880 (33.41%)
+2019-01-31 11:30:59 1548934259.904401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1755607 total-bytes-write=52 payload-bytes-read=1755578/5242880 (33.48%)
+2019-01-31 11:30:59 1548934259.983334 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1758097 total-bytes-write=52 payload-bytes-read=1758068/5242880 (33.53%)
+2019-01-31 11:30:59 1548934259.983895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1760089 total-bytes-write=52 payload-bytes-read=1760060/5242880 (33.57%)
+2019-01-31 11:30:59 1548934259.987087 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1767559 total-bytes-write=52 payload-bytes-read=1767530/5242880 (33.71%)
+2019-01-31 11:30:59 1548934259.987153 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1769053 total-bytes-write=52 payload-bytes-read=1769024/5242880 (33.74%)
+2019-01-31 11:30:59 1548934259.987721 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1772489 total-bytes-write=52 payload-bytes-read=1772460/5242880 (33.81%)
+2019-01-31 11:30:59 1548934259.989851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1776473 total-bytes-write=52 payload-bytes-read=1776444/5242880 (33.88%)
+2019-01-31 11:31:00 1548934260.069752 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1780457 total-bytes-write=52 payload-bytes-read=1780428/5242880 (33.96%)
+2019-01-31 11:31:00 1548934260.071197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1784939 total-bytes-write=52 payload-bytes-read=1784910/5242880 (34.04%)
+2019-01-31 11:31:00 1548934260.072394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1788375 total-bytes-write=52 payload-bytes-read=1788346/5242880 (34.11%)
+2019-01-31 11:31:00 1548934260.073715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1792359 total-bytes-write=52 payload-bytes-read=1792330/5242880 (34.19%)
+2019-01-31 11:31:00 1548934260.075035 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1796407 total-bytes-write=52 payload-bytes-read=1796378/5242880 (34.26%)
+2019-01-31 11:31:00 1548934260.116436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1816213 total-bytes-write=52 payload-bytes-read=1816184/5242880 (34.64%)
+2019-01-31 11:31:00 1548934260.160422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1846989 total-bytes-write=52 payload-bytes-read=1846960/5242880 (35.23%)
+2019-01-31 11:31:00 1548934260.204457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1888173 total-bytes-write=52 payload-bytes-read=1888144/5242880 (36.01%)
+2019-01-31 11:31:00 1548934260.248481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1924427 total-bytes-write=52 payload-bytes-read=1924398/5242880 (36.70%)
+2019-01-31 11:31:00 1548934260.248556 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1928411 total-bytes-write=52 payload-bytes-read=1928382/5242880 (36.78%)
+2019-01-31 11:31:00 1548934260.250921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1932395 total-bytes-write=52 payload-bytes-read=1932366/5242880 (36.86%)
+2019-01-31 11:31:00 1548934260.292415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1955701 total-bytes-write=52 payload-bytes-read=1955672/5242880 (37.30%)
+2019-01-31 11:31:00 1548934260.336452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1985481 total-bytes-write=52 payload-bytes-read=1985452/5242880 (37.87%)
+2019-01-31 11:31:00 1548934260.694049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1988967 total-bytes-write=52 payload-bytes-read=1988938/5242880 (37.94%)
+2019-01-31 11:31:00 1548934260.705173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1992453 total-bytes-write=52 payload-bytes-read=1992424/5242880 (38.00%)
+2019-01-31 11:31:00 1548934260.714942 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1995939 total-bytes-write=52 payload-bytes-read=1995910/5242880 (38.07%)
+2019-01-31 11:31:00 1548934260.715307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1999873 total-bytes-write=52 payload-bytes-read=1999844/5242880 (38.14%)
+2019-01-31 11:31:00 1548934260.771508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2000869 total-bytes-write=52 payload-bytes-read=2000840/5242880 (38.16%)
+2019-01-31 11:31:00 1548934260.772731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2004355 total-bytes-write=52 payload-bytes-read=2004326/5242880 (38.23%)
+2019-01-31 11:31:00 1548934260.773630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2007841 total-bytes-write=52 payload-bytes-read=2007812/5242880 (38.30%)
+2019-01-31 11:31:00 1548934260.786004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2015261 total-bytes-write=52 payload-bytes-read=2015232/5242880 (38.44%)
+2019-01-31 11:31:00 1548934260.786260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2023229 total-bytes-write=52 payload-bytes-read=2023200/5242880 (38.59%)
+2019-01-31 11:31:00 1548934260.786550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2025221 total-bytes-write=52 payload-bytes-read=2025192/5242880 (38.63%)
+2019-01-31 11:31:00 1548934260.827874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2028707 total-bytes-write=52 payload-bytes-read=2028678/5242880 (38.69%)
+2019-01-31 11:31:00 1548934260.829051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2032641 total-bytes-write=52 payload-bytes-read=2032612/5242880 (38.77%)
+2019-01-31 11:31:00 1548934260.829595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2036625 total-bytes-write=52 payload-bytes-read=2036596/5242880 (38.84%)
+2019-01-31 11:31:00 1548934260.830224 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2040111 total-bytes-write=52 payload-bytes-read=2040082/5242880 (38.91%)
+2019-01-31 11:31:00 1548934260.845208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2043597 total-bytes-write=52 payload-bytes-read=2043568/5242880 (38.98%)
+2019-01-31 11:31:00 1548934260.888483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2097181 total-bytes-write=52 payload-bytes-read=2097152/5242880 (40.00%)
+2019-01-31 11:31:00 1548934260.932405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2113117 total-bytes-write=52 payload-bytes-read=2113088/5242880 (40.30%)
+2019-01-31 11:31:00 1548934260.932680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2117549 total-bytes-write=52 payload-bytes-read=2117520/5242880 (40.39%)
+2019-01-31 11:31:00 1548934260.932773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2119541 total-bytes-write=52 payload-bytes-read=2119512/5242880 (40.43%)
+2019-01-31 11:31:00 1548934260.934631 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2127011 total-bytes-write=52 payload-bytes-read=2126982/5242880 (40.57%)
+2019-01-31 11:31:00 1548934260.934754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2129949 total-bytes-write=52 payload-bytes-read=2129920/5242880 (40.62%)
+2019-01-31 11:31:00 1548934260.984874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2133435 total-bytes-write=52 payload-bytes-read=2133406/5242880 (40.69%)
+2019-01-31 11:31:01 1548934261.058063 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2134431 total-bytes-write=52 payload-bytes-read=2134402/5242880 (40.71%)
+2019-01-31 11:31:01 1548934261.059021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2137917 total-bytes-write=52 payload-bytes-read=2137888/5242880 (40.78%)
+2019-01-31 11:31:01 1548934261.060407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2145885 total-bytes-write=52 payload-bytes-read=2145856/5242880 (40.93%)
+2019-01-31 11:31:01 1548934261.061153 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2150317 total-bytes-write=52 payload-bytes-read=2150288/5242880 (41.01%)
+2019-01-31 11:31:01 1548934261.061283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2153803 total-bytes-write=52 payload-bytes-read=2153774/5242880 (41.08%)
+2019-01-31 11:31:01 1548934261.070125 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2157289 total-bytes-write=52 payload-bytes-read=2157260/5242880 (41.15%)
+2019-01-31 11:31:01 1548934261.112477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2204947 total-bytes-write=52 payload-bytes-read=2204918/5242880 (42.06%)
+2019-01-31 11:31:01 1548934261.156429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2228253 total-bytes-write=52 payload-bytes-read=2228224/5242880 (42.50%)
+2019-01-31 11:31:01 1548934261.171066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2231739 total-bytes-write=52 payload-bytes-read=2231710/5242880 (42.57%)
+2019-01-31 11:31:01 1548934261.400601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2233731 total-bytes-write=52 payload-bytes-read=2233702/5242880 (42.60%)
+2019-01-31 11:31:01 1548934261.639923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2237217 total-bytes-write=52 payload-bytes-read=2237188/5242880 (42.67%)
+2019-01-31 11:31:01 1548934261.641199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2241201 total-bytes-write=52 payload-bytes-read=2241172/5242880 (42.75%)
+2019-01-31 11:31:01 1548934261.651178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2244637 total-bytes-write=52 payload-bytes-read=2244608/5242880 (42.81%)
+2019-01-31 11:31:01 1548934261.652011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2252605 total-bytes-write=52 payload-bytes-read=2252576/5242880 (42.96%)
+2019-01-31 11:31:01 1548934261.652870 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2256589 total-bytes-write=52 payload-bytes-read=2256560/5242880 (43.04%)
+2019-01-31 11:31:01 1548934261.663074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2260075 total-bytes-write=52 payload-bytes-read=2260046/5242880 (43.11%)
+2019-01-31 11:31:01 1548934261.663946 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2264009 total-bytes-write=52 payload-bytes-read=2263980/5242880 (43.18%)
+2019-01-31 11:31:01 1548934261.664534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2267495 total-bytes-write=52 payload-bytes-read=2267466/5242880 (43.25%)
+2019-01-31 11:31:01 1548934261.675597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2270981 total-bytes-write=52 payload-bytes-read=2270952/5242880 (43.31%)
+2019-01-31 11:31:01 1548934261.677873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2278899 total-bytes-write=52 payload-bytes-read=2278870/5242880 (43.47%)
+2019-01-31 11:31:01 1548934261.678096 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2283381 total-bytes-write=52 payload-bytes-read=2283352/5242880 (43.55%)
+2019-01-31 11:31:01 1548934261.678258 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:31:01 1548934261.721016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2290353 total-bytes-write=52 payload-bytes-read=2290324/5242880 (43.68%)
+2019-01-31 11:31:01 1548934261.733091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2293789 total-bytes-write=52 payload-bytes-read=2293760/5242880 (43.75%)
+2019-01-31 11:31:01 1548934261.745137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2294785 total-bytes-write=52 payload-bytes-read=2294756/5242880 (43.77%)
+2019-01-31 11:31:01 1548934261.745954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2298271 total-bytes-write=52 payload-bytes-read=2298242/5242880 (43.84%)
+2019-01-31 11:31:01 1548934261.788538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2362811 total-bytes-write=52 payload-bytes-read=2362782/5242880 (45.07%)
+2019-01-31 11:31:01 1548934261.832440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2380689 total-bytes-write=52 payload-bytes-read=2380660/5242880 (45.41%)
+2019-01-31 11:31:01 1548934261.833043 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2388159 total-bytes-write=52 payload-bytes-read=2388130/5242880 (45.55%)
+2019-01-31 11:31:01 1548934261.838479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2393089 total-bytes-write=52 payload-bytes-read=2393060/5242880 (45.64%)
+2019-01-31 11:31:01 1548934261.840162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2396575 total-bytes-write=52 payload-bytes-read=2396546/5242880 (45.71%)
+2019-01-31 11:31:01 1548934261.842113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2400559 total-bytes-write=52 payload-bytes-read=2400530/5242880 (45.79%)
+2019-01-31 11:31:01 1548934261.842902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2403049 total-bytes-write=52 payload-bytes-read=2403020/5242880 (45.83%)
+2019-01-31 11:31:01 1548934261.851998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2406037 total-bytes-write=52 payload-bytes-read=2406008/5242880 (45.89%)
+2019-01-31 11:31:01 1548934261.938092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2407531 total-bytes-write=52 payload-bytes-read=2407502/5242880 (45.92%)
+2019-01-31 11:31:01 1548934261.949260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2410967 total-bytes-write=52 payload-bytes-read=2410938/5242880 (45.98%)
+2019-01-31 11:31:01 1548934261.959686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2414453 total-bytes-write=52 payload-bytes-read=2414424/5242880 (46.05%)
+2019-01-31 11:31:01 1548934261.960694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2418437 total-bytes-write=52 payload-bytes-read=2418408/5242880 (46.13%)
+2019-01-31 11:31:01 1548934261.961991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2426355 total-bytes-write=52 payload-bytes-read=2426326/5242880 (46.28%)
+2019-01-31 11:31:01 1548934261.962047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2426853 total-bytes-write=52 payload-bytes-read=2426824/5242880 (46.29%)
+2019-01-31 11:31:01 1548934261.962541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2430339 total-bytes-write=52 payload-bytes-read=2430310/5242880 (46.35%)
+2019-01-31 11:31:01 1548934261.963988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2438307 total-bytes-write=52 payload-bytes-read=2438278/5242880 (46.51%)
+2019-01-31 11:31:01 1548934261.964213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2442241 total-bytes-write=52 payload-bytes-read=2442212/5242880 (46.58%)
+2019-01-31 11:31:01 1548934261.971206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2442739 total-bytes-write=52 payload-bytes-read=2442710/5242880 (46.59%)
+2019-01-31 11:31:01 1548934261.971360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2443735 total-bytes-write=52 payload-bytes-read=2443706/5242880 (46.61%)
+2019-01-31 11:31:01 1548934261.982574 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2447221 total-bytes-write=52 payload-bytes-read=2447192/5242880 (46.68%)
+2019-01-31 11:31:01 1548934261.993958 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2447719 total-bytes-write=52 payload-bytes-read=2447690/5242880 (46.69%)
+2019-01-31 11:31:01 1548934261.994608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2451205 total-bytes-write=52 payload-bytes-read=2451176/5242880 (46.75%)
+2019-01-31 11:31:02 1548934262.062161 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2454691 total-bytes-write=52 payload-bytes-read=2454662/5242880 (46.82%)
+2019-01-31 11:31:02 1548934262.104462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2477997 total-bytes-write=52 payload-bytes-read=2477968/5242880 (47.26%)
+2019-01-31 11:31:02 1548934262.264172 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2481483 total-bytes-write=52 payload-bytes-read=2481454/5242880 (47.33%)
+2019-01-31 11:31:02 1548934262.345376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2481981 total-bytes-write=52 payload-bytes-read=2481952/5242880 (47.34%)
+2019-01-31 11:31:02 1548934262.431498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:31:02 1548934262.444333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2492887 total-bytes-write=52 payload-bytes-read=2492858/5242880 (47.55%)
+2019-01-31 11:31:02 1548934262.444442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2496871 total-bytes-write=52 payload-bytes-read=2496842/5242880 (47.62%)
+2019-01-31 11:31:02 1548934262.446393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2500855 total-bytes-write=52 payload-bytes-read=2500826/5242880 (47.70%)
+2019-01-31 11:31:02 1548934262.488473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2539549 total-bytes-write=52 payload-bytes-read=2539520/5242880 (48.44%)
+2019-01-31 11:31:02 1548934262.532463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2579289 total-bytes-write=52 payload-bytes-read=2579260/5242880 (49.20%)
+2019-01-31 11:31:02 1548934262.576518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2611061 total-bytes-write=52 payload-bytes-read=2611032/5242880 (49.80%)
+2019-01-31 11:31:02 1548934262.577464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2614547 total-bytes-write=52 payload-bytes-read=2614518/5242880 (49.87%)
+2019-01-31 11:31:02 1548934262.578228 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2620025 total-bytes-write=52 payload-bytes-read=2619996/5242880 (49.97%)
+2019-01-31 11:31:02 1548934262.609021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2623461 total-bytes-write=52 payload-bytes-read=2623432/5242880 (50.04%)
+2019-01-31 11:31:02 1548934262.667136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2624457 total-bytes-write=52 payload-bytes-read=2624428/5242880 (50.06%)
+2019-01-31 11:31:02 1548934262.668120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2627943 total-bytes-write=52 payload-bytes-read=2627914/5242880 (50.12%)
+2019-01-31 11:31:02 1548934262.679079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2628939 total-bytes-write=52 payload-bytes-read=2628910/5242880 (50.14%)
+2019-01-31 11:31:02 1548934262.680381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2632425 total-bytes-write=52 payload-bytes-read=2632396/5242880 (50.21%)
+2019-01-31 11:31:02 1548934262.680609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2636409 total-bytes-write=52 payload-bytes-read=2636380/5242880 (50.28%)
+2019-01-31 11:31:02 1548934262.681632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2640343 total-bytes-write=52 payload-bytes-read=2640314/5242880 (50.36%)
+2019-01-31 11:31:02 1548934262.682803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2644825 total-bytes-write=52 payload-bytes-read=2644796/5242880 (50.45%)
+2019-01-31 11:31:02 1548934262.683151 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2651299 total-bytes-write=52 payload-bytes-read=2651270/5242880 (50.57%)
+2019-01-31 11:31:02 1548934262.702854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2652295 total-bytes-write=52 payload-bytes-read=2652266/5242880 (50.59%)
+2019-01-31 11:31:02 1548934262.703129 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2652793 total-bytes-write=52 payload-bytes-read=2652764/5242880 (50.60%)
+2019-01-31 11:31:02 1548934262.715108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2656229 total-bytes-write=52 payload-bytes-read=2656200/5242880 (50.66%)
+2019-01-31 11:31:02 1548934262.715723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2660213 total-bytes-write=52 payload-bytes-read=2660184/5242880 (50.74%)
+2019-01-31 11:31:02 1548934262.716340 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2664197 total-bytes-write=52 payload-bytes-read=2664168/5242880 (50.81%)
+2019-01-31 11:31:02 1548934262.760411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2675601 total-bytes-write=52 payload-bytes-read=2675572/5242880 (51.03%)
+2019-01-31 11:31:02 1548934262.804375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2676099 total-bytes-write=52 payload-bytes-read=2676070/5242880 (51.04%)
+2019-01-31 11:31:02 1548934262.824551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2676597 total-bytes-write=52 payload-bytes-read=2676568/5242880 (51.05%)
+2019-01-31 11:31:02 1548934262.832399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2684067 total-bytes-write=52 payload-bytes-read=2684038/5242880 (51.19%)
+2019-01-31 11:31:02 1548934262.832584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2691985 total-bytes-write=52 payload-bytes-read=2691956/5242880 (51.34%)
+2019-01-31 11:31:02 1548934262.836546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2695471 total-bytes-write=52 payload-bytes-read=2695442/5242880 (51.41%)
+2019-01-31 11:31:02 1548934262.871451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2701945 total-bytes-write=52 payload-bytes-read=2701916/5242880 (51.53%)
+2019-01-31 11:31:02 1548934262.880916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:31:02 1548934262.881672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2708867 total-bytes-write=52 payload-bytes-read=2708838/5242880 (51.67%)
+2019-01-31 11:31:02 1548934262.892013 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2712353 total-bytes-write=52 payload-bytes-read=2712324/5242880 (51.73%)
+2019-01-31 11:31:02 1548934262.932398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2724255 total-bytes-write=52 payload-bytes-read=2724226/5242880 (51.96%)
+2019-01-31 11:31:03 1548934263.011005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2727741 total-bytes-write=52 payload-bytes-read=2727712/5242880 (52.03%)
+2019-01-31 11:31:03 1548934263.116581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2730231 total-bytes-write=52 payload-bytes-read=2730202/5242880 (52.07%)
+2019-01-31 11:31:03 1548934263.128430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2733717 total-bytes-write=52 payload-bytes-read=2733688/5242880 (52.14%)
+2019-01-31 11:31:03 1548934263.417283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2737153 total-bytes-write=52 payload-bytes-read=2737124/5242880 (52.21%)
+2019-01-31 11:31:03 1548934263.456243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2740639 total-bytes-write=52 payload-bytes-read=2740610/5242880 (52.27%)
+2019-01-31 11:31:03 1548934263.463629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2743129 total-bytes-write=52 payload-bytes-read=2743100/5242880 (52.32%)
+2019-01-31 11:31:03 1548934263.482197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2750599 total-bytes-write=52 payload-bytes-read=2750570/5242880 (52.46%)
+2019-01-31 11:31:03 1548934263.489905 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2754035 total-bytes-write=52 payload-bytes-read=2754006/5242880 (52.53%)
+2019-01-31 11:31:03 1548934263.491074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2758019 total-bytes-write=52 payload-bytes-read=2757990/5242880 (52.60%)
+2019-01-31 11:31:03 1548934263.501551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2759015 total-bytes-write=52 payload-bytes-read=2758986/5242880 (52.62%)
+2019-01-31 11:31:03 1548934263.509050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2766485 total-bytes-write=52 payload-bytes-read=2766456/5242880 (52.77%)
+2019-01-31 11:31:03 1548934263.514114 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2769921 total-bytes-write=52 payload-bytes-read=2769892/5242880 (52.83%)
+2019-01-31 11:31:03 1548934263.514777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2773905 total-bytes-write=52 payload-bytes-read=2773876/5242880 (52.91%)
+2019-01-31 11:31:03 1548934263.529334 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2774901 total-bytes-write=52 payload-bytes-read=2774872/5242880 (52.93%)
+2019-01-31 11:31:03 1548934263.531986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2782371 total-bytes-write=52 payload-bytes-read=2782342/5242880 (53.07%)
+2019-01-31 11:31:03 1548934263.532120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2786305 total-bytes-write=52 payload-bytes-read=2786276/5242880 (53.14%)
+2019-01-31 11:31:03 1548934263.532264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2788795 total-bytes-write=52 payload-bytes-read=2788766/5242880 (53.19%)
+2019-01-31 11:31:03 1548934263.541607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2796265 total-bytes-write=52 payload-bytes-read=2796236/5242880 (53.33%)
+2019-01-31 11:31:03 1548934263.541845 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2804183 total-bytes-write=52 payload-bytes-read=2804154/5242880 (53.48%)
+2019-01-31 11:31:03 1548934263.541948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2807171 total-bytes-write=52 payload-bytes-read=2807142/5242880 (53.54%)
+2019-01-31 11:31:03 1548934263.549996 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2814641 total-bytes-write=52 payload-bytes-read=2814612/5242880 (53.68%)
+2019-01-31 11:31:03 1548934263.550136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2820567 total-bytes-write=52 payload-bytes-read=2820538/5242880 (53.80%)
+2019-01-31 11:31:03 1548934263.558262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2824053 total-bytes-write=52 payload-bytes-read=2824024/5242880 (53.86%)
+2019-01-31 11:31:03 1548934263.566029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2828535 total-bytes-write=52 payload-bytes-read=2828506/5242880 (53.95%)
+2019-01-31 11:31:03 1548934263.658428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2829531 total-bytes-write=52 payload-bytes-read=2829502/5242880 (53.97%)
+2019-01-31 11:31:03 1548934263.669167 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2833017 total-bytes-write=52 payload-bytes-read=2832988/5242880 (54.03%)
+2019-01-31 11:31:03 1548934263.672273 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2836951 total-bytes-write=52 payload-bytes-read=2836922/5242880 (54.11%)
+2019-01-31 11:31:03 1548934263.673065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2845417 total-bytes-write=52 payload-bytes-read=2845388/5242880 (54.27%)
+2019-01-31 11:31:03 1548934263.675636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2848903 total-bytes-write=52 payload-bytes-read=2848874/5242880 (54.34%)
+2019-01-31 11:31:03 1548934263.676898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2856821 total-bytes-write=52 payload-bytes-read=2856792/5242880 (54.49%)
+2019-01-31 11:31:03 1548934263.676978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2859809 total-bytes-write=52 payload-bytes-read=2859780/5242880 (54.55%)
+2019-01-31 11:31:03 1548934263.681532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2863295 total-bytes-write=52 payload-bytes-read=2863266/5242880 (54.61%)
+2019-01-31 11:31:03 1548934263.693198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2867229 total-bytes-write=52 payload-bytes-read=2867200/5242880 (54.69%)
+2019-01-31 11:31:03 1548934263.695401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2875197 total-bytes-write=52 payload-bytes-read=2875168/5242880 (54.84%)
+2019-01-31 11:31:03 1548934263.695526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2879679 total-bytes-write=52 payload-bytes-read=2879650/5242880 (54.92%)
+2019-01-31 11:31:03 1548934263.695807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2883165 total-bytes-write=52 payload-bytes-read=2883136/5242880 (54.99%)
+2019-01-31 11:31:03 1548934263.697272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2891083 total-bytes-write=52 payload-bytes-read=2891054/5242880 (55.14%)
+2019-01-31 11:31:03 1548934263.698529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2893573 total-bytes-write=52 payload-bytes-read=2893544/5242880 (55.19%)
+2019-01-31 11:31:03 1548934263.704051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2897059 total-bytes-write=52 payload-bytes-read=2897030/5242880 (55.26%)
+2019-01-31 11:31:03 1548934263.705290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2900993 total-bytes-write=52 payload-bytes-read=2900964/5242880 (55.33%)
+2019-01-31 11:31:03 1548934263.706012 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2909459 total-bytes-write=52 payload-bytes-read=2909430/5242880 (55.49%)
+2019-01-31 11:31:03 1548934263.752676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2912945 total-bytes-write=52 payload-bytes-read=2912916/5242880 (55.56%)
+2019-01-31 11:31:03 1548934263.753993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2916381 total-bytes-write=52 payload-bytes-read=2916352/5242880 (55.62%)
+2019-01-31 11:31:03 1548934263.757006 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2920365 total-bytes-write=52 payload-bytes-read=2920336/5242880 (55.70%)
+2019-01-31 11:31:03 1548934263.758244 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2924349 total-bytes-write=52 payload-bytes-read=2924320/5242880 (55.78%)
+2019-01-31 11:31:03 1548934263.800459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2952137 total-bytes-write=52 payload-bytes-read=2952108/5242880 (56.31%)
+2019-01-31 11:31:03 1548934263.844429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2966031 total-bytes-write=52 payload-bytes-read=2966002/5242880 (56.57%)
+2019-01-31 11:31:03 1548934263.856882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2973501 total-bytes-write=52 payload-bytes-read=2973472/5242880 (56.71%)
+2019-01-31 11:31:03 1548934263.920091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2973999 total-bytes-write=52 payload-bytes-read=2973970/5242880 (56.72%)
+2019-01-31 11:31:03 1548934263.920943 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2977485 total-bytes-write=52 payload-bytes-read=2977456/5242880 (56.79%)
+2019-01-31 11:31:04 1548934264.002670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2978481 total-bytes-write=52 payload-bytes-read=2978452/5242880 (56.81%)
+2019-01-31 11:31:04 1548934264.428139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2981917 total-bytes-write=52 payload-bytes-read=2981888/5242880 (56.88%)
+2019-01-31 11:31:04 1548934264.510736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2985403 total-bytes-write=52 payload-bytes-read=2985374/5242880 (56.94%)
+2019-01-31 11:31:04 1548934264.511511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2987395 total-bytes-write=52 payload-bytes-read=2987366/5242880 (56.98%)
+2019-01-31 11:31:04 1548934264.595872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2994865 total-bytes-write=52 payload-bytes-read=2994836/5242880 (57.12%)
+2019-01-31 11:31:04 1548934264.596015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2998301 total-bytes-write=52 payload-bytes-read=2998272/5242880 (57.19%)
+2019-01-31 11:31:04 1548934264.677679 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3002285 total-bytes-write=52 payload-bytes-read=3002256/5242880 (57.26%)
+2019-01-31 11:31:04 1548934264.678633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3003281 total-bytes-write=52 payload-bytes-read=3003252/5242880 (57.28%)
+2019-01-31 11:31:04 1548934264.679159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3006767 total-bytes-write=52 payload-bytes-read=3006738/5242880 (57.35%)
+2019-01-31 11:31:04 1548934264.680654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3014685 total-bytes-write=52 payload-bytes-read=3014656/5242880 (57.50%)
+2019-01-31 11:31:04 1548934264.681518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3019665 total-bytes-write=52 payload-bytes-read=3019636/5242880 (57.59%)
+2019-01-31 11:31:04 1548934264.717850 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3023649 total-bytes-write=52 payload-bytes-read=3023620/5242880 (57.67%)
+2019-01-31 11:31:04 1548934264.718888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3027135 total-bytes-write=52 payload-bytes-read=3027106/5242880 (57.74%)
+2019-01-31 11:31:04 1548934264.761743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3031069 total-bytes-write=52 payload-bytes-read=3031040/5242880 (57.81%)
+2019-01-31 11:31:04 1548934264.763154 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3035053 total-bytes-write=52 payload-bytes-read=3035024/5242880 (57.89%)
+2019-01-31 11:31:04 1548934264.764112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3039535 total-bytes-write=52 payload-bytes-read=3039506/5242880 (57.97%)
+2019-01-31 11:31:04 1548934264.764216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3043021 total-bytes-write=52 payload-bytes-read=3042992/5242880 (58.04%)
+2019-01-31 11:31:04 1548934264.764752 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3044515 total-bytes-write=52 payload-bytes-read=3044486/5242880 (58.07%)
+2019-01-31 11:31:04 1548934264.766435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3050441 total-bytes-write=52 payload-bytes-read=3050412/5242880 (58.18%)
+2019-01-31 11:31:04 1548934264.766764 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3052931 total-bytes-write=52 payload-bytes-read=3052902/5242880 (58.23%)
+2019-01-31 11:31:04 1548934264.776463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:31:04 1548934264.819504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3059903 total-bytes-write=52 payload-bytes-read=3059874/5242880 (58.36%)
+2019-01-31 11:31:04 1548934264.860501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3118965 total-bytes-write=52 payload-bytes-read=3118936/5242880 (59.49%)
+2019-01-31 11:31:04 1548934264.904453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3130867 total-bytes-write=52 payload-bytes-read=3130838/5242880 (59.72%)
+2019-01-31 11:31:04 1548934264.904682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3134851 total-bytes-write=52 payload-bytes-read=3134822/5242880 (59.79%)
+2019-01-31 11:31:04 1548934264.905407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3139333 total-bytes-write=52 payload-bytes-read=3139304/5242880 (59.88%)
+2019-01-31 11:31:04 1548934264.907082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3142819 total-bytes-write=52 payload-bytes-read=3142790/5242880 (59.94%)
+2019-01-31 11:31:04 1548934264.927654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3146753 total-bytes-write=52 payload-bytes-read=3146724/5242880 (60.02%)
+2019-01-31 11:31:04 1548934264.928861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3150737 total-bytes-write=52 payload-bytes-read=3150708/5242880 (60.09%)
+2019-01-31 11:31:04 1548934264.933812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3155219 total-bytes-write=52 payload-bytes-read=3155190/5242880 (60.18%)
+2019-01-31 11:31:04 1548934264.935709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3158705 total-bytes-write=52 payload-bytes-read=3158676/5242880 (60.25%)
+2019-01-31 11:31:04 1548934264.940934 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3166623 total-bytes-write=52 payload-bytes-read=3166594/5242880 (60.40%)
+2019-01-31 11:31:04 1548934264.941066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3171105 total-bytes-write=52 payload-bytes-read=3171076/5242880 (60.48%)
+2019-01-31 11:31:04 1548934264.941384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3178525 total-bytes-write=52 payload-bytes-read=3178496/5242880 (60.62%)
+2019-01-31 11:31:04 1548934264.946236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3186493 total-bytes-write=52 payload-bytes-read=3186464/5242880 (60.78%)
+2019-01-31 11:31:04 1548934264.946305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3186991 total-bytes-write=52 payload-bytes-read=3186962/5242880 (60.79%)
+2019-01-31 11:31:04 1548934264.946690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3188485 total-bytes-write=52 payload-bytes-read=3188456/5242880 (60.81%)
+2019-01-31 11:31:04 1548934264.947949 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3191971 total-bytes-write=52 payload-bytes-read=3191942/5242880 (60.88%)
+2019-01-31 11:31:04 1548934264.985454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3195905 total-bytes-write=52 payload-bytes-read=3195876/5242880 (60.96%)
+2019-01-31 11:31:04 1548934264.986227 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3199889 total-bytes-write=52 payload-bytes-read=3199860/5242880 (61.03%)
+2019-01-31 11:31:04 1548934264.987435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3204371 total-bytes-write=52 payload-bytes-read=3204342/5242880 (61.12%)
+2019-01-31 11:31:04 1548934264.989091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3207857 total-bytes-write=52 payload-bytes-read=3207828/5242880 (61.18%)
+2019-01-31 11:31:04 1548934264.989926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3212289 total-bytes-write=52 payload-bytes-read=3212260/5242880 (61.27%)
+2019-01-31 11:31:05 1548934265.010254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3215775 total-bytes-write=52 payload-bytes-read=3215746/5242880 (61.34%)
+2019-01-31 11:31:05 1548934265.011889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3219759 total-bytes-write=52 payload-bytes-read=3219730/5242880 (61.41%)
+2019-01-31 11:31:05 1548934265.054955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3224241 total-bytes-write=52 payload-bytes-read=3224212/5242880 (61.50%)
+2019-01-31 11:31:05 1548934265.055763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3226731 total-bytes-write=52 payload-bytes-read=3226702/5242880 (61.54%)
+2019-01-31 11:31:05 1548934265.414699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3230167 total-bytes-write=52 payload-bytes-read=3230138/5242880 (61.61%)
+2019-01-31 11:31:05 1548934265.422962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3238135 total-bytes-write=52 payload-bytes-read=3238106/5242880 (61.76%)
+2019-01-31 11:31:05 1548934265.423092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3242119 total-bytes-write=52 payload-bytes-read=3242090/5242880 (61.84%)
+2019-01-31 11:31:05 1548934265.425442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3242617 total-bytes-write=52 payload-bytes-read=3242588/5242880 (61.85%)
+2019-01-31 11:31:05 1548934265.426750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3246053 total-bytes-write=52 payload-bytes-read=3246024/5242880 (61.91%)
+2019-01-31 11:31:05 1548934265.427182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3250037 total-bytes-write=52 payload-bytes-read=3250008/5242880 (61.99%)
+2019-01-31 11:31:05 1548934265.429097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3254021 total-bytes-write=52 payload-bytes-read=3253992/5242880 (62.06%)
+2019-01-31 11:31:05 1548934265.430695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3258005 total-bytes-write=52 payload-bytes-read=3257976/5242880 (62.14%)
+2019-01-31 11:31:05 1548934265.430846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3258503 total-bytes-write=52 payload-bytes-read=3258474/5242880 (62.15%)
+2019-01-31 11:31:05 1548934265.432329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3261939 total-bytes-write=52 payload-bytes-read=3261910/5242880 (62.22%)
+2019-01-31 11:31:05 1548934265.449236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3262437 total-bytes-write=52 payload-bytes-read=3262408/5242880 (62.23%)
+2019-01-31 11:31:05 1548934265.449649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3265923 total-bytes-write=52 payload-bytes-read=3265894/5242880 (62.29%)
+2019-01-31 11:31:05 1548934265.494663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3269907 total-bytes-write=52 payload-bytes-read=3269878/5242880 (62.37%)
+2019-01-31 11:31:05 1548934265.494866 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3273955 total-bytes-write=52 payload-bytes-read=3273926/5242880 (62.45%)
+2019-01-31 11:31:05 1548934265.494973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3277825 total-bytes-write=52 payload-bytes-read=3277796/5242880 (62.52%)
+2019-01-31 11:31:05 1548934265.495170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3281809 total-bytes-write=52 payload-bytes-read=3281780/5242880 (62.59%)
+2019-01-31 11:31:05 1548934265.502353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3285295 total-bytes-write=52 payload-bytes-read=3285266/5242880 (62.66%)
+2019-01-31 11:31:05 1548934265.502850 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3289279 total-bytes-write=52 payload-bytes-read=3289250/5242880 (62.74%)
+2019-01-31 11:31:05 1548934265.503727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3293213 total-bytes-write=52 payload-bytes-read=3293184/5242880 (62.81%)
+2019-01-31 11:31:05 1548934265.504142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3296699 total-bytes-write=52 payload-bytes-read=3296670/5242880 (62.88%)
+2019-01-31 11:31:05 1548934265.515215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3297695 total-bytes-write=52 payload-bytes-read=3297666/5242880 (62.90%)
+2019-01-31 11:31:05 1548934265.516556 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3301743 total-bytes-write=52 payload-bytes-read=3301714/5242880 (62.98%)
+2019-01-31 11:31:05 1548934265.560433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3318561 total-bytes-write=52 payload-bytes-read=3318532/5242880 (63.30%)
+2019-01-31 11:31:05 1548934265.604449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3344357 total-bytes-write=52 payload-bytes-read=3344328/5242880 (63.79%)
+2019-01-31 11:31:05 1548934265.648499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3400481 total-bytes-write=52 payload-bytes-read=3400452/5242880 (64.86%)
+2019-01-31 11:31:05 1548934265.692448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3419355 total-bytes-write=52 payload-bytes-read=3419326/5242880 (65.22%)
+2019-01-31 11:31:05 1548934265.700819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3422841 total-bytes-write=52 payload-bytes-read=3422812/5242880 (65.28%)
+2019-01-31 11:31:05 1548934265.761938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3426277 total-bytes-write=52 payload-bytes-read=3426248/5242880 (65.35%)
+2019-01-31 11:31:05 1548934265.762797 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3433249 total-bytes-write=52 payload-bytes-read=3433220/5242880 (65.48%)
+2019-01-31 11:31:05 1548934265.783592 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3434245 total-bytes-write=52 payload-bytes-read=3434216/5242880 (65.50%)
+2019-01-31 11:31:05 1548934265.785768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3440221 total-bytes-write=52 payload-bytes-read=3440192/5242880 (65.62%)
+2019-01-31 11:31:05 1548934265.832768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3443657 total-bytes-write=52 payload-bytes-read=3443628/5242880 (65.68%)
+2019-01-31 11:31:05 1548934265.847100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3448139 total-bytes-write=52 payload-bytes-read=3448110/5242880 (65.77%)
+2019-01-31 11:31:05 1548934265.847835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3452123 total-bytes-write=52 payload-bytes-read=3452094/5242880 (65.84%)
+2019-01-31 11:31:05 1548934265.856315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3452621 total-bytes-write=52 payload-bytes-read=3452592/5242880 (65.85%)
+2019-01-31 11:31:05 1548934265.857050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3456107 total-bytes-write=52 payload-bytes-read=3456078/5242880 (65.92%)
+2019-01-31 11:31:05 1548934265.859662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3460041 total-bytes-write=52 payload-bytes-read=3460012/5242880 (65.99%)
+2019-01-31 11:31:05 1548934265.867409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3461037 total-bytes-write=52 payload-bytes-read=3461008/5242880 (66.01%)
+2019-01-31 11:31:05 1548934265.868197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3464523 total-bytes-write=52 payload-bytes-read=3464494/5242880 (66.08%)
+2019-01-31 11:31:05 1548934265.906469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3468507 total-bytes-write=52 payload-bytes-read=3468478/5242880 (66.16%)
+2019-01-31 11:31:05 1548934265.936705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3471495 total-bytes-write=52 payload-bytes-read=3471466/5242880 (66.21%)
+2019-01-31 11:31:06 1548934266.019141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3472491 total-bytes-write=52 payload-bytes-read=3472462/5242880 (66.23%)
+2019-01-31 11:31:06 1548934266.064636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3474931 total-bytes-write=52 payload-bytes-read=3474902/5242880 (66.28%)
+2019-01-31 11:31:06 1548934266.094076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3478417 total-bytes-write=52 payload-bytes-read=3478388/5242880 (66.34%)
+2019-01-31 11:31:06 1548934266.105719 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:31:06 1548934266.152440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3513675 total-bytes-write=52 payload-bytes-read=3513646/5242880 (67.02%)
+2019-01-31 11:31:06 1548934266.200416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3516663 total-bytes-write=52 payload-bytes-read=3516634/5242880 (67.07%)
+2019-01-31 11:31:06 1548934266.234069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3519651 total-bytes-write=52 payload-bytes-read=3519622/5242880 (67.13%)
+2019-01-31 11:31:06 1548934266.276481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3557847 total-bytes-write=52 payload-bytes-read=3557818/5242880 (67.86%)
+2019-01-31 11:31:06 1548934266.320485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3593603 total-bytes-write=52 payload-bytes-read=3593574/5242880 (68.54%)
+2019-01-31 11:31:06 1548934266.324610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3595595 total-bytes-write=52 payload-bytes-read=3595566/5242880 (68.58%)
+2019-01-31 11:31:06 1548934266.327451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3599081 total-bytes-write=52 payload-bytes-read=3599052/5242880 (68.65%)
+2019-01-31 11:31:06 1548934266.327761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3603065 total-bytes-write=52 payload-bytes-read=3603036/5242880 (68.72%)
+2019-01-31 11:31:06 1548934266.336796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3606999 total-bytes-write=52 payload-bytes-read=3606970/5242880 (68.80%)
+2019-01-31 11:31:06 1548934266.341102 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3610983 total-bytes-write=52 payload-bytes-read=3610954/5242880 (68.87%)
+2019-01-31 11:31:06 1548934266.349332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3614469 total-bytes-write=52 payload-bytes-read=3614440/5242880 (68.94%)
+2019-01-31 11:31:06 1548934266.352766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3618453 total-bytes-write=52 payload-bytes-read=3618424/5242880 (69.02%)
+2019-01-31 11:31:06 1548934266.358170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3622387 total-bytes-write=52 payload-bytes-read=3622358/5242880 (69.09%)
+2019-01-31 11:31:06 1548934266.359532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3629359 total-bytes-write=52 payload-bytes-read=3629330/5242880 (69.22%)
+2019-01-31 11:31:06 1548934266.359597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3630355 total-bytes-write=52 payload-bytes-read=3630326/5242880 (69.24%)
+2019-01-31 11:31:06 1548934266.373255 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3637775 total-bytes-write=52 payload-bytes-read=3637746/5242880 (69.38%)
+2019-01-31 11:31:06 1548934266.373339 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3641759 total-bytes-write=52 payload-bytes-read=3641730/5242880 (69.46%)
+2019-01-31 11:31:06 1548934266.390588 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3643253 total-bytes-write=52 payload-bytes-read=3643224/5242880 (69.49%)
+2019-01-31 11:31:06 1548934266.392165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3650723 total-bytes-write=52 payload-bytes-read=3650694/5242880 (69.63%)
+2019-01-31 11:31:06 1548934266.393092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3658641 total-bytes-write=52 payload-bytes-read=3658612/5242880 (69.78%)
+2019-01-31 11:31:06 1548934266.402211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3660135 total-bytes-write=52 payload-bytes-read=3660106/5242880 (69.81%)
+2019-01-31 11:31:06 1548934266.404175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3663123 total-bytes-write=52 payload-bytes-read=3663094/5242880 (69.87%)
+2019-01-31 11:31:06 1548934266.415174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3666609 total-bytes-write=52 payload-bytes-read=3666580/5242880 (69.93%)
+2019-01-31 11:31:06 1548934266.438380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3668601 total-bytes-write=52 payload-bytes-read=3668572/5242880 (69.97%)
+2019-01-31 11:31:06 1548934266.481447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3672037 total-bytes-write=52 payload-bytes-read=3672008/5242880 (70.04%)
+2019-01-31 11:31:06 1548934266.493006 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3675523 total-bytes-write=52 payload-bytes-read=3675494/5242880 (70.10%)
+2019-01-31 11:31:06 1548934266.493847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3679507 total-bytes-write=52 payload-bytes-read=3679478/5242880 (70.18%)
+2019-01-31 11:31:06 1548934266.494345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3683491 total-bytes-write=52 payload-bytes-read=3683462/5242880 (70.26%)
+2019-01-31 11:31:06 1548934266.536409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3694895 total-bytes-write=52 payload-bytes-read=3694866/5242880 (70.47%)
+2019-01-31 11:31:06 1548934266.593658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3695891 total-bytes-write=52 payload-bytes-read=3695862/5242880 (70.49%)
+2019-01-31 11:31:06 1548934266.594743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3703311 total-bytes-write=52 payload-bytes-read=3703282/5242880 (70.63%)
+2019-01-31 11:31:06 1548934266.596156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3711279 total-bytes-write=52 payload-bytes-read=3711250/5242880 (70.79%)
+2019-01-31 11:31:06 1548934266.618391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3711777 total-bytes-write=52 payload-bytes-read=3711748/5242880 (70.80%)
+2019-01-31 11:31:06 1548934266.620090 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3715263 total-bytes-write=52 payload-bytes-read=3715234/5242880 (70.86%)
+2019-01-31 11:31:06 1548934266.630204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3716259 total-bytes-write=52 payload-bytes-read=3716230/5242880 (70.88%)
+2019-01-31 11:31:06 1548934266.630891 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3723181 total-bytes-write=52 payload-bytes-read=3723152/5242880 (71.01%)
+2019-01-31 11:31:06 1548934266.786576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3730651 total-bytes-write=52 payload-bytes-read=3730622/5242880 (71.16%)
+2019-01-31 11:31:06 1548934266.786669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3734137 total-bytes-write=52 payload-bytes-read=3734108/5242880 (71.22%)
+2019-01-31 11:31:06 1548934266.824548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3737573 total-bytes-write=52 payload-bytes-read=3737544/5242880 (71.29%)
+2019-01-31 11:31:06 1548934266.835128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3743549 total-bytes-write=52 payload-bytes-read=3743520/5242880 (71.40%)
+2019-01-31 11:31:06 1548934266.872618 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3751019 total-bytes-write=52 payload-bytes-read=3750990/5242880 (71.54%)
+2019-01-31 11:31:06 1548934266.873876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3758937 total-bytes-write=52 payload-bytes-read=3758908/5242880 (71.70%)
+2019-01-31 11:31:06 1548934266.874421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3759435 total-bytes-write=52 payload-bytes-read=3759406/5242880 (71.70%)
+2019-01-31 11:31:06 1548934266.875542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3762921 total-bytes-write=52 payload-bytes-read=3762892/5242880 (71.77%)
+2019-01-31 11:31:06 1548934266.897724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3767901 total-bytes-write=52 payload-bytes-read=3767872/5242880 (71.87%)
+2019-01-31 11:31:06 1548934266.897833 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3774325 total-bytes-write=52 payload-bytes-read=3774296/5242880 (71.99%)
+2019-01-31 11:31:06 1548934266.914969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3777811 total-bytes-write=52 payload-bytes-read=3777782/5242880 (72.06%)
+2019-01-31 11:31:06 1548934266.916450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3781795 total-bytes-write=52 payload-bytes-read=3781766/5242880 (72.13%)
+2019-01-31 11:31:06 1548934266.916854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3785729 total-bytes-write=52 payload-bytes-read=3785700/5242880 (72.21%)
+2019-01-31 11:31:06 1548934266.917984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3789713 total-bytes-write=52 payload-bytes-read=3789684/5242880 (72.28%)
+2019-01-31 11:31:06 1548934266.931685 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3793199 total-bytes-write=52 payload-bytes-read=3793170/5242880 (72.35%)
+2019-01-31 11:31:06 1548934266.952493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3794195 total-bytes-write=52 payload-bytes-read=3794166/5242880 (72.37%)
+2019-01-31 11:31:06 1548934266.953133 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3797681 total-bytes-write=52 payload-bytes-read=3797652/5242880 (72.43%)
+2019-01-31 11:31:06 1548934266.953455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3801117 total-bytes-write=52 payload-bytes-read=3801088/5242880 (72.50%)
+2019-01-31 11:31:06 1548934266.980355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3804603 total-bytes-write=52 payload-bytes-read=3804574/5242880 (72.57%)
+2019-01-31 11:31:06 1548934266.982872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3808089 total-bytes-write=52 payload-bytes-read=3808060/5242880 (72.63%)
+2019-01-31 11:31:07 1548934267.024399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3816555 total-bytes-write=52 payload-bytes-read=3816526/5242880 (72.79%)
+2019-01-31 11:31:07 1548934267.068528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3881095 total-bytes-write=52 payload-bytes-read=3881066/5242880 (74.03%)
+2019-01-31 11:31:07 1548934267.112421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3890009 total-bytes-write=52 payload-bytes-read=3889980/5242880 (74.20%)
+2019-01-31 11:31:07 1548934267.128469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3891005 total-bytes-write=52 payload-bytes-read=3890976/5242880 (74.21%)
+2019-01-31 11:31:07 1548934267.131791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3894491 total-bytes-write=52 payload-bytes-read=3894462/5242880 (74.28%)
+2019-01-31 11:31:07 1548934267.237802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3897977 total-bytes-write=52 payload-bytes-read=3897948/5242880 (74.35%)
+2019-01-31 11:31:07 1548934267.280435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3910875 total-bytes-write=52 payload-bytes-read=3910846/5242880 (74.59%)
+2019-01-31 11:31:07 1548934267.324421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3916801 total-bytes-write=52 payload-bytes-read=3916772/5242880 (74.71%)
+2019-01-31 11:31:07 1548934267.340337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3920287 total-bytes-write=52 payload-bytes-read=3920258/5242880 (74.77%)
+2019-01-31 11:31:07 1548934267.380883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3921283 total-bytes-write=52 payload-bytes-read=3921254/5242880 (74.79%)
+2019-01-31 11:31:07 1548934267.380966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3921781 total-bytes-write=52 payload-bytes-read=3921752/5242880 (74.80%)
+2019-01-31 11:31:07 1548934267.381732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3925267 total-bytes-write=52 payload-bytes-read=3925238/5242880 (74.87%)
+2019-01-31 11:31:07 1548934267.393487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3932687 total-bytes-write=52 payload-bytes-read=3932658/5242880 (75.01%)
+2019-01-31 11:31:07 1548934267.396881 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3940655 total-bytes-write=52 payload-bytes-read=3940626/5242880 (75.16%)
+2019-01-31 11:31:07 1548934267.396958 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3941153 total-bytes-write=52 payload-bytes-read=3941124/5242880 (75.17%)
+2019-01-31 11:31:07 1548934267.398063 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3948573 total-bytes-write=52 payload-bytes-read=3948544/5242880 (75.31%)
+2019-01-31 11:31:07 1548934267.398264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3956541 total-bytes-write=52 payload-bytes-read=3956512/5242880 (75.46%)
+2019-01-31 11:31:07 1548934267.403890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3957039 total-bytes-write=52 payload-bytes-read=3957010/5242880 (75.47%)
+2019-01-31 11:31:07 1548934267.404130 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3958533 total-bytes-write=52 payload-bytes-read=3958504/5242880 (75.50%)
+2019-01-31 11:31:07 1548934267.416330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3962019 total-bytes-write=52 payload-bytes-read=3961990/5242880 (75.57%)
+2019-01-31 11:31:07 1548934267.431582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3962517 total-bytes-write=52 payload-bytes-read=3962488/5242880 (75.58%)
+2019-01-31 11:31:07 1548934267.431951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3965953 total-bytes-write=52 payload-bytes-read=3965924/5242880 (75.64%)
+2019-01-31 11:31:07 1548934267.459247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3966949 total-bytes-write=52 payload-bytes-read=3966920/5242880 (75.66%)
+2019-01-31 11:31:07 1548934267.464463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3970435 total-bytes-write=52 payload-bytes-read=3970406/5242880 (75.73%)
+2019-01-31 11:31:07 1548934267.564759 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3971431 total-bytes-write=52 payload-bytes-read=3971402/5242880 (75.75%)
+2019-01-31 11:31:07 1548934267.581865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3974917 total-bytes-write=52 payload-bytes-read=3974888/5242880 (75.81%)
+2019-01-31 11:31:07 1548934267.582655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3978901 total-bytes-write=52 payload-bytes-read=3978872/5242880 (75.89%)
+2019-01-31 11:31:07 1548934267.585651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3986819 total-bytes-write=52 payload-bytes-read=3986790/5242880 (76.04%)
+2019-01-31 11:31:07 1548934267.585762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3990305 total-bytes-write=52 payload-bytes-read=3990276/5242880 (76.11%)
+2019-01-31 11:31:07 1548934267.591532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3993791 total-bytes-write=52 payload-bytes-read=3993762/5242880 (76.17%)
+2019-01-31 11:31:07 1548934267.632413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4013661 total-bytes-write=52 payload-bytes-read=4013632/5242880 (76.55%)
+2019-01-31 11:31:07 1548934267.676424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4039955 total-bytes-write=52 payload-bytes-read=4039926/5242880 (77.06%)
+2019-01-31 11:31:07 1548934267.720436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4060323 total-bytes-write=52 payload-bytes-read=4060294/5242880 (77.44%)
+2019-01-31 11:31:07 1548934267.720955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4068241 total-bytes-write=52 payload-bytes-read=4068212/5242880 (77.59%)
+2019-01-31 11:31:07 1548934267.721620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4072723 total-bytes-write=52 payload-bytes-read=4072694/5242880 (77.68%)
+2019-01-31 11:31:07 1548934267.724523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4074217 total-bytes-write=52 payload-bytes-read=4074188/5242880 (77.71%)
+2019-01-31 11:31:07 1548934267.732546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4077703 total-bytes-write=52 payload-bytes-read=4077674/5242880 (77.78%)
+2019-01-31 11:31:07 1548934267.733913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4081637 total-bytes-write=52 payload-bytes-read=4081608/5242880 (77.85%)
+2019-01-31 11:31:07 1548934267.734540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4085123 total-bytes-write=52 payload-bytes-read=4085094/5242880 (77.92%)
+2019-01-31 11:31:07 1548934267.753331 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4088609 total-bytes-write=52 payload-bytes-read=4088580/5242880 (77.98%)
+2019-01-31 11:31:07 1548934267.796450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4113409 total-bytes-write=52 payload-bytes-read=4113380/5242880 (78.46%)
+2019-01-31 11:31:07 1548934267.840412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4114903 total-bytes-write=52 payload-bytes-read=4114874/5242880 (78.48%)
+2019-01-31 11:31:07 1548934267.865609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4118389 total-bytes-write=52 payload-bytes-read=4118360/5242880 (78.55%)
+2019-01-31 11:31:07 1548934267.899162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4118887 total-bytes-write=52 payload-bytes-read=4118858/5242880 (78.56%)
+2019-01-31 11:31:07 1548934267.899823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4122373 total-bytes-write=52 payload-bytes-read=4122344/5242880 (78.63%)
+2019-01-31 11:31:07 1548934267.900285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4126357 total-bytes-write=52 payload-bytes-read=4126328/5242880 (78.70%)
+2019-01-31 11:31:07 1548934267.912593 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4133777 total-bytes-write=52 payload-bytes-read=4133748/5242880 (78.84%)
+2019-01-31 11:31:07 1548934267.912691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4137761 total-bytes-write=52 payload-bytes-read=4137732/5242880 (78.92%)
+2019-01-31 11:31:07 1548934267.919513 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4138259 total-bytes-write=52 payload-bytes-read=4138230/5242880 (78.93%)
+2019-01-31 11:31:07 1548934267.920206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4140251 total-bytes-write=52 payload-bytes-read=4140222/5242880 (78.97%)
+2019-01-31 11:31:07 1548934267.999416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4143737 total-bytes-write=52 payload-bytes-read=4143708/5242880 (79.03%)
+2019-01-31 11:31:08 1548934268.055275 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4147173 total-bytes-write=52 payload-bytes-read=4147144/5242880 (79.10%)
+2019-01-31 11:31:08 1548934268.055629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4151157 total-bytes-write=52 payload-bytes-read=4151128/5242880 (79.18%)
+2019-01-31 11:31:08 1548934268.057828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4155141 total-bytes-write=52 payload-bytes-read=4155112/5242880 (79.25%)
+2019-01-31 11:31:08 1548934268.100433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4167541 total-bytes-write=52 payload-bytes-read=4167512/5242880 (79.49%)
+2019-01-31 11:31:08 1548934268.172983 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4168039 total-bytes-write=52 payload-bytes-read=4168010/5242880 (79.50%)
+2019-01-31 11:31:08 1548934268.177491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4170031 total-bytes-write=52 payload-bytes-read=4170002/5242880 (79.54%)
+2019-01-31 11:31:08 1548934268.221449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4173517 total-bytes-write=52 payload-bytes-read=4173488/5242880 (79.60%)
+2019-01-31 11:31:08 1548934268.235330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4177003 total-bytes-write=52 payload-bytes-read=4176974/5242880 (79.67%)
+2019-01-31 11:31:08 1548934268.276439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4209771 total-bytes-write=52 payload-bytes-read=4209742/5242880 (80.29%)
+2019-01-31 11:31:08 1548934268.320482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4254441 total-bytes-write=52 payload-bytes-read=4254412/5242880 (81.15%)
+2019-01-31 11:31:08 1548934268.364401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4262359 total-bytes-write=52 payload-bytes-read=4262330/5242880 (81.30%)
+2019-01-31 11:31:08 1548934268.388084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4269331 total-bytes-write=52 payload-bytes-read=4269302/5242880 (81.43%)
+2019-01-31 11:31:08 1548934268.495075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4272817 total-bytes-write=52 payload-bytes-read=4272788/5242880 (81.50%)
+2019-01-31 11:31:08 1548934268.496233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4276751 total-bytes-write=52 payload-bytes-read=4276722/5242880 (81.57%)
+2019-01-31 11:31:08 1548934268.499613 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4280735 total-bytes-write=52 payload-bytes-read=4280706/5242880 (81.65%)
+2019-01-31 11:31:08 1548934268.504904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4281731 total-bytes-write=52 payload-bytes-read=4281702/5242880 (81.67%)
+2019-01-31 11:31:08 1548934268.508097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4289201 total-bytes-write=52 payload-bytes-read=4289172/5242880 (81.81%)
+2019-01-31 11:31:08 1548934268.508302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4297119 total-bytes-write=52 payload-bytes-read=4297090/5242880 (81.96%)
+2019-01-31 11:31:08 1548934268.508423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4301103 total-bytes-write=52 payload-bytes-read=4301074/5242880 (82.04%)
+2019-01-31 11:31:08 1548934268.529016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4306083 total-bytes-write=52 payload-bytes-read=4306054/5242880 (82.13%)
+2019-01-31 11:31:08 1548934268.530669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4310017 total-bytes-write=52 payload-bytes-read=4309988/5242880 (82.21%)
+2019-01-31 11:31:08 1548934268.532399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4317985 total-bytes-write=52 payload-bytes-read=4317956/5242880 (82.36%)
+2019-01-31 11:31:08 1548934268.532900 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4321969 total-bytes-write=52 payload-bytes-read=4321940/5242880 (82.43%)
+2019-01-31 11:31:08 1548934268.533092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4325903 total-bytes-write=52 payload-bytes-read=4325874/5242880 (82.51%)
+2019-01-31 11:31:08 1548934268.563727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4329887 total-bytes-write=52 payload-bytes-read=4329858/5242880 (82.59%)
+2019-01-31 11:31:08 1548934268.565721 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4333871 total-bytes-write=52 payload-bytes-read=4333842/5242880 (82.66%)
+2019-01-31 11:31:08 1548934268.608400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4337357 total-bytes-write=52 payload-bytes-read=4337328/5242880 (82.73%)
+2019-01-31 11:31:08 1548934268.617163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4338353 total-bytes-write=52 payload-bytes-read=4338324/5242880 (82.75%)
+2019-01-31 11:31:08 1548934268.618407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4341789 total-bytes-write=52 payload-bytes-read=4341760/5242880 (82.81%)
+2019-01-31 11:31:08 1548934268.629726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4342287 total-bytes-write=52 payload-bytes-read=4342258/5242880 (82.82%)
+2019-01-31 11:31:08 1548934268.631044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4345773 total-bytes-write=52 payload-bytes-read=4345744/5242880 (82.89%)
+2019-01-31 11:31:08 1548934268.632944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4349757 total-bytes-write=52 payload-bytes-read=4349728/5242880 (82.96%)
+2019-01-31 11:31:08 1548934268.676390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4362157 total-bytes-write=52 payload-bytes-read=4362128/5242880 (83.20%)
+2019-01-31 11:31:08 1548934268.720416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4365643 total-bytes-write=52 payload-bytes-read=4365614/5242880 (83.27%)
+2019-01-31 11:31:08 1548934268.830677 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4369129 total-bytes-write=52 payload-bytes-read=4369100/5242880 (83.33%)
+2019-01-31 11:31:08 1548934268.872416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4383521 total-bytes-write=52 payload-bytes-read=4383492/5242880 (83.61%)
+2019-01-31 11:31:08 1548934268.916407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4396917 total-bytes-write=52 payload-bytes-read=4396888/5242880 (83.86%)
+2019-01-31 11:31:08 1548934268.917346 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4400403 total-bytes-write=52 payload-bytes-read=4400374/5242880 (83.93%)
+2019-01-31 11:31:08 1548934268.917986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4404387 total-bytes-write=52 payload-bytes-read=4404358/5242880 (84.01%)
+2019-01-31 11:31:08 1548934268.967988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4404885 total-bytes-write=52 payload-bytes-read=4404856/5242880 (84.02%)
+2019-01-31 11:31:08 1548934268.972154 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4412305 total-bytes-write=52 payload-bytes-read=4412276/5242880 (84.16%)
+2019-01-31 11:31:09 1548934269.065922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4416289 total-bytes-write=52 payload-bytes-read=4416260/5242880 (84.23%)
+2019-01-31 11:31:09 1548934269.066862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4420771 total-bytes-write=52 payload-bytes-read=4420742/5242880 (84.32%)
+2019-01-31 11:31:09 1548934269.067149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4428191 total-bytes-write=52 payload-bytes-read=4428162/5242880 (84.46%)
+2019-01-31 11:31:09 1548934269.067347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4433171 total-bytes-write=52 payload-bytes-read=4433142/5242880 (84.56%)
+2019-01-31 11:31:09 1548934269.067664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4441089 total-bytes-write=52 payload-bytes-read=4441060/5242880 (84.71%)
+2019-01-31 11:31:09 1548934269.067826 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4445073 total-bytes-write=52 payload-bytes-read=4445044/5242880 (84.78%)
+2019-01-31 11:31:09 1548934269.068038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4450053 total-bytes-write=52 payload-bytes-read=4450024/5242880 (84.88%)
+2019-01-31 11:31:09 1548934269.068193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4454037 total-bytes-write=52 payload-bytes-read=4454008/5242880 (84.95%)
+2019-01-31 11:31:09 1548934269.068509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4461457 total-bytes-write=52 payload-bytes-read=4461428/5242880 (85.09%)
+2019-01-31 11:31:09 1548934269.068806 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4469425 total-bytes-write=52 payload-bytes-read=4469396/5242880 (85.25%)
+2019-01-31 11:31:09 1548934269.068971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4473359 total-bytes-write=52 payload-bytes-read=4473330/5242880 (85.32%)
+2019-01-31 11:31:09 1548934269.069109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4476347 total-bytes-write=52 payload-bytes-read=4476318/5242880 (85.38%)
+2019-01-31 11:31:09 1548934269.102330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4479833 total-bytes-write=52 payload-bytes-read=4479804/5242880 (85.45%)
+2019-01-31 11:31:09 1548934269.136526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4483817 total-bytes-write=52 payload-bytes-read=4483788/5242880 (85.52%)
+2019-01-31 11:31:09 1548934269.149442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4487801 total-bytes-write=52 payload-bytes-read=4487772/5242880 (85.60%)
+2019-01-31 11:31:09 1548934269.192389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4496217 total-bytes-write=52 payload-bytes-read=4496188/5242880 (85.76%)
+2019-01-31 11:31:09 1548934269.236434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4517581 total-bytes-write=52 payload-bytes-read=4517552/5242880 (86.17%)
+2019-01-31 11:31:09 1548934269.286059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4521067 total-bytes-write=52 payload-bytes-read=4521038/5242880 (86.23%)
+2019-01-31 11:31:09 1548934269.287009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4528487 total-bytes-write=52 payload-bytes-read=4528458/5242880 (86.37%)
+2019-01-31 11:31:09 1548934269.296512 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4531973 total-bytes-write=52 payload-bytes-read=4531944/5242880 (86.44%)
+2019-01-31 11:31:09 1548934269.312074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4535957 total-bytes-write=52 payload-bytes-read=4535928/5242880 (86.52%)
+2019-01-31 11:31:09 1548934269.312708 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4539393 total-bytes-write=52 payload-bytes-read=4539364/5242880 (86.58%)
+2019-01-31 11:31:09 1548934269.313272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4541385 total-bytes-write=52 payload-bytes-read=4541356/5242880 (86.62%)
+2019-01-31 11:31:09 1548934269.320489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4544871 total-bytes-write=52 payload-bytes-read=4544842/5242880 (86.69%)
+2019-01-31 11:31:09 1548934269.321494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4548855 total-bytes-write=52 payload-bytes-read=4548826/5242880 (86.76%)
+2019-01-31 11:31:09 1548934269.331982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4550349 total-bytes-write=52 payload-bytes-read=4550320/5242880 (86.79%)
+2019-01-31 11:31:09 1548934269.333355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4553835 total-bytes-write=52 payload-bytes-read=4553806/5242880 (86.86%)
+2019-01-31 11:31:09 1548934269.352575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4557271 total-bytes-write=52 payload-bytes-read=4557242/5242880 (86.92%)
+2019-01-31 11:31:09 1548934269.353497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4560757 total-bytes-write=52 payload-bytes-read=4560728/5242880 (86.99%)
+2019-01-31 11:31:09 1548934269.368322 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4564243 total-bytes-write=52 payload-bytes-read=4564214/5242880 (87.06%)
+2019-01-31 11:31:09 1548934269.408382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4564741 total-bytes-write=52 payload-bytes-read=4564712/5242880 (87.06%)
+2019-01-31 11:31:09 1548934269.424452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4565737 total-bytes-write=52 payload-bytes-read=4565708/5242880 (87.08%)
+2019-01-31 11:31:09 1548934269.425344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4569223 total-bytes-write=52 payload-bytes-read=4569194/5242880 (87.15%)
+2019-01-31 11:31:09 1548934269.468412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4586603 total-bytes-write=52 payload-bytes-read=4586574/5242880 (87.48%)
+2019-01-31 11:31:09 1548934269.512393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4590039 total-bytes-write=52 payload-bytes-read=4590010/5242880 (87.55%)
+2019-01-31 11:31:09 1548934269.515832 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4590537 total-bytes-write=52 payload-bytes-read=4590508/5242880 (87.56%)
+2019-01-31 11:31:09 1548934269.517938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4598007 total-bytes-write=52 payload-bytes-read=4597978/5242880 (87.70%)
+2019-01-31 11:31:09 1548934269.520785 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4601991 total-bytes-write=52 payload-bytes-read=4601962/5242880 (87.78%)
+2019-01-31 11:31:09 1548934269.539182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4603485 total-bytes-write=52 payload-bytes-read=4603456/5242880 (87.80%)
+2019-01-31 11:31:09 1548934269.542300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4606921 total-bytes-write=52 payload-bytes-read=4606892/5242880 (87.87%)
+2019-01-31 11:31:09 1548934269.606854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4610407 total-bytes-write=52 payload-bytes-read=4610378/5242880 (87.94%)
+2019-01-31 11:31:09 1548934269.607305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4614391 total-bytes-write=52 payload-bytes-read=4614362/5242880 (88.01%)
+2019-01-31 11:31:09 1548934269.620529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4617877 total-bytes-write=52 payload-bytes-read=4617848/5242880 (88.08%)
+2019-01-31 11:31:09 1548934269.623819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4621811 total-bytes-write=52 payload-bytes-read=4621782/5242880 (88.15%)
+2019-01-31 11:31:09 1548934269.624738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4628285 total-bytes-write=52 payload-bytes-read=4628256/5242880 (88.28%)
+2019-01-31 11:31:09 1548934269.635391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4631771 total-bytes-write=52 payload-bytes-read=4631742/5242880 (88.34%)
+2019-01-31 11:31:09 1548934269.661520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4632767 total-bytes-write=52 payload-bytes-read=4632738/5242880 (88.36%)
+2019-01-31 11:31:09 1548934269.662043 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4635755 total-bytes-write=52 payload-bytes-read=4635726/5242880 (88.42%)
+2019-01-31 11:31:09 1548934269.695041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4639191 total-bytes-write=52 payload-bytes-read=4639162/5242880 (88.48%)
+2019-01-31 11:31:09 1548934269.696143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4641681 total-bytes-write=52 payload-bytes-read=4641652/5242880 (88.53%)
+2019-01-31 11:31:09 1548934269.704527 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4645167 total-bytes-write=52 payload-bytes-read=4645138/5242880 (88.60%)
+2019-01-31 11:31:09 1548934269.705187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4649151 total-bytes-write=52 payload-bytes-read=4649122/5242880 (88.67%)
+2019-01-31 11:31:09 1548934269.716995 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4652637 total-bytes-write=52 payload-bytes-read=4652608/5242880 (88.74%)
+2019-01-31 11:31:09 1548934269.717929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4656571 total-bytes-write=52 payload-bytes-read=4656542/5242880 (88.82%)
+2019-01-31 11:31:09 1548934269.727926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4657069 total-bytes-write=52 payload-bytes-read=4657040/5242880 (88.83%)
+2019-01-31 11:31:09 1548934269.728042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4660555 total-bytes-write=52 payload-bytes-read=4660526/5242880 (88.89%)
+2019-01-31 11:31:09 1548934269.820997 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4662049 total-bytes-write=52 payload-bytes-read=4662020/5242880 (88.92%)
+2019-01-31 11:31:09 1548934269.821086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4665037 total-bytes-write=52 payload-bytes-read=4665008/5242880 (88.98%)
+2019-01-31 11:31:09 1548934269.833703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4672457 total-bytes-write=52 payload-bytes-read=4672428/5242880 (89.12%)
+2019-01-31 11:31:09 1548934269.834176 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4680425 total-bytes-write=52 payload-bytes-read=4680396/5242880 (89.27%)
+2019-01-31 11:31:09 1548934269.834483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4680923 total-bytes-write=52 payload-bytes-read=4680894/5242880 (89.28%)
+2019-01-31 11:31:09 1548934269.836584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4688343 total-bytes-write=52 payload-bytes-read=4688314/5242880 (89.42%)
+2019-01-31 11:31:09 1548934269.836742 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4692327 total-bytes-write=52 payload-bytes-read=4692298/5242880 (89.50%)
+2019-01-31 11:31:09 1548934269.837913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4696311 total-bytes-write=52 payload-bytes-read=4696282/5242880 (89.57%)
+2019-01-31 11:31:09 1548934269.880414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4703731 total-bytes-write=52 payload-bytes-read=4703702/5242880 (89.72%)
+2019-01-31 11:31:09 1548934269.924376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4712197 total-bytes-write=52 payload-bytes-read=4712168/5242880 (89.88%)
+2019-01-31 11:31:09 1548934269.968473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4748949 total-bytes-write=52 payload-bytes-read=4748920/5242880 (90.58%)
+2019-01-31 11:31:10 1548934270.012434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4761847 total-bytes-write=52 payload-bytes-read=4761818/5242880 (90.82%)
+2019-01-31 11:31:10 1548934270.054236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4762345 total-bytes-write=52 payload-bytes-read=4762316/5242880 (90.83%)
+2019-01-31 11:31:10 1548934270.055357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4765831 total-bytes-write=52 payload-bytes-read=4765802/5242880 (90.90%)
+2019-01-31 11:31:10 1548934270.059753 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4773749 total-bytes-write=52 payload-bytes-read=4773720/5242880 (91.05%)
+2019-01-31 11:31:10 1548934270.059834 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4777733 total-bytes-write=52 payload-bytes-read=4777704/5242880 (91.13%)
+2019-01-31 11:31:10 1548934270.242977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4778231 total-bytes-write=52 payload-bytes-read=4778202/5242880 (91.14%)
+2019-01-31 11:31:10 1548934270.330382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4782713 total-bytes-write=52 payload-bytes-read=4782684/5242880 (91.22%)
+2019-01-31 11:31:10 1548934270.330605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4787145 total-bytes-write=52 payload-bytes-read=4787116/5242880 (91.31%)
+2019-01-31 11:31:10 1548934270.330754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4790631 total-bytes-write=52 payload-bytes-read=4790602/5242880 (91.37%)
+2019-01-31 11:31:10 1548934270.475146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4794117 total-bytes-write=52 payload-bytes-read=4794088/5242880 (91.44%)
+2019-01-31 11:31:10 1548934270.550411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4797603 total-bytes-write=52 payload-bytes-read=4797574/5242880 (91.51%)
+2019-01-31 11:31:10 1548934270.623195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4801537 total-bytes-write=52 payload-bytes-read=4801508/5242880 (91.58%)
+2019-01-31 11:31:10 1548934270.664430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4813489 total-bytes-write=52 payload-bytes-read=4813460/5242880 (91.81%)
+2019-01-31 11:31:10 1548934270.708376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4817423 total-bytes-write=52 payload-bytes-read=4817394/5242880 (91.88%)
+2019-01-31 11:31:10 1548934270.716179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4822403 total-bytes-write=52 payload-bytes-read=4822374/5242880 (91.98%)
+2019-01-31 11:31:10 1548934270.717010 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4825889 total-bytes-write=52 payload-bytes-read=4825860/5242880 (92.05%)
+2019-01-31 11:31:10 1548934270.722750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4829873 total-bytes-write=52 payload-bytes-read=4829844/5242880 (92.12%)
+2019-01-31 11:31:10 1548934270.723381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4831367 total-bytes-write=52 payload-bytes-read=4831338/5242880 (92.15%)
+2019-01-31 11:31:10 1548934270.725336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4835799 total-bytes-write=52 payload-bytes-read=4835770/5242880 (92.23%)
+2019-01-31 11:31:10 1548934270.725455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4839783 total-bytes-write=52 payload-bytes-read=4839754/5242880 (92.31%)
+2019-01-31 11:31:10 1548934270.725514 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4840281 total-bytes-write=52 payload-bytes-read=4840252/5242880 (92.32%)
+2019-01-31 11:31:10 1548934270.789652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4843767 total-bytes-write=52 payload-bytes-read=4843738/5242880 (92.39%)
+2019-01-31 11:31:10 1548934270.798857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4847253 total-bytes-write=52 payload-bytes-read=4847224/5242880 (92.45%)
+2019-01-31 11:31:10 1548934270.840413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4865131 total-bytes-write=52 payload-bytes-read=4865102/5242880 (92.79%)
+2019-01-31 11:31:10 1548934270.884396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4882013 total-bytes-write=52 payload-bytes-read=4881984/5242880 (93.12%)
+2019-01-31 11:31:10 1548934270.891200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4885449 total-bytes-write=52 payload-bytes-read=4885420/5242880 (93.18%)
+2019-01-31 11:31:10 1548934270.892109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4889433 total-bytes-write=52 payload-bytes-read=4889404/5242880 (93.26%)
+2019-01-31 11:31:10 1548934270.939245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4892919 total-bytes-write=52 payload-bytes-read=4892890/5242880 (93.32%)
+2019-01-31 11:31:10 1548934270.956676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4896405 total-bytes-write=52 payload-bytes-read=4896376/5242880 (93.39%)
+2019-01-31 11:31:11 1548934271.000439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4919711 total-bytes-write=52 payload-bytes-read=4919682/5242880 (93.84%)
+2019-01-31 11:31:11 1548934271.044416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4927679 total-bytes-write=52 payload-bytes-read=4927650/5242880 (93.99%)
+2019-01-31 11:31:11 1548934271.052217 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4931613 total-bytes-write=52 payload-bytes-read=4931584/5242880 (94.06%)
+2019-01-31 11:31:11 1548934271.052991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4935597 total-bytes-write=52 payload-bytes-read=4935568/5242880 (94.14%)
+2019-01-31 11:31:11 1548934271.054638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4940079 total-bytes-write=52 payload-bytes-read=4940050/5242880 (94.22%)
+2019-01-31 11:31:11 1548934271.059001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4943565 total-bytes-write=52 payload-bytes-read=4943536/5242880 (94.29%)
+2019-01-31 11:31:11 1548934271.060074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4947549 total-bytes-write=52 payload-bytes-read=4947520/5242880 (94.37%)
+2019-01-31 11:31:11 1548934271.062212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4951483 total-bytes-write=52 payload-bytes-read=4951454/5242880 (94.44%)
+2019-01-31 11:31:11 1548934271.125404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4957957 total-bytes-write=52 payload-bytes-read=4957928/5242880 (94.56%)
+2019-01-31 11:31:11 1548934271.135466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4961941 total-bytes-write=52 payload-bytes-read=4961912/5242880 (94.64%)
+2019-01-31 11:31:11 1548934271.137696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4965875 total-bytes-write=52 payload-bytes-read=4965846/5242880 (94.72%)
+2019-01-31 11:31:11 1548934271.139976 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4969361 total-bytes-write=52 payload-bytes-read=4969332/5242880 (94.78%)
+2019-01-31 11:31:11 1548934271.141089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4972847 total-bytes-write=52 payload-bytes-read=4972818/5242880 (94.85%)
+2019-01-31 11:31:11 1548934271.184411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4982259 total-bytes-write=52 payload-bytes-read=4982230/5242880 (95.03%)
+2019-01-31 11:31:11 1548934271.228426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5005117 total-bytes-write=52 payload-bytes-read=5005088/5242880 (95.46%)
+2019-01-31 11:31:11 1548934271.272406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5014031 total-bytes-write=52 payload-bytes-read=5014002/5242880 (95.63%)
+2019-01-31 11:31:11 1548934271.289984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5017517 total-bytes-write=52 payload-bytes-read=5017488/5242880 (95.70%)
+2019-01-31 11:31:11 1548934271.291195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5021501 total-bytes-write=52 payload-bytes-read=5021472/5242880 (95.78%)
+2019-01-31 11:31:11 1548934271.305231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5025485 total-bytes-write=52 payload-bytes-read=5025456/5242880 (95.85%)
+2019-01-31 11:31:11 1548934271.348422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5038881 total-bytes-write=52 payload-bytes-read=5038852/5242880 (96.11%)
+2019-01-31 11:31:11 1548934271.415915 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5042367 total-bytes-write=52 payload-bytes-read=5042338/5242880 (96.17%)
+2019-01-31 11:31:11 1548934271.416846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5049289 total-bytes-write=52 payload-bytes-read=5049260/5242880 (96.31%)
+2019-01-31 11:31:11 1548934271.440553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5052775 total-bytes-write=52 payload-bytes-read=5052746/5242880 (96.37%)
+2019-01-31 11:31:11 1548934271.501405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5053771 total-bytes-write=52 payload-bytes-read=5053742/5242880 (96.39%)
+2019-01-31 11:31:11 1548934271.502804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5061241 total-bytes-write=52 payload-bytes-read=5061212/5242880 (96.53%)
+2019-01-31 11:31:11 1548934271.503565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5065175 total-bytes-write=52 payload-bytes-read=5065146/5242880 (96.61%)
+2019-01-31 11:31:11 1548934271.513258 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5065673 total-bytes-write=52 payload-bytes-read=5065644/5242880 (96.62%)
+2019-01-31 11:31:11 1548934271.513738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5069159 total-bytes-write=52 payload-bytes-read=5069130/5242880 (96.69%)
+2019-01-31 11:31:11 1548934271.524118 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5072645 total-bytes-write=52 payload-bytes-read=5072616/5242880 (96.75%)
+2019-01-31 11:31:11 1548934271.564393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5079567 total-bytes-write=52 payload-bytes-read=5079538/5242880 (96.88%)
+2019-01-31 11:31:11 1548934271.608458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5106907 total-bytes-write=52 payload-bytes-read=5106878/5242880 (97.41%)
+2019-01-31 11:31:11 1548934271.652416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5111389 total-bytes-write=52 payload-bytes-read=5111360/5242880 (97.49%)
+2019-01-31 11:31:11 1548934271.666882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5116817 total-bytes-write=52 payload-bytes-read=5116788/5242880 (97.59%)
+2019-01-31 11:31:11 1548934271.667430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5120303 total-bytes-write=52 payload-bytes-read=5120274/5242880 (97.66%)
+2019-01-31 11:31:11 1548934271.682108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5124287 total-bytes-write=52 payload-bytes-read=5124258/5242880 (97.74%)
+2019-01-31 11:31:11 1548934271.682503 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5127773 total-bytes-write=52 payload-bytes-read=5127744/5242880 (97.80%)
+2019-01-31 11:31:11 1548934271.682783 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5128221 total-bytes-write=52 payload-bytes-read=5128192/5242880 (97.81%)
+2019-01-31 11:31:11 1548934271.701308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5131707 total-bytes-write=52 payload-bytes-read=5131678/5242880 (97.88%)
+2019-01-31 11:31:11 1548934271.721362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5132205 total-bytes-write=52 payload-bytes-read=5132176/5242880 (97.89%)
+2019-01-31 11:31:11 1548934271.722422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5135691 total-bytes-write=52 payload-bytes-read=5135662/5242880 (97.95%)
+2019-01-31 11:31:11 1548934271.723128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5139675 total-bytes-write=52 payload-bytes-read=5139646/5242880 (98.03%)
+2019-01-31 11:31:11 1548934271.723528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5143659 total-bytes-write=52 payload-bytes-read=5143630/5242880 (98.11%)
+2019-01-31 11:31:11 1548934271.764414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5152573 total-bytes-write=52 payload-bytes-read=5152544/5242880 (98.28%)
+2019-01-31 11:31:11 1548934271.820437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5157553 total-bytes-write=52 payload-bytes-read=5157524/5242880 (98.37%)
+2019-01-31 11:31:11 1548934271.821200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5160989 total-bytes-write=52 payload-bytes-read=5160960/5242880 (98.44%)
+2019-01-31 11:31:11 1548934271.833680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5164475 total-bytes-write=52 payload-bytes-read=5164446/5242880 (98.50%)
+2019-01-31 11:31:11 1548934271.834880 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5172443 total-bytes-write=52 payload-bytes-read=5172414/5242880 (98.66%)
+2019-01-31 11:31:11 1548934271.835884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5176427 total-bytes-write=52 payload-bytes-read=5176398/5242880 (98.73%)
+2019-01-31 11:31:11 1548934271.845523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5179863 total-bytes-write=52 payload-bytes-read=5179834/5242880 (98.80%)
+2019-01-31 11:31:11 1548934271.861817 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5180859 total-bytes-write=52 payload-bytes-read=5180830/5242880 (98.82%)
+2019-01-31 11:31:11 1548934271.862532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5184345 total-bytes-write=52 payload-bytes-read=5184316/5242880 (98.88%)
+2019-01-31 11:31:11 1548934271.878717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5188329 total-bytes-write=52 payload-bytes-read=5188300/5242880 (98.96%)
+2019-01-31 11:31:11 1548934271.878802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5192313 total-bytes-write=52 payload-bytes-read=5192284/5242880 (99.03%)
+2019-01-31 11:31:11 1548934271.920407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5206207 total-bytes-write=52 payload-bytes-read=5206178/5242880 (99.30%)
+2019-01-31 11:31:11 1548934271.964452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5222093 total-bytes-write=52 payload-bytes-read=5222064/5242880 (99.60%)
+2019-01-31 11:31:12 1548934272.008433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5241465 total-bytes-write=52 payload-bytes-read=5241436/5242880 (99.97%)
+2019-01-31 11:31:12 1548934272.192790 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:31:12 1548934272.192923 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:31:12 1548934272.192989 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=SUCCESS,error=NONE MD5 checksums passed: computed=4a76e4399c514f8d5738c31bf678aa74 received=4a76e4399c514f8d5738c31bf678aa74
+2019-01-31 11:31:12 1548934272.193075 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=12 usecs-to-socket-connect=194 usecs-to-proxy-init=257 usecs-to-proxy-choice=391 usecs-to-proxy-request=458 usecs-to-proxy-response=-1 usecs-to-command=779136 usecs-to-response=1434668 usecs-to-first-byte=1539126 usecs-to-last-byte=21047582 usecs-to-checksum=21047697
+2019-01-31 11:31:12 1548934272.193245 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:31:12 1548934272.193336 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 12
+2019-01-31 11:31:12 1548934272.193459 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:31:12 1548934272.193557 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:31:12 1548934272.193629 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:31:12 1548934272.193710 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:31:12 1548934272.943155 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:31:12 1548934272.943267 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:31:12 1548934272.943349 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36436 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:31:12 1548934272.943416 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:31:12 1548934272.943500 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,5,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:31:13 1548934273.611082 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:31:13 1548934273.611148 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:31:13 1548934273.652385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:31:13 1548934273.721239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=9989 total-bytes-write=52 payload-bytes-read=9960/5242880 (0.19%)
+2019-01-31 11:31:13 1548934273.727376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=11483 total-bytes-write=52 payload-bytes-read=11454/5242880 (0.22%)
+2019-01-31 11:31:13 1548934273.798744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=14969 total-bytes-write=52 payload-bytes-read=14940/5242880 (0.28%)
+2019-01-31 11:31:13 1548934273.803379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=18405 total-bytes-write=52 payload-bytes-read=18376/5242880 (0.35%)
+2019-01-31 11:31:13 1548934273.804829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:31:13 1548934273.812202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=23385 total-bytes-write=52 payload-bytes-read=23356/5242880 (0.45%)
+2019-01-31 11:31:13 1548934273.881823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=26871 total-bytes-write=52 payload-bytes-read=26842/5242880 (0.51%)
+2019-01-31 11:31:13 1548934273.883078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=30855 total-bytes-write=52 payload-bytes-read=30826/5242880 (0.59%)
+2019-01-31 11:31:13 1548934273.883718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=35287 total-bytes-write=52 payload-bytes-read=35258/5242880 (0.67%)
+2019-01-31 11:31:13 1548934273.883801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=36283 total-bytes-write=52 payload-bytes-read=36254/5242880 (0.69%)
+2019-01-31 11:31:13 1548934273.887443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=37777 total-bytes-write=52 payload-bytes-read=37748/5242880 (0.72%)
+2019-01-31 11:31:13 1548934273.888206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=42259 total-bytes-write=52 payload-bytes-read=42230/5242880 (0.81%)
+2019-01-31 11:31:13 1548934273.889649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=45745 total-bytes-write=52 payload-bytes-read=45716/5242880 (0.87%)
+2019-01-31 11:31:13 1548934273.934654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=49679 total-bytes-write=52 payload-bytes-read=49650/5242880 (0.95%)
+2019-01-31 11:31:13 1548934273.969437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=53727 total-bytes-write=52 payload-bytes-read=53698/5242880 (1.02%)
+2019-01-31 11:31:14 1548934274.012439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=73035 total-bytes-write=52 payload-bytes-read=73006/5242880 (1.39%)
+2019-01-31 11:31:14 1548934274.065477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=77019 total-bytes-write=52 payload-bytes-read=76990/5242880 (1.47%)
+2019-01-31 11:31:14 1548934274.066800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=80505 total-bytes-write=52 payload-bytes-read=80476/5242880 (1.53%)
+2019-01-31 11:31:14 1548934274.067897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=83941 total-bytes-write=52 payload-bytes-read=83912/5242880 (1.60%)
+2019-01-31 11:31:14 1548934274.069478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=87925 total-bytes-write=52 payload-bytes-read=87896/5242880 (1.68%)
+2019-01-31 11:31:14 1548934274.071589 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=94399 total-bytes-write=52 payload-bytes-read=94370/5242880 (1.80%)
+2019-01-31 11:31:14 1548934274.074201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=97885 total-bytes-write=52 payload-bytes-read=97856/5242880 (1.87%)
+2019-01-31 11:31:14 1548934274.147655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=101819 total-bytes-write=52 payload-bytes-read=101790/5242880 (1.94%)
+2019-01-31 11:31:14 1548934274.151594 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=105803 total-bytes-write=52 payload-bytes-read=105774/5242880 (2.02%)
+2019-01-31 11:31:14 1548934274.151988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=109289 total-bytes-write=52 payload-bytes-read=109260/5242880 (2.08%)
+2019-01-31 11:31:14 1548934274.157971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=113273 total-bytes-write=52 payload-bytes-read=113244/5242880 (2.16%)
+2019-01-31 11:31:14 1548934274.158568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=117705 total-bytes-write=52 payload-bytes-read=117676/5242880 (2.24%)
+2019-01-31 11:31:14 1548934274.158679 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=121191 total-bytes-write=52 payload-bytes-read=121162/5242880 (2.31%)
+2019-01-31 11:31:14 1548934274.162125 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=125175 total-bytes-write=52 payload-bytes-read=125146/5242880 (2.39%)
+2019-01-31 11:31:14 1548934274.230293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=129159 total-bytes-write=52 payload-bytes-read=129130/5242880 (2.46%)
+2019-01-31 11:31:14 1548934274.272435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=154955 total-bytes-write=52 payload-bytes-read=154926/5242880 (2.95%)
+2019-01-31 11:31:14 1548934274.317422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=158441 total-bytes-write=52 payload-bytes-read=158412/5242880 (3.02%)
+2019-01-31 11:31:14 1548934274.318540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=159935 total-bytes-write=52 payload-bytes-read=159906/5242880 (3.05%)
+2019-01-31 11:31:14 1548934274.321908 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=163421 total-bytes-write=52 payload-bytes-read=163392/5242880 (3.12%)
+2019-01-31 11:31:14 1548934274.326306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=167355 total-bytes-write=52 payload-bytes-read=167326/5242880 (3.19%)
+2019-01-31 11:31:14 1548934274.326977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=171339 total-bytes-write=52 payload-bytes-read=171310/5242880 (3.27%)
+2019-01-31 11:31:14 1548934274.328862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=175821 total-bytes-write=52 payload-bytes-read=175792/5242880 (3.35%)
+2019-01-31 11:31:14 1548934274.329267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=179307 total-bytes-write=52 payload-bytes-read=179278/5242880 (3.42%)
+2019-01-31 11:31:14 1548934274.329717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=181249 total-bytes-write=52 payload-bytes-read=181220/5242880 (3.46%)
+2019-01-31 11:31:14 1548934274.375171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=184735 total-bytes-write=52 payload-bytes-read=184706/5242880 (3.52%)
+2019-01-31 11:31:14 1548934274.403269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=187225 total-bytes-write=52 payload-bytes-read=187196/5242880 (3.57%)
+2019-01-31 11:31:14 1548934274.404200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=191209 total-bytes-write=52 payload-bytes-read=191180/5242880 (3.65%)
+2019-01-31 11:31:14 1548934274.409572 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=198629 total-bytes-write=52 payload-bytes-read=198600/5242880 (3.79%)
+2019-01-31 11:31:14 1548934274.412688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=202613 total-bytes-write=52 payload-bytes-read=202584/5242880 (3.86%)
+2019-01-31 11:31:14 1548934274.413376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=207095 total-bytes-write=52 payload-bytes-read=207066/5242880 (3.95%)
+2019-01-31 11:31:14 1548934274.414869 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=211577 total-bytes-write=52 payload-bytes-read=211548/5242880 (4.03%)
+2019-01-31 11:31:14 1548934274.465913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=215013 total-bytes-write=52 payload-bytes-read=214984/5242880 (4.10%)
+2019-01-31 11:31:14 1548934274.532856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=218997 total-bytes-write=52 payload-bytes-read=218968/5242880 (4.18%)
+2019-01-31 11:31:14 1548934274.549048 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=223479 total-bytes-write=52 payload-bytes-read=223450/5242880 (4.26%)
+2019-01-31 11:31:14 1548934274.549160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=230899 total-bytes-write=52 payload-bytes-read=230870/5242880 (4.40%)
+2019-01-31 11:31:14 1548934274.549440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=238867 total-bytes-write=52 payload-bytes-read=238838/5242880 (4.56%)
+2019-01-31 11:31:14 1548934274.549553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=244345 total-bytes-write=52 payload-bytes-read=244316/5242880 (4.66%)
+2019-01-31 11:31:14 1548934274.575625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:31:14 1548934274.627552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=250769 total-bytes-write=52 payload-bytes-read=250740/5242880 (4.78%)
+2019-01-31 11:31:14 1548934274.630818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=254255 total-bytes-write=52 payload-bytes-read=254226/5242880 (4.85%)
+2019-01-31 11:31:14 1548934274.633966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=258239 total-bytes-write=52 payload-bytes-read=258210/5242880 (4.92%)
+2019-01-31 11:31:14 1548934274.635113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=261725 total-bytes-write=52 payload-bytes-read=261696/5242880 (4.99%)
+2019-01-31 11:31:14 1548934274.638184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=269643 total-bytes-write=52 payload-bytes-read=269614/5242880 (5.14%)
+2019-01-31 11:31:14 1548934274.638256 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:31:14 1548934274.639263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=278109 total-bytes-write=52 payload-bytes-read=278080/5242880 (5.30%)
+2019-01-31 11:31:14 1548934274.658280 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=282043 total-bytes-write=52 payload-bytes-read=282014/5242880 (5.38%)
+2019-01-31 11:31:14 1548934274.713047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=285031 total-bytes-write=52 payload-bytes-read=285002/5242880 (5.44%)
+2019-01-31 11:31:14 1548934274.715907 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=289015 total-bytes-write=52 payload-bytes-read=288986/5242880 (5.51%)
+2019-01-31 11:31:14 1548934274.721780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=292999 total-bytes-write=52 payload-bytes-read=292970/5242880 (5.59%)
+2019-01-31 11:31:14 1548934274.764413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=314811 total-bytes-write=52 payload-bytes-read=314782/5242880 (6.00%)
+2019-01-31 11:31:14 1548934274.820251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=318795 total-bytes-write=52 payload-bytes-read=318766/5242880 (6.08%)
+2019-01-31 11:31:14 1548934274.821224 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=322281 total-bytes-write=52 payload-bytes-read=322252/5242880 (6.15%)
+2019-01-31 11:31:14 1548934274.833198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=325767 total-bytes-write=52 payload-bytes-read=325738/5242880 (6.21%)
+2019-01-31 11:31:14 1548934274.876451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=350567 total-bytes-write=52 payload-bytes-read=350538/5242880 (6.69%)
+2019-01-31 11:31:14 1548934274.920414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=354551 total-bytes-write=52 payload-bytes-read=354522/5242880 (6.76%)
+2019-01-31 11:31:14 1548934274.926092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=358535 total-bytes-write=52 payload-bytes-read=358506/5242880 (6.84%)
+2019-01-31 11:31:14 1548934274.968409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=378853 total-bytes-write=52 payload-bytes-read=378824/5242880 (7.23%)
+2019-01-31 11:31:15 1548934275.012426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=382339 total-bytes-write=52 payload-bytes-read=382310/5242880 (7.29%)
+2019-01-31 11:31:15 1548934275.041360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=385825 total-bytes-write=52 payload-bytes-read=385796/5242880 (7.36%)
+2019-01-31 11:31:15 1548934275.084474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=414609 total-bytes-write=52 payload-bytes-read=414580/5242880 (7.91%)
+2019-01-31 11:31:15 1548934275.128483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=431491 total-bytes-write=52 payload-bytes-read=431462/5242880 (8.23%)
+2019-01-31 11:31:15 1548934275.128627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=435973 total-bytes-write=52 payload-bytes-read=435944/5242880 (8.31%)
+2019-01-31 11:31:15 1548934275.129198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=439957 total-bytes-write=52 payload-bytes-read=439928/5242880 (8.39%)
+2019-01-31 11:31:15 1548934275.193081 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=440455 total-bytes-write=52 payload-bytes-read=440426/5242880 (8.40%)
+2019-01-31 11:31:15 1548934275.194097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=443891 total-bytes-write=52 payload-bytes-read=443862/5242880 (8.47%)
+2019-01-31 11:31:15 1548934275.238401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=444887 total-bytes-write=52 payload-bytes-read=444858/5242880 (8.48%)
+2019-01-31 11:31:15 1548934275.239739 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=448373 total-bytes-write=52 payload-bytes-read=448344/5242880 (8.55%)
+2019-01-31 11:31:15 1548934275.240498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=452357 total-bytes-write=52 payload-bytes-read=452328/5242880 (8.63%)
+2019-01-31 11:31:15 1548934275.242315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=456341 total-bytes-write=52 payload-bytes-read=456312/5242880 (8.70%)
+2019-01-31 11:31:15 1548934275.284459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=480643 total-bytes-write=52 payload-bytes-read=480614/5242880 (9.17%)
+2019-01-31 11:31:15 1548934275.328411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=486619 total-bytes-write=52 payload-bytes-read=486590/5242880 (9.28%)
+2019-01-31 11:31:15 1548934275.328717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=489607 total-bytes-write=52 payload-bytes-read=489578/5242880 (9.34%)
+2019-01-31 11:31:15 1548934275.340207 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=491101 total-bytes-write=52 payload-bytes-read=491072/5242880 (9.37%)
+2019-01-31 11:31:15 1548934275.398110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=494537 total-bytes-write=52 payload-bytes-read=494508/5242880 (9.43%)
+2019-01-31 11:31:15 1548934275.398969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=498521 total-bytes-write=52 payload-bytes-read=498492/5242880 (9.51%)
+2019-01-31 11:31:15 1548934275.401158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=502505 total-bytes-write=52 payload-bytes-read=502476/5242880 (9.58%)
+2019-01-31 11:31:15 1548934275.444459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=531289 total-bytes-write=52 payload-bytes-read=531260/5242880 (10.13%)
+2019-01-31 11:31:15 1548934275.488393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=540253 total-bytes-write=52 payload-bytes-read=540224/5242880 (10.30%)
+2019-01-31 11:31:15 1548934275.490510 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=547175 total-bytes-write=52 payload-bytes-read=547146/5242880 (10.44%)
+2019-01-31 11:31:15 1548934275.499384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=550661 total-bytes-write=52 payload-bytes-read=550632/5242880 (10.50%)
+2019-01-31 11:31:15 1548934275.531193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=558579 total-bytes-write=52 payload-bytes-read=558550/5242880 (10.65%)
+2019-01-31 11:31:15 1548934275.531335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=563559 total-bytes-write=52 payload-bytes-read=563530/5242880 (10.75%)
+2019-01-31 11:31:15 1548934275.532320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=564057 total-bytes-write=52 payload-bytes-read=564028/5242880 (10.76%)
+2019-01-31 11:31:15 1548934275.532842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=567543 total-bytes-write=52 payload-bytes-read=567514/5242880 (10.82%)
+2019-01-31 11:31:15 1548934275.598961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=568539 total-bytes-write=52 payload-bytes-read=568510/5242880 (10.84%)
+2019-01-31 11:31:15 1548934275.600596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=572025 total-bytes-write=52 payload-bytes-read=571996/5242880 (10.91%)
+2019-01-31 11:31:15 1548934275.601391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=577951 total-bytes-write=52 payload-bytes-read=577922/5242880 (11.02%)
+2019-01-31 11:31:15 1548934275.610670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=581437 total-bytes-write=52 payload-bytes-read=581408/5242880 (11.09%)
+2019-01-31 11:31:15 1548934275.613852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=587911 total-bytes-write=52 payload-bytes-read=587882/5242880 (11.21%)
+2019-01-31 11:31:15 1548934275.638596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=591347 total-bytes-write=52 payload-bytes-read=591318/5242880 (11.28%)
+2019-01-31 11:31:15 1548934275.640718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=595331 total-bytes-write=52 payload-bytes-read=595302/5242880 (11.35%)
+2019-01-31 11:31:15 1548934275.695466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=602801 total-bytes-write=52 payload-bytes-read=602772/5242880 (11.50%)
+2019-01-31 11:31:15 1548934275.702317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=606237 total-bytes-write=52 payload-bytes-read=606208/5242880 (11.56%)
+2019-01-31 11:31:15 1548934275.702983 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=610221 total-bytes-write=52 payload-bytes-read=610192/5242880 (11.64%)
+2019-01-31 11:31:15 1548934275.703625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=613209 total-bytes-write=52 payload-bytes-read=613180/5242880 (11.70%)
+2019-01-31 11:31:15 1548934275.752623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=617691 total-bytes-write=52 payload-bytes-read=617662/5242880 (11.78%)
+2019-01-31 11:31:15 1548934275.780034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=621177 total-bytes-write=52 payload-bytes-read=621148/5242880 (11.85%)
+2019-01-31 11:31:15 1548934275.780843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=625111 total-bytes-write=52 payload-bytes-read=625082/5242880 (11.92%)
+2019-01-31 11:31:15 1548934275.781441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=629095 total-bytes-write=52 payload-bytes-read=629066/5242880 (12.00%)
+2019-01-31 11:31:15 1548934275.835455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=633079 total-bytes-write=52 payload-bytes-read=633050/5242880 (12.07%)
+2019-01-31 11:31:15 1548934275.876417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=644981 total-bytes-write=52 payload-bytes-read=644952/5242880 (12.30%)
+2019-01-31 11:31:15 1548934275.920465 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=678247 total-bytes-write=52 payload-bytes-read=678218/5242880 (12.94%)
+2019-01-31 11:31:15 1548934275.964407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=687709 total-bytes-write=52 payload-bytes-read=687680/5242880 (13.12%)
+2019-01-31 11:31:15 1548934275.968430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=693635 total-bytes-write=52 payload-bytes-read=693606/5242880 (13.23%)
+2019-01-31 11:31:15 1548934275.969210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=697121 total-bytes-write=52 payload-bytes-read=697092/5242880 (13.30%)
+2019-01-31 11:31:15 1548934275.969447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=705039 total-bytes-write=52 payload-bytes-read=705010/5242880 (13.45%)
+2019-01-31 11:31:15 1548934275.983408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=707529 total-bytes-write=52 payload-bytes-read=707500/5242880 (13.49%)
+2019-01-31 11:31:15 1548934275.984788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=711015 total-bytes-write=52 payload-bytes-read=710986/5242880 (13.56%)
+2019-01-31 11:31:15 1548934275.985789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=713007 total-bytes-write=52 payload-bytes-read=712978/5242880 (13.60%)
+2019-01-31 11:31:15 1548934275.993471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=714501 total-bytes-write=52 payload-bytes-read=714472/5242880 (13.63%)
+2019-01-31 11:31:16 1548934276.049682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=717987 total-bytes-write=52 payload-bytes-read=717958/5242880 (13.69%)
+2019-01-31 11:31:16 1548934276.050211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=721423 total-bytes-write=52 payload-bytes-read=721394/5242880 (13.76%)
+2019-01-31 11:31:16 1548934276.071265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=724909 total-bytes-write=52 payload-bytes-read=724880/5242880 (13.83%)
+2019-01-31 11:31:16 1548934276.073689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=727897 total-bytes-write=52 payload-bytes-read=727868/5242880 (13.88%)
+2019-01-31 11:31:16 1548934276.083064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=731383 total-bytes-write=52 payload-bytes-read=731354/5242880 (13.95%)
+2019-01-31 11:31:16 1548934276.083694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=735367 total-bytes-write=52 payload-bytes-read=735338/5242880 (14.03%)
+2019-01-31 11:31:16 1548934276.086960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=743285 total-bytes-write=52 payload-bytes-read=743256/5242880 (14.18%)
+2019-01-31 11:31:16 1548934276.087080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=747269 total-bytes-write=52 payload-bytes-read=747240/5242880 (14.25%)
+2019-01-31 11:31:16 1548934276.087206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=751253 total-bytes-write=52 payload-bytes-read=751224/5242880 (14.33%)
+2019-01-31 11:31:16 1548934276.128395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=758175 total-bytes-write=52 payload-bytes-read=758146/5242880 (14.46%)
+2019-01-31 11:31:16 1548934276.172395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=763653 total-bytes-write=52 payload-bytes-read=763624/5242880 (14.56%)
+2019-01-31 11:31:16 1548934276.232623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=771073 total-bytes-write=52 payload-bytes-read=771044/5242880 (14.71%)
+2019-01-31 11:31:16 1548934276.234425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=779041 total-bytes-write=52 payload-bytes-read=779012/5242880 (14.86%)
+2019-01-31 11:31:16 1548934276.244221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=782527 total-bytes-write=52 payload-bytes-read=782498/5242880 (14.92%)
+2019-01-31 11:31:16 1548934276.245409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=788453 total-bytes-write=52 payload-bytes-read=788424/5242880 (15.04%)
+2019-01-31 11:31:16 1548934276.258073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=791939 total-bytes-write=52 payload-bytes-read=791910/5242880 (15.10%)
+2019-01-31 11:31:16 1548934276.264974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=795923 total-bytes-write=52 payload-bytes-read=795894/5242880 (15.18%)
+2019-01-31 11:31:16 1548934276.265966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=799907 total-bytes-write=52 payload-bytes-read=799878/5242880 (15.26%)
+2019-01-31 11:31:16 1548934276.308406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=808323 total-bytes-write=52 payload-bytes-read=808294/5242880 (15.42%)
+2019-01-31 11:31:16 1548934276.352403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=813303 total-bytes-write=52 payload-bytes-read=813274/5242880 (15.51%)
+2019-01-31 11:31:16 1548934276.373625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=820723 total-bytes-write=52 payload-bytes-read=820694/5242880 (15.65%)
+2019-01-31 11:31:16 1548934276.374653 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=828691 total-bytes-write=52 payload-bytes-read=828662/5242880 (15.81%)
+2019-01-31 11:31:16 1548934276.394338 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=830185 total-bytes-write=52 payload-bytes-read=830156/5242880 (15.83%)
+2019-01-31 11:31:16 1548934276.396082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=835613 total-bytes-write=52 payload-bytes-read=835584/5242880 (15.94%)
+2019-01-31 11:31:16 1548934276.454067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=839099 total-bytes-write=52 payload-bytes-read=839070/5242880 (16.00%)
+2019-01-31 11:31:16 1548934276.531899 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=839597 total-bytes-write=52 payload-bytes-read=839568/5242880 (16.01%)
+2019-01-31 11:31:16 1548934276.533020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=843083 total-bytes-write=52 payload-bytes-read=843054/5242880 (16.08%)
+2019-01-31 11:31:16 1548934276.533804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=847067 total-bytes-write=52 payload-bytes-read=847038/5242880 (16.16%)
+2019-01-31 11:31:16 1548934276.534461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=851051 total-bytes-write=52 payload-bytes-read=851022/5242880 (16.23%)
+2019-01-31 11:31:16 1548934276.576409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=858969 total-bytes-write=52 payload-bytes-read=858940/5242880 (16.38%)
+2019-01-31 11:31:16 1548934276.620441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=877345 total-bytes-write=52 payload-bytes-read=877316/5242880 (16.73%)
+2019-01-31 11:31:16 1548934276.664447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=915093 total-bytes-write=52 payload-bytes-read=915064/5242880 (17.45%)
+2019-01-31 11:31:16 1548934276.708716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=922513 total-bytes-write=52 payload-bytes-read=922484/5242880 (17.59%)
+2019-01-31 11:31:16 1548934276.708814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=926497 total-bytes-write=52 payload-bytes-read=926468/5242880 (17.67%)
+2019-01-31 11:31:16 1548934276.723963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=927991 total-bytes-write=52 payload-bytes-read=927962/5242880 (17.70%)
+2019-01-31 11:31:16 1548934276.724547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=931477 total-bytes-write=52 payload-bytes-read=931448/5242880 (17.77%)
+2019-01-31 11:31:16 1548934276.725892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=935411 total-bytes-write=52 payload-bytes-read=935382/5242880 (17.84%)
+2019-01-31 11:31:16 1548934276.731441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=938897 total-bytes-write=52 payload-bytes-read=938868/5242880 (17.91%)
+2019-01-31 11:31:16 1548934276.733969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=942881 total-bytes-write=52 payload-bytes-read=942852/5242880 (17.98%)
+2019-01-31 11:31:16 1548934276.734531 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=946367 total-bytes-write=52 payload-bytes-read=946338/5242880 (18.05%)
+2019-01-31 11:31:16 1548934276.735729 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=953787 total-bytes-write=52 payload-bytes-read=953758/5242880 (18.19%)
+2019-01-31 11:31:16 1548934276.767379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=958269 total-bytes-write=52 payload-bytes-read=958240/5242880 (18.28%)
+2019-01-31 11:31:16 1548934276.768537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=961755 total-bytes-write=52 payload-bytes-read=961726/5242880 (18.34%)
+2019-01-31 11:31:16 1548934276.809183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=963249 total-bytes-write=52 payload-bytes-read=963220/5242880 (18.37%)
+2019-01-31 11:31:16 1548934276.821874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=966237 total-bytes-write=52 payload-bytes-read=966208/5242880 (18.43%)
+2019-01-31 11:31:16 1548934276.839311 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=973657 total-bytes-write=52 payload-bytes-read=973628/5242880 (18.57%)
+2019-01-31 11:31:16 1548934276.839668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=981625 total-bytes-write=52 payload-bytes-read=981596/5242880 (18.72%)
+2019-01-31 11:31:16 1548934276.840354 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=983567 total-bytes-write=52 payload-bytes-read=983538/5242880 (18.76%)
+2019-01-31 11:31:16 1548934276.849708 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=990041 total-bytes-write=52 payload-bytes-read=990012/5242880 (18.88%)
+2019-01-31 11:31:16 1548934276.921379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=991037 total-bytes-write=52 payload-bytes-read=991008/5242880 (18.90%)
+2019-01-31 11:31:16 1548934276.925665 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=998507 total-bytes-write=52 payload-bytes-read=998478/5242880 (19.04%)
+2019-01-31 11:31:16 1548934276.925740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1000449 total-bytes-write=52 payload-bytes-read=1000420/5242880 (19.08%)
+2019-01-31 11:31:16 1548934276.928683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1003935 total-bytes-write=52 payload-bytes-read=1003906/5242880 (19.15%)
+2019-01-31 11:31:16 1548934276.929121 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1006923 total-bytes-write=52 payload-bytes-read=1006894/5242880 (19.20%)
+2019-01-31 11:31:17 1548934277.006929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1010409 total-bytes-write=52 payload-bytes-read=1010380/5242880 (19.27%)
+2019-01-31 11:31:17 1548934277.045700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1010907 total-bytes-write=52 payload-bytes-read=1010878/5242880 (19.28%)
+2019-01-31 11:31:17 1548934277.046356 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1014393 total-bytes-write=52 payload-bytes-read=1014364/5242880 (19.35%)
+2019-01-31 11:31:17 1548934277.047661 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1018327 total-bytes-write=52 payload-bytes-read=1018298/5242880 (19.42%)
+2019-01-31 11:31:17 1548934277.048954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1022311 total-bytes-write=52 payload-bytes-read=1022282/5242880 (19.50%)
+2019-01-31 11:31:17 1548934277.049756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1026295 total-bytes-write=52 payload-bytes-read=1026266/5242880 (19.57%)
+2019-01-31 11:31:17 1548934277.092438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1044671 total-bytes-write=52 payload-bytes-read=1044642/5242880 (19.92%)
+2019-01-31 11:31:17 1548934277.136445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1061553 total-bytes-write=52 payload-bytes-read=1061524/5242880 (20.25%)
+2019-01-31 11:31:17 1548934277.213410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1064989 total-bytes-write=52 payload-bytes-read=1064960/5242880 (20.31%)
+2019-01-31 11:31:17 1548934277.213920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1067479 total-bytes-write=52 payload-bytes-read=1067450/5242880 (20.36%)
+2019-01-31 11:31:17 1548934277.227469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1070965 total-bytes-write=52 payload-bytes-read=1070936/5242880 (20.43%)
+2019-01-31 11:31:17 1548934277.229080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1078933 total-bytes-write=52 payload-bytes-read=1078904/5242880 (20.58%)
+2019-01-31 11:31:17 1548934277.229288 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1081871 total-bytes-write=52 payload-bytes-read=1081842/5242880 (20.63%)
+2019-01-31 11:31:17 1548934277.236916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1085357 total-bytes-write=52 payload-bytes-read=1085328/5242880 (20.70%)
+2019-01-31 11:31:17 1548934277.238597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1093325 total-bytes-write=52 payload-bytes-read=1093296/5242880 (20.85%)
+2019-01-31 11:31:17 1548934277.247803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1096811 total-bytes-write=52 payload-bytes-read=1096782/5242880 (20.92%)
+2019-01-31 11:31:17 1548934277.249593 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1104729 total-bytes-write=52 payload-bytes-read=1104700/5242880 (21.07%)
+2019-01-31 11:31:17 1548934277.279025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1105725 total-bytes-write=52 payload-bytes-read=1105696/5242880 (21.09%)
+2019-01-31 11:31:17 1548934277.280086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1109211 total-bytes-write=52 payload-bytes-read=1109182/5242880 (21.16%)
+2019-01-31 11:31:17 1548934277.280640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1112199 total-bytes-write=52 payload-bytes-read=1112170/5242880 (21.21%)
+2019-01-31 11:31:17 1548934277.336532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1112697 total-bytes-write=52 payload-bytes-read=1112668/5242880 (21.22%)
+2019-01-31 11:31:17 1548934277.338494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1116133 total-bytes-write=52 payload-bytes-read=1116104/5242880 (21.29%)
+2019-01-31 11:31:17 1548934277.416145 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1116631 total-bytes-write=52 payload-bytes-read=1116602/5242880 (21.30%)
+2019-01-31 11:31:17 1548934277.417309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1120117 total-bytes-write=52 payload-bytes-read=1120088/5242880 (21.36%)
+2019-01-31 11:31:17 1548934277.418720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1124101 total-bytes-write=52 payload-bytes-read=1124072/5242880 (21.44%)
+2019-01-31 11:31:17 1548934277.419764 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1128085 total-bytes-write=52 payload-bytes-read=1128056/5242880 (21.52%)
+2019-01-31 11:31:17 1548934277.460429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1156371 total-bytes-write=52 payload-bytes-read=1156342/5242880 (22.06%)
+2019-01-31 11:31:17 1548934277.504394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1160853 total-bytes-write=52 payload-bytes-read=1160824/5242880 (22.14%)
+2019-01-31 11:31:17 1548934277.517283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1168273 total-bytes-write=52 payload-bytes-read=1168244/5242880 (22.28%)
+2019-01-31 11:31:17 1548934277.517524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1174249 total-bytes-write=52 payload-bytes-read=1174220/5242880 (22.40%)
+2019-01-31 11:31:17 1548934277.529254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1175245 total-bytes-write=52 payload-bytes-read=1175216/5242880 (22.42%)
+2019-01-31 11:31:17 1548934277.530249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1178731 total-bytes-write=52 payload-bytes-read=1178702/5242880 (22.48%)
+2019-01-31 11:31:17 1548934277.531014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1182665 total-bytes-write=52 payload-bytes-read=1182636/5242880 (22.56%)
+2019-01-31 11:31:17 1548934277.550938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1184159 total-bytes-write=52 payload-bytes-read=1184130/5242880 (22.59%)
+2019-01-31 11:31:17 1548934277.552433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1187147 total-bytes-write=52 payload-bytes-read=1187118/5242880 (22.64%)
+2019-01-31 11:31:17 1548934277.561288 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1190633 total-bytes-write=52 payload-bytes-read=1190604/5242880 (22.71%)
+2019-01-31 11:31:17 1548934277.577025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1198053 total-bytes-write=52 payload-bytes-read=1198024/5242880 (22.85%)
+2019-01-31 11:31:17 1548934277.581447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1201539 total-bytes-write=52 payload-bytes-read=1201510/5242880 (22.92%)
+2019-01-31 11:31:17 1548934277.591104 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1202037 total-bytes-write=52 payload-bytes-read=1202008/5242880 (22.93%)
+2019-01-31 11:31:17 1548934277.594508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1209507 total-bytes-write=52 payload-bytes-read=1209478/5242880 (23.07%)
+2019-01-31 11:31:17 1548934277.594587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1212943 total-bytes-write=52 payload-bytes-read=1212914/5242880 (23.13%)
+2019-01-31 11:31:17 1548934277.602409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1216429 total-bytes-write=52 payload-bytes-read=1216400/5242880 (23.20%)
+2019-01-31 11:31:17 1548934277.602784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1220413 total-bytes-write=52 payload-bytes-read=1220384/5242880 (23.28%)
+2019-01-31 11:31:17 1548934277.603557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1224397 total-bytes-write=52 payload-bytes-read=1224368/5242880 (23.35%)
+2019-01-31 11:31:17 1548934277.644439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1230821 total-bytes-write=52 payload-bytes-read=1230792/5242880 (23.48%)
+2019-01-31 11:31:17 1548934277.688395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1238789 total-bytes-write=52 payload-bytes-read=1238760/5242880 (23.63%)
+2019-01-31 11:31:17 1548934277.732413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1255671 total-bytes-write=52 payload-bytes-read=1255642/5242880 (23.95%)
+2019-01-31 11:31:17 1548934277.776376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1261149 total-bytes-write=52 payload-bytes-read=1261120/5242880 (24.05%)
+2019-01-31 11:31:17 1548934277.786407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1264585 total-bytes-write=52 payload-bytes-read=1264556/5242880 (24.12%)
+2019-01-31 11:31:17 1548934277.787051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1268071 total-bytes-write=52 payload-bytes-read=1268042/5242880 (24.19%)
+2019-01-31 11:31:17 1548934277.822627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1271557 total-bytes-write=52 payload-bytes-read=1271528/5242880 (24.25%)
+2019-01-31 11:31:17 1548934277.864402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1287443 total-bytes-write=52 payload-bytes-read=1287414/5242880 (24.56%)
+2019-01-31 11:31:17 1548934277.908399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1295361 total-bytes-write=52 payload-bytes-read=1295332/5242880 (24.71%)
+2019-01-31 11:31:17 1548934277.909422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1301337 total-bytes-write=52 payload-bytes-read=1301308/5242880 (24.82%)
+2019-01-31 11:31:17 1548934277.915112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1304823 total-bytes-write=52 payload-bytes-read=1304794/5242880 (24.89%)
+2019-01-31 11:31:17 1548934277.924760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1305321 total-bytes-write=52 payload-bytes-read=1305292/5242880 (24.90%)
+2019-01-31 11:31:17 1548934277.926604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1308807 total-bytes-write=52 payload-bytes-read=1308778/5242880 (24.96%)
+2019-01-31 11:31:17 1548934277.927299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1312741 total-bytes-write=52 payload-bytes-read=1312712/5242880 (25.04%)
+2019-01-31 11:31:17 1548934277.983467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1313737 total-bytes-write=52 payload-bytes-read=1313708/5242880 (25.06%)
+2019-01-31 11:31:17 1548934277.985773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1321207 total-bytes-write=52 payload-bytes-read=1321178/5242880 (25.20%)
+2019-01-31 11:31:17 1548934277.985929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1327631 total-bytes-write=52 payload-bytes-read=1327602/5242880 (25.32%)
+2019-01-31 11:31:18 1548934278.024144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1328627 total-bytes-write=52 payload-bytes-read=1328598/5242880 (25.34%)
+2019-01-31 11:31:18 1548934278.024229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:31:18 1548934278.036807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1333607 total-bytes-write=52 payload-bytes-read=1333578/5242880 (25.44%)
+2019-01-31 11:31:18 1548934278.049635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1341077 total-bytes-write=52 payload-bytes-read=1341048/5242880 (25.58%)
+2019-01-31 11:31:18 1548934278.049756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1345011 total-bytes-write=52 payload-bytes-read=1344982/5242880 (25.65%)
+2019-01-31 11:31:18 1548934278.050758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1349493 total-bytes-write=52 payload-bytes-read=1349464/5242880 (25.74%)
+2019-01-31 11:31:18 1548934278.050825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1352979 total-bytes-write=52 payload-bytes-read=1352950/5242880 (25.81%)
+2019-01-31 11:31:18 1548934278.057795 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1354473 total-bytes-write=52 payload-bytes-read=1354444/5242880 (25.83%)
+2019-01-31 11:31:18 1548934278.058293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1357959 total-bytes-write=52 payload-bytes-read=1357930/5242880 (25.90%)
+2019-01-31 11:31:18 1548934278.079184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1359453 total-bytes-write=52 payload-bytes-read=1359424/5242880 (25.93%)
+2019-01-31 11:31:18 1548934278.081038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1362889 total-bytes-write=52 payload-bytes-read=1362860/5242880 (25.99%)
+2019-01-31 11:31:18 1548934278.092219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1366375 total-bytes-write=52 payload-bytes-read=1366346/5242880 (26.06%)
+2019-01-31 11:31:18 1548934278.100007 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1366873 total-bytes-write=52 payload-bytes-read=1366844/5242880 (26.07%)
+2019-01-31 11:31:18 1548934278.101047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1370359 total-bytes-write=52 payload-bytes-read=1370330/5242880 (26.14%)
+2019-01-31 11:31:18 1548934278.102466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1378277 total-bytes-write=52 payload-bytes-read=1378248/5242880 (26.29%)
+2019-01-31 11:31:18 1548934278.102815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1382261 total-bytes-write=52 payload-bytes-read=1382232/5242880 (26.36%)
+2019-01-31 11:31:18 1548934278.112290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1383257 total-bytes-write=52 payload-bytes-read=1383228/5242880 (26.38%)
+2019-01-31 11:31:18 1548934278.113479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1386743 total-bytes-write=52 payload-bytes-read=1386714/5242880 (26.45%)
+2019-01-31 11:31:18 1548934278.195189 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1387241 total-bytes-write=52 payload-bytes-read=1387212/5242880 (26.46%)
+2019-01-31 11:31:18 1548934278.214419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1394661 total-bytes-write=52 payload-bytes-read=1394632/5242880 (26.60%)
+2019-01-31 11:31:18 1548934278.234901 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1395159 total-bytes-write=52 payload-bytes-read=1395130/5242880 (26.61%)
+2019-01-31 11:31:18 1548934278.238663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1402629 total-bytes-write=52 payload-bytes-read=1402600/5242880 (26.75%)
+2019-01-31 11:31:18 1548934278.245762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1406115 total-bytes-write=52 payload-bytes-read=1406086/5242880 (26.82%)
+2019-01-31 11:31:18 1548934278.246994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1410049 total-bytes-write=52 payload-bytes-read=1410020/5242880 (26.89%)
+2019-01-31 11:31:18 1548934278.247524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1414033 total-bytes-write=52 payload-bytes-read=1414004/5242880 (26.97%)
+2019-01-31 11:31:18 1548934278.257951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1417519 total-bytes-write=52 payload-bytes-read=1417490/5242880 (27.04%)
+2019-01-31 11:31:18 1548934278.259714 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1421503 total-bytes-write=52 payload-bytes-read=1421474/5242880 (27.11%)
+2019-01-31 11:31:18 1548934278.262069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1429421 total-bytes-write=52 payload-bytes-read=1429392/5242880 (27.26%)
+2019-01-31 11:31:18 1548934278.267996 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1429919 total-bytes-write=52 payload-bytes-read=1429890/5242880 (27.27%)
+2019-01-31 11:31:18 1548934278.269342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1433405 total-bytes-write=52 payload-bytes-read=1433376/5242880 (27.34%)
+2019-01-31 11:31:18 1548934278.300192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1436393 total-bytes-write=52 payload-bytes-read=1436364/5242880 (27.40%)
+2019-01-31 11:31:18 1548934278.340799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1436891 total-bytes-write=52 payload-bytes-read=1436862/5242880 (27.41%)
+2019-01-31 11:31:18 1548934278.345785 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1444311 total-bytes-write=52 payload-bytes-read=1444282/5242880 (27.55%)
+2019-01-31 11:31:18 1548934278.345944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1451781 total-bytes-write=52 payload-bytes-read=1451752/5242880 (27.69%)
+2019-01-31 11:31:18 1548934278.368564 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1452777 total-bytes-write=52 payload-bytes-read=1452748/5242880 (27.71%)
+2019-01-31 11:31:18 1548934278.370316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1456263 total-bytes-write=52 payload-bytes-read=1456234/5242880 (27.78%)
+2019-01-31 11:31:18 1548934278.370644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1460197 total-bytes-write=52 payload-bytes-read=1460168/5242880 (27.85%)
+2019-01-31 11:31:18 1548934278.371482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1462189 total-bytes-write=52 payload-bytes-read=1462160/5242880 (27.89%)
+2019-01-31 11:31:18 1548934278.372970 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1465675 total-bytes-write=52 payload-bytes-read=1465646/5242880 (27.95%)
+2019-01-31 11:31:18 1548934278.374260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1467667 total-bytes-write=52 payload-bytes-read=1467638/5242880 (27.99%)
+2019-01-31 11:31:18 1548934278.395871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1471153 total-bytes-write=52 payload-bytes-read=1471124/5242880 (28.06%)
+2019-01-31 11:31:18 1548934278.397444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1479071 total-bytes-write=52 payload-bytes-read=1479042/5242880 (28.21%)
+2019-01-31 11:31:18 1548934278.397528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1481063 total-bytes-write=52 payload-bytes-read=1481034/5242880 (28.25%)
+2019-01-31 11:31:18 1548934278.405855 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1484549 total-bytes-write=52 payload-bytes-read=1484520/5242880 (28.31%)
+2019-01-31 11:31:18 1548934278.494042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1485545 total-bytes-write=52 payload-bytes-read=1485516/5242880 (28.33%)
+2019-01-31 11:31:18 1548934278.504184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1490973 total-bytes-write=52 payload-bytes-read=1490944/5242880 (28.44%)
+2019-01-31 11:31:18 1548934278.510811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1497945 total-bytes-write=52 payload-bytes-read=1497916/5242880 (28.57%)
+2019-01-31 11:31:18 1548934278.518181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1501431 total-bytes-write=52 payload-bytes-read=1501402/5242880 (28.64%)
+2019-01-31 11:31:18 1548934278.571415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1504917 total-bytes-write=52 payload-bytes-read=1504888/5242880 (28.70%)
+2019-01-31 11:31:18 1548934278.612455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1528721 total-bytes-write=52 payload-bytes-read=1528692/5242880 (29.16%)
+2019-01-31 11:31:18 1548934278.656459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1551579 total-bytes-write=52 payload-bytes-read=1551550/5242880 (29.59%)
+2019-01-31 11:31:18 1548934278.664935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1555065 total-bytes-write=52 payload-bytes-read=1555036/5242880 (29.66%)
+2019-01-31 11:31:18 1548934278.665963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1558999 total-bytes-write=52 payload-bytes-read=1558970/5242880 (29.73%)
+2019-01-31 11:31:18 1548934278.667757 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1566967 total-bytes-write=52 payload-bytes-read=1566938/5242880 (29.89%)
+2019-01-31 11:31:18 1548934278.667813 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1567465 total-bytes-write=52 payload-bytes-read=1567436/5242880 (29.90%)
+2019-01-31 11:31:18 1548934278.680693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1570951 total-bytes-write=52 payload-bytes-read=1570922/5242880 (29.96%)
+2019-01-31 11:31:18 1548934278.681651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1574885 total-bytes-write=52 payload-bytes-read=1574856/5242880 (30.04%)
+2019-01-31 11:31:18 1548934278.688716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1576379 total-bytes-write=52 payload-bytes-read=1576350/5242880 (30.07%)
+2019-01-31 11:31:18 1548934278.689134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1580363 total-bytes-write=52 payload-bytes-read=1580334/5242880 (30.14%)
+2019-01-31 11:31:18 1548934278.689208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1581857 total-bytes-write=52 payload-bytes-read=1581828/5242880 (30.17%)
+2019-01-31 11:31:18 1548934278.753434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1582853 total-bytes-write=52 payload-bytes-read=1582824/5242880 (30.19%)
+2019-01-31 11:31:18 1548934278.754902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1586339 total-bytes-write=52 payload-bytes-read=1586310/5242880 (30.26%)
+2019-01-31 11:31:18 1548934278.769109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1593759 total-bytes-write=52 payload-bytes-read=1593730/5242880 (30.40%)
+2019-01-31 11:31:18 1548934278.787402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1600731 total-bytes-write=52 payload-bytes-read=1600702/5242880 (30.53%)
+2019-01-31 11:31:18 1548934278.835729 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1604217 total-bytes-write=52 payload-bytes-read=1604188/5242880 (30.60%)
+2019-01-31 11:31:18 1548934278.836501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1608151 total-bytes-write=52 payload-bytes-read=1608122/5242880 (30.67%)
+2019-01-31 11:31:18 1548934278.841369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1616119 total-bytes-write=52 payload-bytes-read=1616090/5242880 (30.82%)
+2019-01-31 11:31:18 1548934278.841547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1620103 total-bytes-write=52 payload-bytes-read=1620074/5242880 (30.90%)
+2019-01-31 11:31:18 1548934278.844067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1623539 total-bytes-write=52 payload-bytes-read=1623510/5242880 (30.97%)
+2019-01-31 11:31:18 1548934278.844950 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1627523 total-bytes-write=52 payload-bytes-read=1627494/5242880 (31.04%)
+2019-01-31 11:31:18 1548934278.853968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1628021 total-bytes-write=52 payload-bytes-read=1627992/5242880 (31.05%)
+2019-01-31 11:31:18 1548934278.855082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1631507 total-bytes-write=52 payload-bytes-read=1631478/5242880 (31.12%)
+2019-01-31 11:31:18 1548934278.855870 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1633499 total-bytes-write=52 payload-bytes-read=1633470/5242880 (31.16%)
+2019-01-31 11:31:18 1548934278.923330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1636985 total-bytes-write=52 payload-bytes-read=1636956/5242880 (31.22%)
+2019-01-31 11:31:18 1548934278.931956 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1637483 total-bytes-write=52 payload-bytes-read=1637454/5242880 (31.23%)
+2019-01-31 11:31:18 1548934278.932951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1640919 total-bytes-write=52 payload-bytes-read=1640890/5242880 (31.30%)
+2019-01-31 11:31:18 1548934278.933363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1644903 total-bytes-write=52 payload-bytes-read=1644874/5242880 (31.37%)
+2019-01-31 11:31:18 1548934278.946619 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1649883 total-bytes-write=52 payload-bytes-read=1649854/5242880 (31.47%)
+2019-01-31 11:31:18 1548934278.948515 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1656307 total-bytes-write=52 payload-bytes-read=1656278/5242880 (31.59%)
+2019-01-31 11:31:18 1548934278.971832 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1659793 total-bytes-write=52 payload-bytes-read=1659764/5242880 (31.66%)
+2019-01-31 11:31:19 1548934279.048521 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1660291 total-bytes-write=52 payload-bytes-read=1660262/5242880 (31.67%)
+2019-01-31 11:31:19 1548934279.050417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1663777 total-bytes-write=52 payload-bytes-read=1663748/5242880 (31.73%)
+2019-01-31 11:31:19 1548934279.051400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1667761 total-bytes-write=52 payload-bytes-read=1667732/5242880 (31.81%)
+2019-01-31 11:31:19 1548934279.052341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1671695 total-bytes-write=52 payload-bytes-read=1671666/5242880 (31.88%)
+2019-01-31 11:31:19 1548934279.053075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1675679 total-bytes-write=52 payload-bytes-read=1675650/5242880 (31.96%)
+2019-01-31 11:31:19 1548934279.061435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1676177 total-bytes-write=52 payload-bytes-read=1676148/5242880 (31.97%)
+2019-01-31 11:31:19 1548934279.062539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1679663 total-bytes-write=52 payload-bytes-read=1679634/5242880 (32.04%)
+2019-01-31 11:31:19 1548934279.063087 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1683647 total-bytes-write=52 payload-bytes-read=1683618/5242880 (32.11%)
+2019-01-31 11:31:19 1548934279.064215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1687581 total-bytes-write=52 payload-bytes-read=1687552/5242880 (32.19%)
+2019-01-31 11:31:19 1548934279.065374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1692063 total-bytes-write=52 payload-bytes-read=1692034/5242880 (32.27%)
+2019-01-31 11:31:19 1548934279.067002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1699533 total-bytes-write=52 payload-bytes-read=1699504/5242880 (32.42%)
+2019-01-31 11:31:19 1548934279.072324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1703019 total-bytes-write=52 payload-bytes-read=1702990/5242880 (32.48%)
+2019-01-31 11:31:19 1548934279.090738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1703517 total-bytes-write=52 payload-bytes-read=1703488/5242880 (32.49%)
+2019-01-31 11:31:19 1548934279.091091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1705957 total-bytes-write=52 payload-bytes-read=1705928/5242880 (32.54%)
+2019-01-31 11:31:19 1548934279.125722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1709443 total-bytes-write=52 payload-bytes-read=1709414/5242880 (32.60%)
+2019-01-31 11:31:19 1548934279.208517 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1710439 total-bytes-write=52 payload-bytes-read=1710410/5242880 (32.62%)
+2019-01-31 11:31:19 1548934279.250701 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1712431 total-bytes-write=52 payload-bytes-read=1712402/5242880 (32.66%)
+2019-01-31 11:31:19 1548934279.258595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1715917 total-bytes-write=52 payload-bytes-read=1715888/5242880 (32.73%)
+2019-01-31 11:31:19 1548934279.259511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1719403 total-bytes-write=52 payload-bytes-read=1719374/5242880 (32.79%)
+2019-01-31 11:31:19 1548934279.300412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1736285 total-bytes-write=52 payload-bytes-read=1736256/5242880 (33.12%)
+2019-01-31 11:31:19 1548934279.344450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1764073 total-bytes-write=52 payload-bytes-read=1764044/5242880 (33.65%)
+2019-01-31 11:31:19 1548934279.388461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1802767 total-bytes-write=52 payload-bytes-read=1802738/5242880 (34.38%)
+2019-01-31 11:31:19 1548934279.432387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1807747 total-bytes-write=52 payload-bytes-read=1807718/5242880 (34.48%)
+2019-01-31 11:31:19 1548934279.463211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1811233 total-bytes-write=52 payload-bytes-read=1811204/5242880 (34.55%)
+2019-01-31 11:31:19 1548934279.494245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1811731 total-bytes-write=52 payload-bytes-read=1811702/5242880 (34.56%)
+2019-01-31 11:31:19 1548934279.494676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1815217 total-bytes-write=52 payload-bytes-read=1815188/5242880 (34.62%)
+2019-01-31 11:31:19 1548934279.495806 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1819151 total-bytes-write=52 payload-bytes-read=1819122/5242880 (34.70%)
+2019-01-31 11:31:19 1548934279.496504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1823135 total-bytes-write=52 payload-bytes-read=1823106/5242880 (34.77%)
+2019-01-31 11:31:19 1548934279.497662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1827617 total-bytes-write=52 payload-bytes-read=1827588/5242880 (34.86%)
+2019-01-31 11:31:19 1548934279.498049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1831103 total-bytes-write=52 payload-bytes-read=1831074/5242880 (34.92%)
+2019-01-31 11:31:19 1548934279.505518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1834589 total-bytes-write=52 payload-bytes-read=1834560/5242880 (34.99%)
+2019-01-31 11:31:19 1548934279.548455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1856401 total-bytes-write=52 payload-bytes-read=1856372/5242880 (35.41%)
+2019-01-31 11:31:19 1548934279.592439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1872785 total-bytes-write=52 payload-bytes-read=1872756/5242880 (35.72%)
+2019-01-31 11:31:19 1548934279.602657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1873781 total-bytes-write=52 payload-bytes-read=1873752/5242880 (35.74%)
+2019-01-31 11:31:19 1548934279.603542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1874777 total-bytes-write=52 payload-bytes-read=1874748/5242880 (35.76%)
+2019-01-31 11:31:19 1548934279.644400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1878263 total-bytes-write=52 payload-bytes-read=1878234/5242880 (35.82%)
+2019-01-31 11:31:19 1548934279.688386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1882247 total-bytes-write=52 payload-bytes-read=1882218/5242880 (35.90%)
+2019-01-31 11:31:19 1548934279.732495 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1889667 total-bytes-write=52 payload-bytes-read=1889638/5242880 (36.04%)
+2019-01-31 11:31:19 1548934279.776429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1902067 total-bytes-write=52 payload-bytes-read=1902038/5242880 (36.28%)
+2019-01-31 11:31:19 1548934279.834165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1903063 total-bytes-write=52 payload-bytes-read=1903034/5242880 (36.30%)
+2019-01-31 11:31:19 1548934279.834840 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1906549 total-bytes-write=52 payload-bytes-read=1906520/5242880 (36.36%)
+2019-01-31 11:31:19 1548934279.835952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1910533 total-bytes-write=52 payload-bytes-read=1910504/5242880 (36.44%)
+2019-01-31 11:31:19 1548934279.837898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1918451 total-bytes-write=52 payload-bytes-read=1918422/5242880 (36.59%)
+2019-01-31 11:31:19 1548934279.839503 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1922435 total-bytes-write=52 payload-bytes-read=1922406/5242880 (36.67%)
+2019-01-31 11:31:19 1548934279.841328 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1930403 total-bytes-write=52 payload-bytes-read=1930374/5242880 (36.82%)
+2019-01-31 11:31:19 1548934279.841474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1934337 total-bytes-write=52 payload-bytes-read=1934308/5242880 (36.89%)
+2019-01-31 11:31:19 1548934279.846824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1934835 total-bytes-write=52 payload-bytes-read=1934806/5242880 (36.90%)
+2019-01-31 11:31:19 1548934279.847992 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1938321 total-bytes-write=52 payload-bytes-read=1938292/5242880 (36.97%)
+2019-01-31 11:31:19 1548934279.848966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1942305 total-bytes-write=52 payload-bytes-read=1942276/5242880 (37.05%)
+2019-01-31 11:31:19 1548934279.850232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1946289 total-bytes-write=52 payload-bytes-read=1946260/5242880 (37.12%)
+2019-01-31 11:31:19 1548934279.892411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1955203 total-bytes-write=52 payload-bytes-read=1955174/5242880 (37.29%)
+2019-01-31 11:31:19 1548934279.937720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1955701 total-bytes-write=52 payload-bytes-read=1955672/5242880 (37.30%)
+2019-01-31 11:31:19 1548934279.939113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1959187 total-bytes-write=52 payload-bytes-read=1959158/5242880 (37.37%)
+2019-01-31 11:31:19 1548934279.939455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1963171 total-bytes-write=52 payload-bytes-read=1963142/5242880 (37.44%)
+2019-01-31 11:31:19 1548934279.950683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1964167 total-bytes-write=52 payload-bytes-read=1964138/5242880 (37.46%)
+2019-01-31 11:31:19 1548934279.951711 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1967603 total-bytes-write=52 payload-bytes-read=1967574/5242880 (37.53%)
+2019-01-31 11:31:19 1548934279.952014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1971587 total-bytes-write=52 payload-bytes-read=1971558/5242880 (37.60%)
+2019-01-31 11:31:19 1548934279.972630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1972085 total-bytes-write=52 payload-bytes-read=1972056/5242880 (37.61%)
+2019-01-31 11:31:19 1548934279.973179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1975571 total-bytes-write=52 payload-bytes-read=1975542/5242880 (37.68%)
+2019-01-31 11:31:19 1548934279.976820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1979555 total-bytes-write=52 payload-bytes-read=1979526/5242880 (37.76%)
+2019-01-31 11:31:19 1548934279.977269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1983489 total-bytes-write=52 payload-bytes-read=1983460/5242880 (37.83%)
+2019-01-31 11:31:19 1548934279.987888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1983987 total-bytes-write=52 payload-bytes-read=1983958/5242880 (37.84%)
+2019-01-31 11:31:19 1548934279.988629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1987473 total-bytes-write=52 payload-bytes-read=1987444/5242880 (37.91%)
+2019-01-31 11:31:19 1548934279.991778 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1995441 total-bytes-write=52 payload-bytes-read=1995412/5242880 (38.06%)
+2019-01-31 11:31:19 1548934279.992210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1999375 total-bytes-write=52 payload-bytes-read=1999346/5242880 (38.13%)
+2019-01-31 11:31:19 1548934279.992553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1999873 total-bytes-write=52 payload-bytes-read=1999844/5242880 (38.14%)
+2019-01-31 11:31:19 1548934279.995453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2002363 total-bytes-write=52 payload-bytes-read=2002334/5242880 (38.19%)
+2019-01-31 11:31:19 1548934279.997065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2005849 total-bytes-write=52 payload-bytes-read=2005820/5242880 (38.26%)
+2019-01-31 11:31:20 1548934280.044598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2007841 total-bytes-write=52 payload-bytes-read=2007812/5242880 (38.30%)
+2019-01-31 11:31:20 1548934280.055262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2011327 total-bytes-write=52 payload-bytes-read=2011298/5242880 (38.36%)
+2019-01-31 11:31:20 1548934280.057352 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2015261 total-bytes-write=52 payload-bytes-read=2015232/5242880 (38.44%)
+2019-01-31 11:31:20 1548934280.057705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2018249 total-bytes-write=52 payload-bytes-read=2018220/5242880 (38.49%)
+2019-01-31 11:31:20 1548934280.071562 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2025719 total-bytes-write=52 payload-bytes-read=2025690/5242880 (38.64%)
+2019-01-31 11:31:20 1548934280.112004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2027213 total-bytes-write=52 payload-bytes-read=2027184/5242880 (38.67%)
+2019-01-31 11:31:20 1548934280.112385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2029703 total-bytes-write=52 payload-bytes-read=2029674/5242880 (38.71%)
+2019-01-31 11:31:20 1548934280.149459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2033139 total-bytes-write=52 payload-bytes-read=2033110/5242880 (38.78%)
+2019-01-31 11:31:20 1548934280.161271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2034633 total-bytes-write=52 payload-bytes-read=2034604/5242880 (38.81%)
+2019-01-31 11:31:20 1548934280.219982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2038119 total-bytes-write=52 payload-bytes-read=2038090/5242880 (38.87%)
+2019-01-31 11:31:20 1548934280.242599 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2042103 total-bytes-write=52 payload-bytes-read=2042074/5242880 (38.95%)
+2019-01-31 11:31:20 1548934280.243487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2050021 total-bytes-write=52 payload-bytes-read=2049992/5242880 (39.10%)
+2019-01-31 11:31:20 1548934280.268401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2057491 total-bytes-write=52 payload-bytes-read=2057462/5242880 (39.24%)
+2019-01-31 11:31:20 1548934280.270535 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2058985 total-bytes-write=52 payload-bytes-read=2058956/5242880 (39.27%)
+2019-01-31 11:31:20 1548934280.270845 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2059981 total-bytes-write=52 payload-bytes-read=2059952/5242880 (39.29%)
+2019-01-31 11:31:20 1548934280.281223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2063467 total-bytes-write=52 payload-bytes-read=2063438/5242880 (39.36%)
+2019-01-31 11:31:20 1548934280.282184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2067401 total-bytes-write=52 payload-bytes-read=2067372/5242880 (39.43%)
+2019-01-31 11:31:20 1548934280.285251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2071385 total-bytes-write=52 payload-bytes-read=2071356/5242880 (39.51%)
+2019-01-31 11:31:20 1548934280.286345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2075369 total-bytes-write=52 payload-bytes-read=2075340/5242880 (39.58%)
+2019-01-31 11:31:20 1548934280.328379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2076863 total-bytes-write=52 payload-bytes-read=2076834/5242880 (39.61%)
+2019-01-31 11:31:20 1548934280.333065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2079353 total-bytes-write=52 payload-bytes-read=2079324/5242880 (39.66%)
+2019-01-31 11:31:20 1548934280.370877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2082789 total-bytes-write=52 payload-bytes-read=2082760/5242880 (39.73%)
+2019-01-31 11:31:20 1548934280.388216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2084781 total-bytes-write=52 payload-bytes-read=2084752/5242880 (39.76%)
+2019-01-31 11:31:20 1548934280.399581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2088829 total-bytes-write=52 payload-bytes-read=2088800/5242880 (39.84%)
+2019-01-31 11:31:20 1548934280.440404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2092251 total-bytes-write=52 payload-bytes-read=2092222/5242880 (39.91%)
+2019-01-31 11:31:20 1548934280.497501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2096299 total-bytes-write=52 payload-bytes-read=2096270/5242880 (39.98%)
+2019-01-31 11:31:20 1548934280.540401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2108137 total-bytes-write=52 payload-bytes-read=2108108/5242880 (40.21%)
+2019-01-31 11:31:20 1548934280.584397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2114063 total-bytes-write=52 payload-bytes-read=2114034/5242880 (40.32%)
+2019-01-31 11:31:20 1548934280.589678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2117549 total-bytes-write=52 payload-bytes-read=2117520/5242880 (40.39%)
+2019-01-31 11:31:20 1548934280.626384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2121533 total-bytes-write=52 payload-bytes-read=2121504/5242880 (40.46%)
+2019-01-31 11:31:20 1548934280.678117 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2125517 total-bytes-write=52 payload-bytes-read=2125488/5242880 (40.54%)
+2019-01-31 11:31:20 1548934280.720486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2143893 total-bytes-write=52 payload-bytes-read=2143864/5242880 (40.89%)
+2019-01-31 11:31:20 1548934280.764440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2155297 total-bytes-write=52 payload-bytes-read=2155268/5242880 (41.11%)
+2019-01-31 11:31:20 1548934280.765667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2160277 total-bytes-write=52 payload-bytes-read=2160248/5242880 (41.20%)
+2019-01-31 11:31:20 1548934280.792807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2162717 total-bytes-write=52 payload-bytes-read=2162688/5242880 (41.25%)
+2019-01-31 11:31:20 1548934280.793809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2166203 total-bytes-write=52 payload-bytes-read=2166174/5242880 (41.32%)
+2019-01-31 11:31:20 1548934280.794762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2169689 total-bytes-write=52 payload-bytes-read=2169660/5242880 (41.38%)
+2019-01-31 11:31:20 1548934280.836412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2180595 total-bytes-write=52 payload-bytes-read=2180566/5242880 (41.59%)
+2019-01-31 11:31:20 1548934280.880424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2200963 total-bytes-write=52 payload-bytes-read=2200934/5242880 (41.98%)
+2019-01-31 11:31:20 1548934280.924417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2218841 total-bytes-write=52 payload-bytes-read=2218812/5242880 (42.32%)
+2019-01-31 11:31:20 1548934280.933991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2222327 total-bytes-write=52 payload-bytes-read=2222298/5242880 (42.39%)
+2019-01-31 11:31:20 1548934280.934689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2225813 total-bytes-write=52 payload-bytes-read=2225784/5242880 (42.45%)
+2019-01-31 11:31:20 1548934280.976430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2251609 total-bytes-write=52 payload-bytes-read=2251580/5242880 (42.95%)
+2019-01-31 11:31:21 1548934281.020393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2258581 total-bytes-write=52 payload-bytes-read=2258552/5242880 (43.08%)
+2019-01-31 11:31:21 1548934281.021030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2265503 total-bytes-write=52 payload-bytes-read=2265474/5242880 (43.21%)
+2019-01-31 11:31:21 1548934281.022525 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2271977 total-bytes-write=52 payload-bytes-read=2271948/5242880 (43.33%)
+2019-01-31 11:31:21 1548934281.042935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2275961 total-bytes-write=52 payload-bytes-read=2275932/5242880 (43.41%)
+2019-01-31 11:31:21 1548934281.046190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2279397 total-bytes-write=52 payload-bytes-read=2279368/5242880 (43.48%)
+2019-01-31 11:31:21 1548934281.060986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2283381 total-bytes-write=52 payload-bytes-read=2283352/5242880 (43.55%)
+2019-01-31 11:31:21 1548934281.061092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:31:21 1548934281.062236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2292345 total-bytes-write=52 payload-bytes-read=2292316/5242880 (43.72%)
+2019-01-31 11:31:21 1548934281.088349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2295781 total-bytes-write=52 payload-bytes-read=2295752/5242880 (43.79%)
+2019-01-31 11:31:21 1548934281.102156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2299765 total-bytes-write=52 payload-bytes-read=2299736/5242880 (43.86%)
+2019-01-31 11:31:21 1548934281.102818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2301259 total-bytes-write=52 payload-bytes-read=2301230/5242880 (43.89%)
+2019-01-31 11:31:21 1548934281.103218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2302255 total-bytes-write=52 payload-bytes-read=2302226/5242880 (43.91%)
+2019-01-31 11:31:21 1548934281.104838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2305741 total-bytes-write=52 payload-bytes-read=2305712/5242880 (43.98%)
+2019-01-31 11:31:21 1548934281.105710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2306737 total-bytes-write=52 payload-bytes-read=2306708/5242880 (44.00%)
+2019-01-31 11:31:21 1548934281.107809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2310173 total-bytes-write=52 payload-bytes-read=2310144/5242880 (44.06%)
+2019-01-31 11:31:21 1548934281.108568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2314157 total-bytes-write=52 payload-bytes-read=2314128/5242880 (44.14%)
+2019-01-31 11:31:21 1548934281.124986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2315651 total-bytes-write=52 payload-bytes-read=2315622/5242880 (44.17%)
+2019-01-31 11:31:21 1548934281.132676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2319635 total-bytes-write=52 payload-bytes-read=2319606/5242880 (44.24%)
+2019-01-31 11:31:21 1548934281.149284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2323121 total-bytes-write=52 payload-bytes-read=2323092/5242880 (44.31%)
+2019-01-31 11:31:21 1548934281.149986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2325113 total-bytes-write=52 payload-bytes-read=2325084/5242880 (44.35%)
+2019-01-31 11:31:21 1548934281.151360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2332533 total-bytes-write=52 payload-bytes-read=2332504/5242880 (44.49%)
+2019-01-31 11:31:21 1548934281.151419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2333031 total-bytes-write=52 payload-bytes-read=2333002/5242880 (44.50%)
+2019-01-31 11:31:21 1548934281.170264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2334027 total-bytes-write=52 payload-bytes-read=2333998/5242880 (44.52%)
+2019-01-31 11:31:21 1548934281.172067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2337513 total-bytes-write=52 payload-bytes-read=2337484/5242880 (44.58%)
+2019-01-31 11:31:21 1548934281.185496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2340501 total-bytes-write=52 payload-bytes-read=2340472/5242880 (44.64%)
+2019-01-31 11:31:21 1548934281.215326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2343937 total-bytes-write=52 payload-bytes-read=2343908/5242880 (44.71%)
+2019-01-31 11:31:21 1548934281.224998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2344435 total-bytes-write=52 payload-bytes-read=2344406/5242880 (44.72%)
+2019-01-31 11:31:21 1548934281.226162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2347921 total-bytes-write=52 payload-bytes-read=2347892/5242880 (44.78%)
+2019-01-31 11:31:21 1548934281.226699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2351905 total-bytes-write=52 payload-bytes-read=2351876/5242880 (44.86%)
+2019-01-31 11:31:21 1548934281.268829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2353399 total-bytes-write=52 payload-bytes-read=2353370/5242880 (44.89%)
+2019-01-31 11:31:21 1548934281.314731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2354395 total-bytes-write=52 payload-bytes-read=2354366/5242880 (44.91%)
+2019-01-31 11:31:21 1548934281.316472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2357881 total-bytes-write=52 payload-bytes-read=2357852/5242880 (44.97%)
+2019-01-31 11:31:21 1548934281.371274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2361317 total-bytes-write=52 payload-bytes-read=2361288/5242880 (45.04%)
+2019-01-31 11:31:21 1548934281.371879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2365301 total-bytes-write=52 payload-bytes-read=2365272/5242880 (45.11%)
+2019-01-31 11:31:21 1548934281.372578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2369285 total-bytes-write=52 payload-bytes-read=2369256/5242880 (45.19%)
+2019-01-31 11:31:21 1548934281.416412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2377701 total-bytes-write=52 payload-bytes-read=2377672/5242880 (45.35%)
+2019-01-31 11:31:21 1548934281.469611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2381187 total-bytes-write=52 payload-bytes-read=2381158/5242880 (45.42%)
+2019-01-31 11:31:21 1548934281.476305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2382681 total-bytes-write=52 payload-bytes-read=2382652/5242880 (45.45%)
+2019-01-31 11:31:21 1548934281.542874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2385171 total-bytes-write=52 payload-bytes-read=2385142/5242880 (45.49%)
+2019-01-31 11:31:21 1548934281.554229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2388657 total-bytes-write=52 payload-bytes-read=2388628/5242880 (45.56%)
+2019-01-31 11:31:21 1548934281.555110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2392591 total-bytes-write=52 payload-bytes-read=2392562/5242880 (45.63%)
+2019-01-31 11:31:21 1548934281.571979 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2396575 total-bytes-write=52 payload-bytes-read=2396546/5242880 (45.71%)
+2019-01-31 11:31:21 1548934281.575230 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2397073 total-bytes-write=52 payload-bytes-read=2397044/5242880 (45.72%)
+2019-01-31 11:31:21 1548934281.576420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2400559 total-bytes-write=52 payload-bytes-read=2400530/5242880 (45.79%)
+2019-01-31 11:31:21 1548934281.586550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2401057 total-bytes-write=52 payload-bytes-read=2401028/5242880 (45.80%)
+2019-01-31 11:31:21 1548934281.587706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2404543 total-bytes-write=52 payload-bytes-read=2404514/5242880 (45.86%)
+2019-01-31 11:31:21 1548934281.589749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2408477 total-bytes-write=52 payload-bytes-read=2408448/5242880 (45.94%)
+2019-01-31 11:31:21 1548934281.591076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2412461 total-bytes-write=52 payload-bytes-read=2412432/5242880 (46.01%)
+2019-01-31 11:31:21 1548934281.594186 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2414453 total-bytes-write=52 payload-bytes-read=2414424/5242880 (46.05%)
+2019-01-31 11:31:21 1548934281.600297 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2421923 total-bytes-write=52 payload-bytes-read=2421894/5242880 (46.19%)
+2019-01-31 11:31:21 1548934281.600382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2423915 total-bytes-write=52 payload-bytes-read=2423886/5242880 (46.23%)
+2019-01-31 11:31:21 1548934281.653667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2427351 total-bytes-write=52 payload-bytes-read=2427322/5242880 (46.30%)
+2019-01-31 11:31:21 1548934281.654949 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2431335 total-bytes-write=52 payload-bytes-read=2431306/5242880 (46.37%)
+2019-01-31 11:31:21 1548934281.656337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2435319 total-bytes-write=52 payload-bytes-read=2435290/5242880 (46.45%)
+2019-01-31 11:31:21 1548934281.700445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2466095 total-bytes-write=52 payload-bytes-read=2466066/5242880 (47.04%)
+2019-01-31 11:31:21 1548934281.755223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2470079 total-bytes-write=52 payload-bytes-read=2470050/5242880 (47.11%)
+2019-01-31 11:31:21 1548934281.756656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2474013 total-bytes-write=52 payload-bytes-read=2473984/5242880 (47.19%)
+2019-01-31 11:31:21 1548934281.757987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2477001 total-bytes-write=52 payload-bytes-read=2476972/5242880 (47.24%)
+2019-01-31 11:31:21 1548934281.758841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2480487 total-bytes-write=52 payload-bytes-read=2480458/5242880 (47.31%)
+2019-01-31 11:31:21 1548934281.761615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2481981 total-bytes-write=52 payload-bytes-read=2481952/5242880 (47.34%)
+2019-01-31 11:31:21 1548934281.762711 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:31:21 1548934281.796105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2489451 total-bytes-write=52 payload-bytes-read=2489422/5242880 (47.48%)
+2019-01-31 11:31:21 1548934281.799142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2494381 total-bytes-write=52 payload-bytes-read=2494352/5242880 (47.58%)
+2019-01-31 11:31:21 1548934281.801748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2502349 total-bytes-write=52 payload-bytes-read=2502320/5242880 (47.73%)
+2019-01-31 11:31:21 1548934281.801847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2506781 total-bytes-write=52 payload-bytes-read=2506752/5242880 (47.81%)
+2019-01-31 11:31:21 1548934281.801990 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2510267 total-bytes-write=52 payload-bytes-read=2510238/5242880 (47.88%)
+2019-01-31 11:31:21 1548934281.840781 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2518235 total-bytes-write=52 payload-bytes-read=2518206/5242880 (48.03%)
+2019-01-31 11:31:21 1548934281.840861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2518733 total-bytes-write=52 payload-bytes-read=2518704/5242880 (48.04%)
+2019-01-31 11:31:21 1548934281.842729 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2525655 total-bytes-write=52 payload-bytes-read=2525626/5242880 (48.17%)
+2019-01-31 11:31:21 1548934281.845804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:31:21 1548934281.881580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2531631 total-bytes-write=52 payload-bytes-read=2531602/5242880 (48.29%)
+2019-01-31 11:31:21 1548934281.884715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2535117 total-bytes-write=52 payload-bytes-read=2535088/5242880 (48.35%)
+2019-01-31 11:31:21 1548934281.890380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2543035 total-bytes-write=52 payload-bytes-read=2543006/5242880 (48.50%)
+2019-01-31 11:31:21 1548934281.890525 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2548513 total-bytes-write=52 payload-bytes-read=2548484/5242880 (48.61%)
+2019-01-31 11:31:21 1548934281.890691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2553991 total-bytes-write=52 payload-bytes-read=2553962/5242880 (48.71%)
+2019-01-31 11:31:21 1548934281.890745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2554987 total-bytes-write=52 payload-bytes-read=2554958/5242880 (48.73%)
+2019-01-31 11:31:21 1548934281.918260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2556431 total-bytes-write=52 payload-bytes-read=2556402/5242880 (48.76%)
+2019-01-31 11:31:21 1548934281.951810 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2559917 total-bytes-write=52 payload-bytes-read=2559888/5242880 (48.83%)
+2019-01-31 11:31:21 1548934281.961235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2563403 total-bytes-write=52 payload-bytes-read=2563374/5242880 (48.89%)
+2019-01-31 11:31:22 1548934282.004400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2574807 total-bytes-write=52 payload-bytes-read=2574778/5242880 (49.11%)
+2019-01-31 11:31:22 1548934282.048404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2578293 total-bytes-write=52 payload-bytes-read=2578264/5242880 (49.18%)
+2019-01-31 11:31:22 1548934282.049877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2579289 total-bytes-write=52 payload-bytes-read=2579260/5242880 (49.20%)
+2019-01-31 11:31:22 1548934282.051089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2582775 total-bytes-write=52 payload-bytes-read=2582746/5242880 (49.26%)
+2019-01-31 11:31:22 1548934282.052544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2586759 total-bytes-write=52 payload-bytes-read=2586730/5242880 (49.34%)
+2019-01-31 11:31:22 1548934282.053887 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2590693 total-bytes-write=52 payload-bytes-read=2590664/5242880 (49.41%)
+2019-01-31 11:31:22 1548934282.055402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2594677 total-bytes-write=52 payload-bytes-read=2594648/5242880 (49.49%)
+2019-01-31 11:31:22 1548934282.086237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2596171 total-bytes-write=52 payload-bytes-read=2596142/5242880 (49.52%)
+2019-01-31 11:31:22 1548934282.087334 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2599657 total-bytes-write=52 payload-bytes-read=2599628/5242880 (49.58%)
+2019-01-31 11:31:22 1548934282.172386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2603641 total-bytes-write=52 payload-bytes-read=2603612/5242880 (49.66%)
+2019-01-31 11:31:22 1548934282.225403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2606081 total-bytes-write=52 payload-bytes-read=2606052/5242880 (49.71%)
+2019-01-31 11:31:22 1548934282.243975 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2609567 total-bytes-write=52 payload-bytes-read=2609538/5242880 (49.77%)
+2019-01-31 11:31:22 1548934282.244408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2613053 total-bytes-write=52 payload-bytes-read=2613024/5242880 (49.84%)
+2019-01-31 11:31:22 1548934282.288395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2621967 total-bytes-write=52 payload-bytes-read=2621938/5242880 (50.01%)
+2019-01-31 11:31:22 1548934282.332462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2649307 total-bytes-write=52 payload-bytes-read=2649278/5242880 (50.53%)
+2019-01-31 11:31:22 1548934282.376413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2665691 total-bytes-write=52 payload-bytes-read=2665662/5242880 (50.84%)
+2019-01-31 11:31:22 1548934282.383384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2667185 total-bytes-write=52 payload-bytes-read=2667156/5242880 (50.87%)
+2019-01-31 11:31:22 1548934282.386433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2670621 total-bytes-write=52 payload-bytes-read=2670592/5242880 (50.94%)
+2019-01-31 11:31:22 1548934282.391188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2674605 total-bytes-write=52 payload-bytes-read=2674576/5242880 (51.01%)
+2019-01-31 11:31:22 1548934282.392135 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2678589 total-bytes-write=52 payload-bytes-read=2678560/5242880 (51.09%)
+2019-01-31 11:31:22 1548934282.432457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2694973 total-bytes-write=52 payload-bytes-read=2694944/5242880 (51.40%)
+2019-01-31 11:31:22 1548934282.476462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2723757 total-bytes-write=52 payload-bytes-read=2723728/5242880 (51.95%)
+2019-01-31 11:31:22 1548934282.520426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2746615 total-bytes-write=52 payload-bytes-read=2746586/5242880 (52.39%)
+2019-01-31 11:31:22 1548934282.532691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2750101 total-bytes-write=52 payload-bytes-read=2750072/5242880 (52.45%)
+2019-01-31 11:31:22 1548934282.540596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2753537 total-bytes-write=52 payload-bytes-read=2753508/5242880 (52.52%)
+2019-01-31 11:31:22 1548934282.544497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2761007 total-bytes-write=52 payload-bytes-read=2760978/5242880 (52.66%)
+2019-01-31 11:31:22 1548934282.544573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2762999 total-bytes-write=52 payload-bytes-read=2762970/5242880 (52.70%)
+2019-01-31 11:31:22 1548934282.552512 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2766485 total-bytes-write=52 payload-bytes-read=2766456/5242880 (52.77%)
+2019-01-31 11:31:22 1548934282.556649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2770419 total-bytes-write=52 payload-bytes-read=2770390/5242880 (52.84%)
+2019-01-31 11:31:22 1548934282.559374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2771913 total-bytes-write=52 payload-bytes-read=2771884/5242880 (52.87%)
+2019-01-31 11:31:22 1548934282.560266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2775399 total-bytes-write=52 payload-bytes-read=2775370/5242880 (52.94%)
+2019-01-31 11:31:22 1548934282.560891 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2777391 total-bytes-write=52 payload-bytes-read=2777362/5242880 (52.97%)
+2019-01-31 11:31:22 1548934282.649286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2777889 total-bytes-write=52 payload-bytes-read=2777860/5242880 (52.98%)
+2019-01-31 11:31:22 1548934282.674858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2779881 total-bytes-write=52 payload-bytes-read=2779852/5242880 (53.02%)
+2019-01-31 11:31:22 1548934282.684420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2783367 total-bytes-write=52 payload-bytes-read=2783338/5242880 (53.09%)
+2019-01-31 11:31:22 1548934282.685370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2790289 total-bytes-write=52 payload-bytes-read=2790260/5242880 (53.22%)
+2019-01-31 11:31:22 1548934282.701629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2793775 total-bytes-write=52 payload-bytes-read=2793746/5242880 (53.29%)
+2019-01-31 11:31:22 1548934282.705474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2801693 total-bytes-write=52 payload-bytes-read=2801664/5242880 (53.44%)
+2019-01-31 11:31:22 1548934282.710775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2806175 total-bytes-write=52 payload-bytes-read=2806146/5242880 (53.52%)
+2019-01-31 11:31:22 1548934282.714069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2811653 total-bytes-write=52 payload-bytes-read=2811624/5242880 (53.63%)
+2019-01-31 11:31:22 1548934282.714148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2815139 total-bytes-write=52 payload-bytes-read=2815110/5242880 (53.69%)
+2019-01-31 11:31:22 1548934282.737020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2819073 total-bytes-write=52 payload-bytes-read=2819044/5242880 (53.77%)
+2019-01-31 11:31:22 1548934282.737122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2823057 total-bytes-write=52 payload-bytes-read=2823028/5242880 (53.84%)
+2019-01-31 11:31:22 1548934282.822523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2824053 total-bytes-write=52 payload-bytes-read=2824024/5242880 (53.86%)
+2019-01-31 11:31:22 1548934282.832380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2825547 total-bytes-write=52 payload-bytes-read=2825518/5242880 (53.89%)
+2019-01-31 11:31:22 1548934282.854098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2829033 total-bytes-write=52 payload-bytes-read=2829004/5242880 (53.96%)
+2019-01-31 11:31:22 1548934282.854926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2833017 total-bytes-write=52 payload-bytes-read=2832988/5242880 (54.03%)
+2019-01-31 11:31:22 1548934282.856226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2840935 total-bytes-write=52 payload-bytes-read=2840906/5242880 (54.19%)
+2019-01-31 11:31:22 1548934282.865758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2844421 total-bytes-write=52 payload-bytes-read=2844392/5242880 (54.25%)
+2019-01-31 11:31:22 1548934282.888191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2845417 total-bytes-write=52 payload-bytes-read=2845388/5242880 (54.27%)
+2019-01-31 11:31:22 1548934282.888620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2848903 total-bytes-write=52 payload-bytes-read=2848874/5242880 (54.34%)
+2019-01-31 11:31:22 1548934282.937821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2852339 total-bytes-write=52 payload-bytes-read=2852310/5242880 (54.40%)
+2019-01-31 11:31:22 1548934282.945908 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2858813 total-bytes-write=52 payload-bytes-read=2858784/5242880 (54.53%)
+2019-01-31 11:31:22 1548934282.955977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2862299 total-bytes-write=52 payload-bytes-read=2862270/5242880 (54.59%)
+2019-01-31 11:31:22 1548934282.956293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2865785 total-bytes-write=52 payload-bytes-read=2865756/5242880 (54.66%)
+2019-01-31 11:31:22 1548934282.996383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2869221 total-bytes-write=52 payload-bytes-read=2869192/5242880 (54.73%)
+2019-01-31 11:31:23 1548934283.010435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2872707 total-bytes-write=52 payload-bytes-read=2872678/5242880 (54.79%)
+2019-01-31 11:31:23 1548934283.053715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2873205 total-bytes-write=52 payload-bytes-read=2873176/5242880 (54.80%)
+2019-01-31 11:31:23 1548934283.055232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2877253 total-bytes-write=52 payload-bytes-read=2877224/5242880 (54.88%)
+2019-01-31 11:31:23 1548934283.096479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2922357 total-bytes-write=52 payload-bytes-read=2922328/5242880 (55.74%)
+2019-01-31 11:31:23 1548934283.140389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2930823 total-bytes-write=52 payload-bytes-read=2930794/5242880 (55.90%)
+2019-01-31 11:31:23 1548934283.145200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2938243 total-bytes-write=52 payload-bytes-read=2938214/5242880 (56.04%)
+2019-01-31 11:31:23 1548934283.145340 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2945713 total-bytes-write=52 payload-bytes-read=2945684/5242880 (56.18%)
+2019-01-31 11:31:23 1548934283.145417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2947207 total-bytes-write=52 payload-bytes-read=2947178/5242880 (56.21%)
+2019-01-31 11:31:23 1548934283.198113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2951141 total-bytes-write=52 payload-bytes-read=2951112/5242880 (56.29%)
+2019-01-31 11:31:23 1548934283.198462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2953631 total-bytes-write=52 payload-bytes-read=2953602/5242880 (56.34%)
+2019-01-31 11:31:23 1548934283.428764 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2956619 total-bytes-write=52 payload-bytes-read=2956590/5242880 (56.39%)
+2019-01-31 11:31:23 1548934283.453713 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2960105 total-bytes-write=52 payload-bytes-read=2960076/5242880 (56.46%)
+2019-01-31 11:31:23 1548934283.465083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2967525 total-bytes-write=52 payload-bytes-read=2967496/5242880 (56.60%)
+2019-01-31 11:31:23 1548934283.465169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2971509 total-bytes-write=52 payload-bytes-read=2971480/5242880 (56.68%)
+2019-01-31 11:31:23 1548934283.478699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2975493 total-bytes-write=52 payload-bytes-read=2975464/5242880 (56.75%)
+2019-01-31 11:31:23 1548934283.478788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2979477 total-bytes-write=52 payload-bytes-read=2979448/5242880 (56.83%)
+2019-01-31 11:31:23 1548934283.480543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2987395 total-bytes-write=52 payload-bytes-read=2987366/5242880 (56.98%)
+2019-01-31 11:31:23 1548934283.480609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2987893 total-bytes-write=52 payload-bytes-read=2987864/5242880 (56.99%)
+2019-01-31 11:31:23 1548934283.481085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2990881 total-bytes-write=52 payload-bytes-read=2990852/5242880 (57.05%)
+2019-01-31 11:31:23 1548934283.501952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2996359 total-bytes-write=52 payload-bytes-read=2996330/5242880 (57.15%)
+2019-01-31 11:31:23 1548934283.503022 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2999795 total-bytes-write=52 payload-bytes-read=2999766/5242880 (57.22%)
+2019-01-31 11:31:23 1548934283.566143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3001289 total-bytes-write=52 payload-bytes-read=3001260/5242880 (57.24%)
+2019-01-31 11:31:23 1548934283.567303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3003281 total-bytes-write=52 payload-bytes-read=3003252/5242880 (57.28%)
+2019-01-31 11:31:23 1548934283.578783 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3006767 total-bytes-write=52 payload-bytes-read=3006738/5242880 (57.35%)
+2019-01-31 11:31:23 1548934283.603303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3010815 total-bytes-write=52 payload-bytes-read=3010786/5242880 (57.43%)
+2019-01-31 11:31:23 1548934283.644466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3047453 total-bytes-write=52 payload-bytes-read=3047424/5242880 (58.13%)
+2019-01-31 11:31:23 1548934283.688404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3052931 total-bytes-write=52 payload-bytes-read=3052902/5242880 (58.23%)
+2019-01-31 11:31:23 1548934283.722130 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:31:23 1548934283.723239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3060401 total-bytes-write=52 payload-bytes-read=3060372/5242880 (58.37%)
+2019-01-31 11:31:23 1548934283.723773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3063837 total-bytes-write=52 payload-bytes-read=3063808/5242880 (58.44%)
+2019-01-31 11:31:23 1548934283.733995 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3067323 total-bytes-write=52 payload-bytes-read=3067294/5242880 (58.50%)
+2019-01-31 11:31:23 1548934283.734627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3071307 total-bytes-write=52 payload-bytes-read=3071278/5242880 (58.58%)
+2019-01-31 11:31:23 1548934283.744059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3071805 total-bytes-write=52 payload-bytes-read=3071776/5242880 (58.59%)
+2019-01-31 11:31:23 1548934283.744587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3075291 total-bytes-write=52 payload-bytes-read=3075262/5242880 (58.66%)
+2019-01-31 11:31:23 1548934283.746811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3083209 total-bytes-write=52 payload-bytes-read=3083180/5242880 (58.81%)
+2019-01-31 11:31:23 1548934283.757470 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3087193 total-bytes-write=52 payload-bytes-read=3087164/5242880 (58.88%)
+2019-01-31 11:31:23 1548934283.757674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3091177 total-bytes-write=52 payload-bytes-read=3091148/5242880 (58.96%)
+2019-01-31 11:31:23 1548934283.800430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3108557 total-bytes-write=52 payload-bytes-read=3108528/5242880 (59.29%)
+2019-01-31 11:31:23 1548934283.844437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3132361 total-bytes-write=52 payload-bytes-read=3132332/5242880 (59.74%)
+2019-01-31 11:31:23 1548934283.888431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3143815 total-bytes-write=52 payload-bytes-read=3143786/5242880 (59.96%)
+2019-01-31 11:31:23 1548934283.892800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3144811 total-bytes-write=52 payload-bytes-read=3144782/5242880 (59.98%)
+2019-01-31 11:31:23 1548934283.893520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3148247 total-bytes-write=52 payload-bytes-read=3148218/5242880 (60.05%)
+2019-01-31 11:31:23 1548934283.925625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3151733 total-bytes-write=52 payload-bytes-read=3151704/5242880 (60.11%)
+2019-01-31 11:31:23 1548934283.927411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3159701 total-bytes-write=52 payload-bytes-read=3159672/5242880 (60.27%)
+2019-01-31 11:31:23 1548934283.928477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3164133 total-bytes-write=52 payload-bytes-read=3164104/5242880 (60.35%)
+2019-01-31 11:31:23 1548934283.928575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3167121 total-bytes-write=52 payload-bytes-read=3167092/5242880 (60.41%)
+2019-01-31 11:31:23 1548934283.936771 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3174591 total-bytes-write=52 payload-bytes-read=3174562/5242880 (60.55%)
+2019-01-31 11:31:23 1548934283.948040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3178077 total-bytes-write=52 payload-bytes-read=3178048/5242880 (60.62%)
+2019-01-31 11:31:23 1548934283.950433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3185995 total-bytes-write=52 payload-bytes-read=3185966/5242880 (60.77%)
+2019-01-31 11:31:23 1548934283.950531 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3189979 total-bytes-write=52 payload-bytes-read=3189950/5242880 (60.84%)
+2019-01-31 11:31:23 1548934283.951485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3191971 total-bytes-write=52 payload-bytes-read=3191942/5242880 (60.88%)
+2019-01-31 11:31:23 1548934283.990946 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3195407 total-bytes-write=52 payload-bytes-read=3195378/5242880 (60.95%)
+2019-01-31 11:31:23 1548934283.992379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3197399 total-bytes-write=52 payload-bytes-read=3197370/5242880 (60.98%)
+2019-01-31 11:31:24 1548934284.084426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3200885 total-bytes-write=52 payload-bytes-read=3200856/5242880 (61.05%)
+2019-01-31 11:31:24 1548934284.116678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3201881 total-bytes-write=52 payload-bytes-read=3201852/5242880 (61.07%)
+2019-01-31 11:31:24 1548934284.117969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3205367 total-bytes-write=52 payload-bytes-read=3205338/5242880 (61.14%)
+2019-01-31 11:31:24 1548934284.139681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3208853 total-bytes-write=52 payload-bytes-read=3208824/5242880 (61.20%)
+2019-01-31 11:31:24 1548934284.180388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3212787 total-bytes-write=52 payload-bytes-read=3212758/5242880 (61.28%)
+2019-01-31 11:31:24 1548934284.224391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3216273 total-bytes-write=52 payload-bytes-read=3216244/5242880 (61.34%)
+2019-01-31 11:31:24 1548934284.311025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3216771 total-bytes-write=52 payload-bytes-read=3216742/5242880 (61.35%)
+2019-01-31 11:31:24 1548934284.362904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3220257 total-bytes-write=52 payload-bytes-read=3220228/5242880 (61.42%)
+2019-01-31 11:31:24 1548934284.398051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3222747 total-bytes-write=52 payload-bytes-read=3222718/5242880 (61.47%)
+2019-01-31 11:31:24 1548934284.407923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3226233 total-bytes-write=52 payload-bytes-read=3226204/5242880 (61.53%)
+2019-01-31 11:31:24 1548934284.408890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3230167 total-bytes-write=52 payload-bytes-read=3230138/5242880 (61.61%)
+2019-01-31 11:31:24 1548934284.452421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3241621 total-bytes-write=52 payload-bytes-read=3241592/5242880 (61.83%)
+2019-01-31 11:31:24 1548934284.496409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3248045 total-bytes-write=52 payload-bytes-read=3248016/5242880 (61.95%)
+2019-01-31 11:31:24 1548934284.544481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3251531 total-bytes-write=52 payload-bytes-read=3251502/5242880 (62.02%)
+2019-01-31 11:31:24 1548934284.547109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3255515 total-bytes-write=52 payload-bytes-read=3255486/5242880 (62.09%)
+2019-01-31 11:31:24 1548934284.548507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3259499 total-bytes-write=52 payload-bytes-read=3259470/5242880 (62.17%)
+2019-01-31 11:31:24 1548934284.592481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3309149 total-bytes-write=52 payload-bytes-read=3309120/5242880 (63.12%)
+2019-01-31 11:31:24 1548934284.636385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3313083 total-bytes-write=52 payload-bytes-read=3313054/5242880 (63.19%)
+2019-01-31 11:31:24 1548934284.637418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3321051 total-bytes-write=52 payload-bytes-read=3321022/5242880 (63.34%)
+2019-01-31 11:31:24 1548934284.642156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3325035 total-bytes-write=52 payload-bytes-read=3325006/5242880 (63.42%)
+2019-01-31 11:31:24 1548934284.642445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3325533 total-bytes-write=52 payload-bytes-read=3325504/5242880 (63.43%)
+2019-01-31 11:31:24 1548934284.644567 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3328969 total-bytes-write=52 payload-bytes-read=3328940/5242880 (63.49%)
+2019-01-31 11:31:24 1548934284.647070 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3336937 total-bytes-write=52 payload-bytes-read=3336908/5242880 (63.65%)
+2019-01-31 11:31:24 1548934284.647168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3341917 total-bytes-write=52 payload-bytes-read=3341888/5242880 (63.74%)
+2019-01-31 11:31:24 1548934284.660450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3345353 total-bytes-write=52 payload-bytes-read=3345324/5242880 (63.81%)
+2019-01-31 11:31:24 1548934284.661430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3351329 total-bytes-write=52 payload-bytes-read=3351300/5242880 (63.92%)
+2019-01-31 11:31:24 1548934284.668804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3355811 total-bytes-write=52 payload-bytes-read=3355782/5242880 (64.01%)
+2019-01-31 11:31:24 1548934284.673632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3363231 total-bytes-write=52 payload-bytes-read=3363202/5242880 (64.15%)
+2019-01-31 11:31:24 1548934284.677706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3367215 total-bytes-write=52 payload-bytes-read=3367186/5242880 (64.22%)
+2019-01-31 11:31:24 1548934284.711373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3371697 total-bytes-write=52 payload-bytes-read=3371668/5242880 (64.31%)
+2019-01-31 11:31:24 1548934284.711605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3372195 total-bytes-write=52 payload-bytes-read=3372166/5242880 (64.32%)
+2019-01-31 11:31:24 1548934284.712904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3375631 total-bytes-write=52 payload-bytes-read=3375602/5242880 (64.38%)
+2019-01-31 11:31:24 1548934284.722523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3379615 total-bytes-write=52 payload-bytes-read=3379586/5242880 (64.46%)
+2019-01-31 11:31:24 1548934284.724135 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3383599 total-bytes-write=52 payload-bytes-read=3383570/5242880 (64.54%)
+2019-01-31 11:31:24 1548934284.764440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3398987 total-bytes-write=52 payload-bytes-read=3398958/5242880 (64.83%)
+2019-01-31 11:31:24 1548934284.808386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3406457 total-bytes-write=52 payload-bytes-read=3406428/5242880 (64.97%)
+2019-01-31 11:31:24 1548934284.824156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3410889 total-bytes-write=52 payload-bytes-read=3410860/5242880 (65.06%)
+2019-01-31 11:31:24 1548934284.824324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3414873 total-bytes-write=52 payload-bytes-read=3414844/5242880 (65.13%)
+2019-01-31 11:31:24 1548934284.835441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3418359 total-bytes-write=52 payload-bytes-read=3418330/5242880 (65.20%)
+2019-01-31 11:31:24 1548934284.839218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3426277 total-bytes-write=52 payload-bytes-read=3426248/5242880 (65.35%)
+2019-01-31 11:31:24 1548934284.839363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3428767 total-bytes-write=52 payload-bytes-read=3428738/5242880 (65.40%)
+2019-01-31 11:31:24 1548934284.849217 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3435739 total-bytes-write=52 payload-bytes-read=3435710/5242880 (65.53%)
+2019-01-31 11:31:24 1548934284.861627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3442661 total-bytes-write=52 payload-bytes-read=3442632/5242880 (65.66%)
+2019-01-31 11:31:24 1548934284.871644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3446147 total-bytes-write=52 payload-bytes-read=3446118/5242880 (65.73%)
+2019-01-31 11:31:24 1548934284.936470 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3447143 total-bytes-write=52 payload-bytes-read=3447114/5242880 (65.75%)
+2019-01-31 11:31:24 1548934284.936530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3448139 total-bytes-write=52 payload-bytes-read=3448110/5242880 (65.77%)
+2019-01-31 11:31:24 1548934284.980374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3450131 total-bytes-write=52 payload-bytes-read=3450102/5242880 (65.81%)
+2019-01-31 11:31:25 1548934285.054731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3454179 total-bytes-write=52 payload-bytes-read=3454150/5242880 (65.88%)
+2019-01-31 11:31:25 1548934285.096403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3464523 total-bytes-write=52 payload-bytes-read=3464494/5242880 (66.08%)
+2019-01-31 11:31:25 1548934285.140397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3471993 total-bytes-write=52 payload-bytes-read=3471964/5242880 (66.22%)
+2019-01-31 11:31:25 1548934285.145054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3474931 total-bytes-write=52 payload-bytes-read=3474902/5242880 (66.28%)
+2019-01-31 11:31:25 1548934285.319274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3478417 total-bytes-write=52 payload-bytes-read=3478388/5242880 (66.34%)
+2019-01-31 11:31:25 1548934285.356568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:31:25 1548934285.400497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3529561 total-bytes-write=52 payload-bytes-read=3529532/5242880 (67.32%)
+2019-01-31 11:31:25 1548934285.444402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3545447 total-bytes-write=52 payload-bytes-read=3545418/5242880 (67.62%)
+2019-01-31 11:31:25 1548934285.447120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3549431 total-bytes-write=52 payload-bytes-read=3549402/5242880 (67.70%)
+2019-01-31 11:31:25 1548934285.448423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3550427 total-bytes-write=52 payload-bytes-read=3550398/5242880 (67.72%)
+2019-01-31 11:31:25 1548934285.455428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3553913 total-bytes-write=52 payload-bytes-read=3553884/5242880 (67.78%)
+2019-01-31 11:31:25 1548934285.468665 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3557847 total-bytes-write=52 payload-bytes-read=3557818/5242880 (67.86%)
+2019-01-31 11:31:25 1548934285.470278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3562329 total-bytes-write=52 payload-bytes-read=3562300/5242880 (67.95%)
+2019-01-31 11:31:25 1548934285.470900 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3564321 total-bytes-write=52 payload-bytes-read=3564292/5242880 (67.98%)
+2019-01-31 11:31:25 1548934285.476368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3567807 total-bytes-write=52 payload-bytes-read=3567778/5242880 (68.05%)
+2019-01-31 11:31:25 1548934285.478847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3571293 total-bytes-write=52 payload-bytes-read=3571264/5242880 (68.12%)
+2019-01-31 11:31:25 1548934285.520413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3592607 total-bytes-write=52 payload-bytes-read=3592578/5242880 (68.52%)
+2019-01-31 11:31:25 1548934285.564437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3620445 total-bytes-write=52 payload-bytes-read=3620416/5242880 (69.05%)
+2019-01-31 11:31:25 1548934285.648903 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3625375 total-bytes-write=52 payload-bytes-read=3625346/5242880 (69.15%)
+2019-01-31 11:31:25 1548934285.649044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3630355 total-bytes-write=52 payload-bytes-read=3630326/5242880 (69.24%)
+2019-01-31 11:31:25 1548934285.649362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3637277 total-bytes-write=52 payload-bytes-read=3637248/5242880 (69.38%)
+2019-01-31 11:31:25 1548934285.649557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3642755 total-bytes-write=52 payload-bytes-read=3642726/5242880 (69.48%)
+2019-01-31 11:31:25 1548934285.649758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3647735 total-bytes-write=52 payload-bytes-read=3647706/5242880 (69.57%)
+2019-01-31 11:31:25 1548934285.649990 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3652217 total-bytes-write=52 payload-bytes-read=3652188/5242880 (69.66%)
+2019-01-31 11:31:25 1548934285.650261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3659139 total-bytes-write=52 payload-bytes-read=3659110/5242880 (69.79%)
+2019-01-31 11:31:25 1548934285.650615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3667107 total-bytes-write=52 payload-bytes-read=3667078/5242880 (69.94%)
+2019-01-31 11:31:25 1548934285.650726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3671041 total-bytes-write=52 payload-bytes-read=3671012/5242880 (70.02%)
+2019-01-31 11:31:25 1548934285.693360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3672037 total-bytes-write=52 payload-bytes-read=3672008/5242880 (70.04%)
+2019-01-31 11:31:25 1548934285.694554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3675523 total-bytes-write=52 payload-bytes-read=3675494/5242880 (70.10%)
+2019-01-31 11:31:25 1548934285.707410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3679009 total-bytes-write=52 payload-bytes-read=3678980/5242880 (70.17%)
+2019-01-31 11:31:25 1548934285.748429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3687923 total-bytes-write=52 payload-bytes-read=3687894/5242880 (70.34%)
+2019-01-31 11:31:25 1548934285.792428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3695393 total-bytes-write=52 payload-bytes-read=3695364/5242880 (70.48%)
+2019-01-31 11:31:25 1548934285.831168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3697385 total-bytes-write=52 payload-bytes-read=3697356/5242880 (70.52%)
+2019-01-31 11:31:25 1548934285.907287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3698381 total-bytes-write=52 payload-bytes-read=3698352/5242880 (70.54%)
+2019-01-31 11:31:25 1548934285.908432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3701867 total-bytes-write=52 payload-bytes-read=3701838/5242880 (70.61%)
+2019-01-31 11:31:25 1548934285.909866 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3705801 total-bytes-write=52 payload-bytes-read=3705772/5242880 (70.68%)
+2019-01-31 11:31:25 1548934285.911396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3709785 total-bytes-write=52 payload-bytes-read=3709756/5242880 (70.76%)
+2019-01-31 11:31:25 1548934285.912686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3713769 total-bytes-write=52 payload-bytes-read=3713740/5242880 (70.83%)
+2019-01-31 11:31:25 1548934285.956381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3720193 total-bytes-write=52 payload-bytes-read=3720164/5242880 (70.96%)
+2019-01-31 11:31:26 1548934286.035703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3721687 total-bytes-write=52 payload-bytes-read=3721658/5242880 (70.98%)
+2019-01-31 11:31:26 1548934286.053215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3723181 total-bytes-write=52 payload-bytes-read=3723152/5242880 (71.01%)
+2019-01-31 11:31:26 1548934286.096447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3750521 total-bytes-write=52 payload-bytes-read=3750492/5242880 (71.53%)
+2019-01-31 11:31:26 1548934286.140379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3753957 total-bytes-write=52 payload-bytes-read=3753928/5242880 (71.60%)
+2019-01-31 11:31:26 1548934286.145612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3757941 total-bytes-write=52 payload-bytes-read=3757912/5242880 (71.68%)
+2019-01-31 11:31:26 1548934286.147425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3761925 total-bytes-write=52 payload-bytes-read=3761896/5242880 (71.75%)
+2019-01-31 11:31:26 1548934286.188408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3772831 total-bytes-write=52 payload-bytes-read=3772802/5242880 (71.96%)
+2019-01-31 11:31:26 1548934286.250801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3776317 total-bytes-write=52 payload-bytes-read=3776288/5242880 (72.03%)
+2019-01-31 11:31:26 1548934286.467802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3779803 total-bytes-write=52 payload-bytes-read=3779774/5242880 (72.09%)
+2019-01-31 11:31:26 1548934286.510387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3783289 total-bytes-write=52 payload-bytes-read=3783260/5242880 (72.16%)
+2019-01-31 11:31:26 1548934286.530544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3783787 total-bytes-write=52 payload-bytes-read=3783758/5242880 (72.17%)
+2019-01-31 11:31:26 1548934286.531977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3787223 total-bytes-write=52 payload-bytes-read=3787194/5242880 (72.23%)
+2019-01-31 11:31:26 1548934286.533887 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3791207 total-bytes-write=52 payload-bytes-read=3791178/5242880 (72.31%)
+2019-01-31 11:31:26 1548934286.535517 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3795191 total-bytes-write=52 payload-bytes-read=3795162/5242880 (72.39%)
+2019-01-31 11:31:26 1548934286.536825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3799175 total-bytes-write=52 payload-bytes-read=3799146/5242880 (72.46%)
+2019-01-31 11:31:26 1548934286.537278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3799673 total-bytes-write=52 payload-bytes-read=3799644/5242880 (72.47%)
+2019-01-31 11:31:26 1548934286.538885 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3803109 total-bytes-write=52 payload-bytes-read=3803080/5242880 (72.54%)
+2019-01-31 11:31:26 1548934286.544836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3804603 total-bytes-write=52 payload-bytes-read=3804574/5242880 (72.57%)
+2019-01-31 11:31:26 1548934286.545637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3808089 total-bytes-write=52 payload-bytes-read=3808060/5242880 (72.63%)
+2019-01-31 11:31:26 1548934286.555539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3811575 total-bytes-write=52 payload-bytes-read=3811546/5242880 (72.70%)
+2019-01-31 11:31:26 1548934286.590843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3815559 total-bytes-write=52 payload-bytes-read=3815530/5242880 (72.78%)
+2019-01-31 11:31:26 1548934286.592275 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3816555 total-bytes-write=52 payload-bytes-read=3816526/5242880 (72.79%)
+2019-01-31 11:31:26 1548934286.615458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3819991 total-bytes-write=52 payload-bytes-read=3819962/5242880 (72.86%)
+2019-01-31 11:31:26 1548934286.616841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3823975 total-bytes-write=52 payload-bytes-read=3823946/5242880 (72.94%)
+2019-01-31 11:31:26 1548934286.618089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3827461 total-bytes-write=52 payload-bytes-read=3827432/5242880 (73.00%)
+2019-01-31 11:31:26 1548934286.620579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3831445 total-bytes-write=52 payload-bytes-read=3831416/5242880 (73.08%)
+2019-01-31 11:31:26 1548934286.664448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3848327 total-bytes-write=52 payload-bytes-read=3848298/5242880 (73.40%)
+2019-01-31 11:31:26 1548934286.708405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3865707 total-bytes-write=52 payload-bytes-read=3865678/5242880 (73.73%)
+2019-01-31 11:31:26 1548934286.752447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3886523 total-bytes-write=52 payload-bytes-read=3886494/5242880 (74.13%)
+2019-01-31 11:31:26 1548934286.796439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3897479 total-bytes-write=52 payload-bytes-read=3897450/5242880 (74.34%)
+2019-01-31 11:31:26 1548934286.799760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3901413 total-bytes-write=52 payload-bytes-read=3901384/5242880 (74.41%)
+2019-01-31 11:31:26 1548934286.805419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3905895 total-bytes-write=52 payload-bytes-read=3905866/5242880 (74.50%)
+2019-01-31 11:31:26 1548934286.806877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3909381 total-bytes-write=52 payload-bytes-read=3909352/5242880 (74.56%)
+2019-01-31 11:31:26 1548934286.807143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3910377 total-bytes-write=52 payload-bytes-read=3910348/5242880 (74.58%)
+2019-01-31 11:31:26 1548934286.813329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3913863 total-bytes-write=52 payload-bytes-read=3913834/5242880 (74.65%)
+2019-01-31 11:31:26 1548934286.816290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3917797 total-bytes-write=52 payload-bytes-read=3917768/5242880 (74.73%)
+2019-01-31 11:31:26 1548934286.818308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3921781 total-bytes-write=52 payload-bytes-read=3921752/5242880 (74.80%)
+2019-01-31 11:31:26 1548934286.846055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3926263 total-bytes-write=52 payload-bytes-read=3926234/5242880 (74.89%)
+2019-01-31 11:31:26 1548934286.847123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3929749 total-bytes-write=52 payload-bytes-read=3929720/5242880 (74.95%)
+2019-01-31 11:31:26 1548934286.871423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3933185 total-bytes-write=52 payload-bytes-read=3933156/5242880 (75.02%)
+2019-01-31 11:31:26 1548934286.881255 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3936671 total-bytes-write=52 payload-bytes-read=3936642/5242880 (75.09%)
+2019-01-31 11:31:26 1548934286.895538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3940655 total-bytes-write=52 payload-bytes-read=3940626/5242880 (75.16%)
+2019-01-31 11:31:26 1548934286.900952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3944639 total-bytes-write=52 payload-bytes-read=3944610/5242880 (75.24%)
+2019-01-31 11:31:26 1548934286.948438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3969439 total-bytes-write=52 payload-bytes-read=3969410/5242880 (75.71%)
+2019-01-31 11:31:26 1548934286.992427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3999717 total-bytes-write=52 payload-bytes-read=3999688/5242880 (76.29%)
+2019-01-31 11:31:27 1548934287.036399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4004697 total-bytes-write=52 payload-bytes-read=4004668/5242880 (76.38%)
+2019-01-31 11:31:27 1548934287.049784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4005693 total-bytes-write=52 payload-bytes-read=4005664/5242880 (76.40%)
+2019-01-31 11:31:27 1548934287.051100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4009179 total-bytes-write=52 payload-bytes-read=4009150/5242880 (76.47%)
+2019-01-31 11:31:27 1548934287.052676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4012665 total-bytes-write=52 payload-bytes-read=4012636/5242880 (76.53%)
+2019-01-31 11:31:27 1548934287.096435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4032485 total-bytes-write=52 payload-bytes-read=4032456/5242880 (76.91%)
+2019-01-31 11:31:27 1548934287.140407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4043441 total-bytes-write=52 payload-bytes-read=4043412/5242880 (77.12%)
+2019-01-31 11:31:27 1548934287.201447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4045931 total-bytes-write=52 payload-bytes-read=4045902/5242880 (77.17%)
+2019-01-31 11:31:27 1548934287.343482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4046877 total-bytes-write=52 payload-bytes-read=4046848/5242880 (77.19%)
+2019-01-31 11:31:27 1548934287.350858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4050363 total-bytes-write=52 payload-bytes-read=4050334/5242880 (77.25%)
+2019-01-31 11:31:27 1548934287.351942 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4054347 total-bytes-write=52 payload-bytes-read=4054318/5242880 (77.33%)
+2019-01-31 11:31:27 1548934287.353968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4057833 total-bytes-write=52 payload-bytes-read=4057804/5242880 (77.40%)
+2019-01-31 11:31:27 1548934287.365172 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4061319 total-bytes-write=52 payload-bytes-read=4061290/5242880 (77.46%)
+2019-01-31 11:31:27 1548934287.408397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4069735 total-bytes-write=52 payload-bytes-read=4069706/5242880 (77.62%)
+2019-01-31 11:31:27 1548934287.485266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4070731 total-bytes-write=52 payload-bytes-read=4070702/5242880 (77.64%)
+2019-01-31 11:31:27 1548934287.486607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4074217 total-bytes-write=52 payload-bytes-read=4074188/5242880 (77.71%)
+2019-01-31 11:31:27 1548934287.487835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4078201 total-bytes-write=52 payload-bytes-read=4078172/5242880 (77.78%)
+2019-01-31 11:31:27 1548934287.489283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4082135 total-bytes-write=52 payload-bytes-read=4082106/5242880 (77.86%)
+2019-01-31 11:31:27 1548934287.500970 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4082633 total-bytes-write=52 payload-bytes-read=4082604/5242880 (77.87%)
+2019-01-31 11:31:27 1548934287.502205 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4085621 total-bytes-write=52 payload-bytes-read=4085592/5242880 (77.93%)
+2019-01-31 11:31:27 1548934287.562980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4089107 total-bytes-write=52 payload-bytes-read=4089078/5242880 (77.99%)
+2019-01-31 11:31:27 1548934287.564194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4093091 total-bytes-write=52 payload-bytes-read=4093062/5242880 (78.07%)
+2019-01-31 11:31:27 1548934287.564888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4095083 total-bytes-write=52 payload-bytes-read=4095054/5242880 (78.11%)
+2019-01-31 11:31:27 1548934287.577457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4098519 total-bytes-write=52 payload-bytes-read=4098490/5242880 (78.17%)
+2019-01-31 11:31:27 1548934287.581109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4106487 total-bytes-write=52 payload-bytes-read=4106458/5242880 (78.32%)
+2019-01-31 11:31:27 1548934287.581328 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4110471 total-bytes-write=52 payload-bytes-read=4110442/5242880 (78.40%)
+2019-01-31 11:31:27 1548934287.585940 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4114405 total-bytes-write=52 payload-bytes-read=4114376/5242880 (78.48%)
+2019-01-31 11:31:27 1548934287.586081 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4118389 total-bytes-write=52 payload-bytes-read=4118360/5242880 (78.55%)
+2019-01-31 11:31:27 1548934287.587577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4126357 total-bytes-write=52 payload-bytes-read=4126328/5242880 (78.70%)
+2019-01-31 11:31:27 1548934287.594303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4126855 total-bytes-write=52 payload-bytes-read=4126826/5242880 (78.71%)
+2019-01-31 11:31:27 1548934287.595152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4130291 total-bytes-write=52 payload-bytes-read=4130262/5242880 (78.78%)
+2019-01-31 11:31:27 1548934287.652563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4138259 total-bytes-write=52 payload-bytes-read=4138230/5242880 (78.93%)
+2019-01-31 11:31:27 1548934287.659020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4142243 total-bytes-write=52 payload-bytes-read=4142214/5242880 (79.01%)
+2019-01-31 11:31:27 1548934287.660320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4142741 total-bytes-write=52 payload-bytes-read=4142712/5242880 (79.02%)
+2019-01-31 11:31:27 1548934287.662429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4146177 total-bytes-write=52 payload-bytes-read=4146148/5242880 (79.08%)
+2019-01-31 11:31:27 1548934287.663511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4148169 total-bytes-write=52 payload-bytes-read=4148140/5242880 (79.12%)
+2019-01-31 11:31:27 1548934287.665375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4151655 total-bytes-write=52 payload-bytes-read=4151626/5242880 (79.19%)
+2019-01-31 11:31:27 1548934287.666924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4155639 total-bytes-write=52 payload-bytes-read=4155610/5242880 (79.26%)
+2019-01-31 11:31:27 1548934287.675368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4159623 total-bytes-write=52 payload-bytes-read=4159594/5242880 (79.34%)
+2019-01-31 11:31:27 1548934287.720402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4175509 total-bytes-write=52 payload-bytes-read=4175480/5242880 (79.64%)
+2019-01-31 11:31:27 1548934287.768478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4223167 total-bytes-write=52 payload-bytes-read=4223138/5242880 (80.55%)
+2019-01-31 11:31:27 1548934287.821218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4227101 total-bytes-write=52 payload-bytes-read=4227072/5242880 (80.62%)
+2019-01-31 11:31:27 1548934287.822575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4231085 total-bytes-write=52 payload-bytes-read=4231056/5242880 (80.70%)
+2019-01-31 11:31:27 1548934287.824370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4235069 total-bytes-write=52 payload-bytes-read=4235040/5242880 (80.78%)
+2019-01-31 11:31:27 1548934287.868477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4271323 total-bytes-write=52 payload-bytes-read=4271294/5242880 (81.47%)
+2019-01-31 11:31:27 1548934287.912425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4283225 total-bytes-write=52 payload-bytes-read=4283196/5242880 (81.70%)
+2019-01-31 11:31:27 1548934287.915874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4287209 total-bytes-write=52 payload-bytes-read=4287180/5242880 (81.77%)
+2019-01-31 11:31:27 1548934287.916415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4288703 total-bytes-write=52 payload-bytes-read=4288674/5242880 (81.80%)
+2019-01-31 11:31:27 1548934287.917524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4292637 total-bytes-write=52 payload-bytes-read=4292608/5242880 (81.88%)
+2019-01-31 11:31:27 1548934287.974493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4294131 total-bytes-write=52 payload-bytes-read=4294102/5242880 (81.90%)
+2019-01-31 11:31:28 1548934288.115774 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4297617 total-bytes-write=52 payload-bytes-read=4297588/5242880 (81.97%)
+2019-01-31 11:31:28 1548934288.117239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4301601 total-bytes-write=52 payload-bytes-read=4301572/5242880 (82.05%)
+2019-01-31 11:31:28 1548934288.120366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4305585 total-bytes-write=52 payload-bytes-read=4305556/5242880 (82.12%)
+2019-01-31 11:31:28 1548934288.164398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4315495 total-bytes-write=52 payload-bytes-read=4315466/5242880 (82.31%)
+2019-01-31 11:31:28 1548934288.231925 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4316491 total-bytes-write=52 payload-bytes-read=4316462/5242880 (82.33%)
+2019-01-31 11:31:28 1548934288.432136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4317487 total-bytes-write=52 payload-bytes-read=4317458/5242880 (82.35%)
+2019-01-31 11:31:28 1548934288.472392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4323463 total-bytes-write=52 payload-bytes-read=4323434/5242880 (82.46%)
+2019-01-31 11:31:28 1548934288.516433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4336859 total-bytes-write=52 payload-bytes-read=4336830/5242880 (82.72%)
+2019-01-31 11:31:28 1548934288.560423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4341341 total-bytes-write=52 payload-bytes-read=4341312/5242880 (82.80%)
+2019-01-31 11:31:28 1548934288.690516 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4347267 total-bytes-write=52 payload-bytes-read=4347238/5242880 (82.92%)
+2019-01-31 11:31:28 1548934288.690633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4351749 total-bytes-write=52 payload-bytes-read=4351720/5242880 (83.00%)
+2019-01-31 11:31:28 1548934288.690963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4359169 total-bytes-write=52 payload-bytes-read=4359140/5242880 (83.14%)
+2019-01-31 11:31:28 1548934288.691190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4365643 total-bytes-write=52 payload-bytes-read=4365614/5242880 (83.27%)
+2019-01-31 11:31:28 1548934288.691498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4373113 total-bytes-write=52 payload-bytes-read=4373084/5242880 (83.41%)
+2019-01-31 11:31:28 1548934288.691696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4378043 total-bytes-write=52 payload-bytes-read=4378014/5242880 (83.50%)
+2019-01-31 11:31:28 1548934288.730389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4381529 total-bytes-write=52 payload-bytes-read=4381500/5242880 (83.57%)
+2019-01-31 11:31:28 1548934288.774427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4385513 total-bytes-write=52 payload-bytes-read=4385484/5242880 (83.65%)
+2019-01-31 11:31:28 1548934288.812373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4386011 total-bytes-write=52 payload-bytes-read=4385982/5242880 (83.66%)
+2019-01-31 11:31:28 1548934288.813566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4389497 total-bytes-write=52 payload-bytes-read=4389468/5242880 (83.72%)
+2019-01-31 11:31:28 1548934288.814375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4392435 total-bytes-write=52 payload-bytes-read=4392406/5242880 (83.78%)
+2019-01-31 11:31:28 1548934288.855584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4395921 total-bytes-write=52 payload-bytes-read=4395892/5242880 (83.84%)
+2019-01-31 11:31:28 1548934288.896175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4400403 total-bytes-write=52 payload-bytes-read=4400374/5242880 (83.93%)
+2019-01-31 11:31:28 1548934288.896713 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4403889 total-bytes-write=52 payload-bytes-read=4403860/5242880 (84.00%)
+2019-01-31 11:31:28 1548934288.898805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4407325 total-bytes-write=52 payload-bytes-read=4407296/5242880 (84.06%)
+2019-01-31 11:31:28 1548934288.901852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4411807 total-bytes-write=52 payload-bytes-read=4411778/5242880 (84.15%)
+2019-01-31 11:31:28 1548934288.943328 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4415293 total-bytes-write=52 payload-bytes-read=4415264/5242880 (84.21%)
+2019-01-31 11:31:28 1548934288.945900 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4418779 total-bytes-write=52 payload-bytes-read=4418750/5242880 (84.28%)
+2019-01-31 11:31:28 1548934288.988442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4438151 total-bytes-write=52 payload-bytes-read=4438122/5242880 (84.65%)
+2019-01-31 11:31:29 1548934289.032385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4442085 total-bytes-write=52 payload-bytes-read=4442056/5242880 (84.73%)
+2019-01-31 11:31:29 1548934289.064076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4446069 total-bytes-write=52 payload-bytes-read=4446040/5242880 (84.80%)
+2019-01-31 11:31:29 1548934289.065338 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4450053 total-bytes-write=52 payload-bytes-read=4450024/5242880 (84.88%)
+2019-01-31 11:31:29 1548934289.108440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4466437 total-bytes-write=52 payload-bytes-read=4466408/5242880 (85.19%)
+2019-01-31 11:31:29 1548934289.152404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4477841 total-bytes-write=52 payload-bytes-read=4477812/5242880 (85.41%)
+2019-01-31 11:31:29 1548934289.152963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4482323 total-bytes-write=52 payload-bytes-read=4482294/5242880 (85.49%)
+2019-01-31 11:31:29 1548934289.154458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4485809 total-bytes-write=52 payload-bytes-read=4485780/5242880 (85.56%)
+2019-01-31 11:31:29 1548934289.155749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4489743 total-bytes-write=52 payload-bytes-read=4489714/5242880 (85.63%)
+2019-01-31 11:31:29 1548934289.157389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4493727 total-bytes-write=52 payload-bytes-read=4493698/5242880 (85.71%)
+2019-01-31 11:31:29 1548934289.194967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4498209 total-bytes-write=52 payload-bytes-read=4498180/5242880 (85.80%)
+2019-01-31 11:31:29 1548934289.228821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4501695 total-bytes-write=52 payload-bytes-read=4501666/5242880 (85.86%)
+2019-01-31 11:31:29 1548934289.232639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4505629 total-bytes-write=52 payload-bytes-read=4505600/5242880 (85.94%)
+2019-01-31 11:31:29 1548934289.235178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4509613 total-bytes-write=52 payload-bytes-read=4509584/5242880 (86.01%)
+2019-01-31 11:31:29 1548934289.236541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4514095 total-bytes-write=52 payload-bytes-read=4514066/5242880 (86.10%)
+2019-01-31 11:31:29 1548934289.237966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4517581 total-bytes-write=52 payload-bytes-read=4517552/5242880 (86.17%)
+2019-01-31 11:31:29 1548934289.239244 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4521565 total-bytes-write=52 payload-bytes-read=4521536/5242880 (86.24%)
+2019-01-31 11:31:29 1548934289.240800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4525499 total-bytes-write=52 payload-bytes-read=4525470/5242880 (86.32%)
+2019-01-31 11:31:29 1548934289.278041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4529483 total-bytes-write=52 payload-bytes-read=4529454/5242880 (86.39%)
+2019-01-31 11:31:29 1548934289.278422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4529981 total-bytes-write=52 payload-bytes-read=4529952/5242880 (86.40%)
+2019-01-31 11:31:29 1548934289.313706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4533467 total-bytes-write=52 payload-bytes-read=4533438/5242880 (86.47%)
+2019-01-31 11:31:29 1548934289.316582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4537451 total-bytes-write=52 payload-bytes-read=4537422/5242880 (86.54%)
+2019-01-31 11:31:29 1548934289.317041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4537949 total-bytes-write=52 payload-bytes-read=4537920/5242880 (86.55%)
+2019-01-31 11:31:29 1548934289.318840 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4539891 total-bytes-write=52 payload-bytes-read=4539862/5242880 (86.59%)
+2019-01-31 11:31:29 1548934289.319177 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4541385 total-bytes-write=52 payload-bytes-read=4541356/5242880 (86.62%)
+2019-01-31 11:31:29 1548934289.399042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4542381 total-bytes-write=52 payload-bytes-read=4542352/5242880 (86.64%)
+2019-01-31 11:31:29 1548934289.400969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4545867 total-bytes-write=52 payload-bytes-read=4545838/5242880 (86.70%)
+2019-01-31 11:31:29 1548934289.445743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4549353 total-bytes-write=52 payload-bytes-read=4549324/5242880 (86.77%)
+2019-01-31 11:31:29 1548934289.488414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4565239 total-bytes-write=52 payload-bytes-read=4565210/5242880 (87.07%)
+2019-01-31 11:31:29 1548934289.532435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4567231 total-bytes-write=52 payload-bytes-read=4567202/5242880 (87.11%)
+2019-01-31 11:31:29 1548934289.749953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4570717 total-bytes-write=52 payload-bytes-read=4570688/5242880 (87.18%)
+2019-01-31 11:31:29 1548934289.771518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4574153 total-bytes-write=52 payload-bytes-read=4574124/5242880 (87.24%)
+2019-01-31 11:31:29 1548934289.773362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4578137 total-bytes-write=52 payload-bytes-read=4578108/5242880 (87.32%)
+2019-01-31 11:31:29 1548934289.774966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4582121 total-bytes-write=52 payload-bytes-read=4582092/5242880 (87.40%)
+2019-01-31 11:31:29 1548934289.776441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4586105 total-bytes-write=52 payload-bytes-read=4586076/5242880 (87.47%)
+2019-01-31 11:31:29 1548934289.777467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4586603 total-bytes-write=52 payload-bytes-read=4586574/5242880 (87.48%)
+2019-01-31 11:31:29 1548934289.778636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4590039 total-bytes-write=52 payload-bytes-read=4590010/5242880 (87.55%)
+2019-01-31 11:31:29 1548934289.779836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4594023 total-bytes-write=52 payload-bytes-read=4593994/5242880 (87.62%)
+2019-01-31 11:31:29 1548934289.781960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4598007 total-bytes-write=52 payload-bytes-read=4597978/5242880 (87.70%)
+2019-01-31 11:31:29 1548934289.832186 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4601991 total-bytes-write=52 payload-bytes-read=4601962/5242880 (87.78%)
+2019-01-31 11:31:29 1548934289.832671 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4602489 total-bytes-write=52 payload-bytes-read=4602460/5242880 (87.78%)
+2019-01-31 11:31:29 1548934289.854656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4605925 total-bytes-write=52 payload-bytes-read=4605896/5242880 (87.85%)
+2019-01-31 11:31:29 1548934289.856547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4609909 total-bytes-write=52 payload-bytes-read=4609880/5242880 (87.93%)
+2019-01-31 11:31:29 1548934289.858020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4613893 total-bytes-write=52 payload-bytes-read=4613864/5242880 (88.00%)
+2019-01-31 11:31:29 1548934289.862520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4618375 total-bytes-write=52 payload-bytes-read=4618346/5242880 (88.09%)
+2019-01-31 11:31:29 1548934289.868104 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4621811 total-bytes-write=52 payload-bytes-read=4621782/5242880 (88.15%)
+2019-01-31 11:31:29 1548934289.872342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4625795 total-bytes-write=52 payload-bytes-read=4625766/5242880 (88.23%)
+2019-01-31 11:31:29 1548934289.875191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4629779 total-bytes-write=52 payload-bytes-read=4629750/5242880 (88.31%)
+2019-01-31 11:31:29 1548934289.916392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4637697 total-bytes-write=52 payload-bytes-read=4637668/5242880 (88.46%)
+2019-01-31 11:31:29 1548934289.960444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4666033 total-bytes-write=52 payload-bytes-read=4666004/5242880 (89.00%)
+2019-01-31 11:31:30 1548934290.004416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4673951 total-bytes-write=52 payload-bytes-read=4673922/5242880 (89.15%)
+2019-01-31 11:31:30 1548934290.004494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4674449 total-bytes-write=52 payload-bytes-read=4674420/5242880 (89.16%)
+2019-01-31 11:31:30 1548934290.020039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4677935 total-bytes-write=52 payload-bytes-read=4677906/5242880 (89.22%)
+2019-01-31 11:31:30 1548934290.023403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4681919 total-bytes-write=52 payload-bytes-read=4681890/5242880 (89.30%)
+2019-01-31 11:31:30 1548934290.026124 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4685853 total-bytes-write=52 payload-bytes-read=4685824/5242880 (89.38%)
+2019-01-31 11:31:30 1548934290.031403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4690335 total-bytes-write=52 payload-bytes-read=4690306/5242880 (89.46%)
+2019-01-31 11:31:30 1548934290.034327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4693821 total-bytes-write=52 payload-bytes-read=4693792/5242880 (89.53%)
+2019-01-31 11:31:30 1548934290.037693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4697805 total-bytes-write=52 payload-bytes-read=4697776/5242880 (89.60%)
+2019-01-31 11:31:30 1548934290.042892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4701789 total-bytes-write=52 payload-bytes-read=4701760/5242880 (89.68%)
+2019-01-31 11:31:30 1548934290.084424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4710205 total-bytes-write=52 payload-bytes-read=4710176/5242880 (89.84%)
+2019-01-31 11:31:30 1548934290.128445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4740483 total-bytes-write=52 payload-bytes-read=4740454/5242880 (90.42%)
+2019-01-31 11:31:30 1548934290.172441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4748451 total-bytes-write=52 payload-bytes-read=4748422/5242880 (90.57%)
+2019-01-31 11:31:30 1548934290.173966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4752883 total-bytes-write=52 payload-bytes-read=4752854/5242880 (90.65%)
+2019-01-31 11:31:30 1548934290.185944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4755871 total-bytes-write=52 payload-bytes-read=4755842/5242880 (90.71%)
+2019-01-31 11:31:30 1548934290.191944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4759855 total-bytes-write=52 payload-bytes-read=4759826/5242880 (90.79%)
+2019-01-31 11:31:30 1548934290.195916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4764337 total-bytes-write=52 payload-bytes-read=4764308/5242880 (90.87%)
+2019-01-31 11:31:30 1548934290.230715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4765831 total-bytes-write=52 payload-bytes-read=4765802/5242880 (90.90%)
+2019-01-31 11:31:30 1548934290.277817 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4769267 total-bytes-write=52 payload-bytes-read=4769238/5242880 (90.97%)
+2019-01-31 11:31:30 1548934290.282897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4772255 total-bytes-write=52 payload-bytes-read=4772226/5242880 (91.02%)
+2019-01-31 11:31:30 1548934290.289809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4775741 total-bytes-write=52 payload-bytes-read=4775712/5242880 (91.09%)
+2019-01-31 11:31:30 1548934290.299952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4779725 total-bytes-write=52 payload-bytes-read=4779696/5242880 (91.17%)
+2019-01-31 11:31:30 1548934290.308879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4781717 total-bytes-write=52 payload-bytes-read=4781688/5242880 (91.20%)
+2019-01-31 11:31:30 1548934290.312058 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4785153 total-bytes-write=52 payload-bytes-read=4785124/5242880 (91.27%)
+2019-01-31 11:31:30 1548934290.360231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4786647 total-bytes-write=52 payload-bytes-read=4786618/5242880 (91.30%)
+2019-01-31 11:31:30 1548934290.362298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4790133 total-bytes-write=52 payload-bytes-read=4790104/5242880 (91.36%)
+2019-01-31 11:31:30 1548934290.370322 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4791129 total-bytes-write=52 payload-bytes-read=4791100/5242880 (91.38%)
+2019-01-31 11:31:30 1548934290.372837 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4794615 total-bytes-write=52 payload-bytes-read=4794586/5242880 (91.45%)
+2019-01-31 11:31:30 1548934290.374570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4798599 total-bytes-write=52 payload-bytes-read=4798570/5242880 (91.53%)
+2019-01-31 11:31:30 1548934290.376942 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4802533 total-bytes-write=52 payload-bytes-read=4802504/5242880 (91.60%)
+2019-01-31 11:31:30 1548934290.382959 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4803031 total-bytes-write=52 payload-bytes-read=4803002/5242880 (91.61%)
+2019-01-31 11:31:30 1548934290.384419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4806517 total-bytes-write=52 payload-bytes-read=4806488/5242880 (91.68%)
+2019-01-31 11:31:30 1548934290.416811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4807015 total-bytes-write=52 payload-bytes-read=4806986/5242880 (91.69%)
+2019-01-31 11:31:30 1548934290.417808 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4810501 total-bytes-write=52 payload-bytes-read=4810472/5242880 (91.75%)
+2019-01-31 11:31:30 1548934290.419405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4814485 total-bytes-write=52 payload-bytes-read=4814456/5242880 (91.83%)
+2019-01-31 11:31:30 1548934290.420823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4818419 total-bytes-write=52 payload-bytes-read=4818390/5242880 (91.90%)
+2019-01-31 11:31:30 1548934290.421872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4822403 total-bytes-write=52 payload-bytes-read=4822374/5242880 (91.98%)
+2019-01-31 11:31:30 1548934290.422560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4822901 total-bytes-write=52 payload-bytes-read=4822872/5242880 (91.99%)
+2019-01-31 11:31:30 1548934290.423454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4825391 total-bytes-write=52 payload-bytes-read=4825362/5242880 (92.04%)
+2019-01-31 11:31:30 1548934290.454313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4828877 total-bytes-write=52 payload-bytes-read=4828848/5242880 (92.10%)
+2019-01-31 11:31:30 1548934290.481475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4832861 total-bytes-write=52 payload-bytes-read=4832832/5242880 (92.18%)
+2019-01-31 11:31:30 1548934290.483196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4836297 total-bytes-write=52 payload-bytes-read=4836268/5242880 (92.24%)
+2019-01-31 11:31:30 1548934290.566214 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4837293 total-bytes-write=52 payload-bytes-read=4837264/5242880 (92.26%)
+2019-01-31 11:31:30 1548934290.567496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4840281 total-bytes-write=52 payload-bytes-read=4840252/5242880 (92.32%)
+2019-01-31 11:31:30 1548934290.582422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4843767 total-bytes-write=52 payload-bytes-read=4843738/5242880 (92.39%)
+2019-01-31 11:31:30 1548934290.585735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4847253 total-bytes-write=52 payload-bytes-read=4847224/5242880 (92.45%)
+2019-01-31 11:31:30 1548934290.628412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4858657 total-bytes-write=52 payload-bytes-read=4858628/5242880 (92.67%)
+2019-01-31 11:31:30 1548934290.672445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4881017 total-bytes-write=52 payload-bytes-read=4880988/5242880 (93.10%)
+2019-01-31 11:31:30 1548934290.716413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4892421 total-bytes-write=52 payload-bytes-read=4892392/5242880 (93.31%)
+2019-01-31 11:31:30 1548934290.721442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4895907 total-bytes-write=52 payload-bytes-read=4895878/5242880 (93.38%)
+2019-01-31 11:31:30 1548934290.729037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4899841 total-bytes-write=52 payload-bytes-read=4899812/5242880 (93.46%)
+2019-01-31 11:31:30 1548934290.730407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4904323 total-bytes-write=52 payload-bytes-read=4904294/5242880 (93.54%)
+2019-01-31 11:31:30 1548934290.731779 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4912789 total-bytes-write=52 payload-bytes-read=4912760/5242880 (93.70%)
+2019-01-31 11:31:30 1548934290.751437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4913287 total-bytes-write=52 payload-bytes-read=4913258/5242880 (93.71%)
+2019-01-31 11:31:30 1548934290.752538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4916723 total-bytes-write=52 payload-bytes-read=4916694/5242880 (93.78%)
+2019-01-31 11:31:30 1548934290.760456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4920209 total-bytes-write=52 payload-bytes-read=4920180/5242880 (93.84%)
+2019-01-31 11:31:30 1548934290.771632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4921205 total-bytes-write=52 payload-bytes-read=4921176/5242880 (93.86%)
+2019-01-31 11:31:30 1548934290.785452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4924691 total-bytes-write=52 payload-bytes-read=4924662/5242880 (93.93%)
+2019-01-31 11:31:30 1548934290.788083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4928675 total-bytes-write=52 payload-bytes-read=4928646/5242880 (94.01%)
+2019-01-31 11:31:30 1548934290.795962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4930169 total-bytes-write=52 payload-bytes-read=4930140/5242880 (94.03%)
+2019-01-31 11:31:30 1548934290.797165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4933605 total-bytes-write=52 payload-bytes-read=4933576/5242880 (94.10%)
+2019-01-31 11:31:30 1548934290.821254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4937091 total-bytes-write=52 payload-bytes-read=4937062/5242880 (94.17%)
+2019-01-31 11:31:30 1548934290.835017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4938087 total-bytes-write=52 payload-bytes-read=4938058/5242880 (94.19%)
+2019-01-31 11:31:30 1548934290.837176 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4941573 total-bytes-write=52 payload-bytes-read=4941544/5242880 (94.25%)
+2019-01-31 11:31:30 1548934290.839342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4945557 total-bytes-write=52 payload-bytes-read=4945528/5242880 (94.33%)
+2019-01-31 11:31:30 1548934290.841113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4949491 total-bytes-write=52 payload-bytes-read=4949462/5242880 (94.40%)
+2019-01-31 11:31:30 1548934290.842556 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4953475 total-bytes-write=52 payload-bytes-read=4953446/5242880 (94.48%)
+2019-01-31 11:31:30 1548934290.843563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4953973 total-bytes-write=52 payload-bytes-read=4953944/5242880 (94.49%)
+2019-01-31 11:31:30 1548934290.846355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4957459 total-bytes-write=52 payload-bytes-read=4957430/5242880 (94.56%)
+2019-01-31 11:31:30 1548934290.851716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4961443 total-bytes-write=52 payload-bytes-read=4961414/5242880 (94.63%)
+2019-01-31 11:31:30 1548934290.854941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4965377 total-bytes-write=52 payload-bytes-read=4965348/5242880 (94.71%)
+2019-01-31 11:31:30 1548934290.855473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4966373 total-bytes-write=52 payload-bytes-read=4966344/5242880 (94.73%)
+2019-01-31 11:31:30 1548934290.870233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4969859 total-bytes-write=52 payload-bytes-read=4969830/5242880 (94.79%)
+2019-01-31 11:31:30 1548934290.871939 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4973843 total-bytes-write=52 payload-bytes-read=4973814/5242880 (94.87%)
+2019-01-31 11:31:30 1548934290.880195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4977827 total-bytes-write=52 payload-bytes-read=4977798/5242880 (94.94%)
+2019-01-31 11:31:30 1548934290.922264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4981875 total-bytes-write=52 payload-bytes-read=4981846/5242880 (95.02%)
+2019-01-31 11:31:30 1548934290.964380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4987239 total-bytes-write=52 payload-bytes-read=4987210/5242880 (95.12%)
+2019-01-31 11:31:31 1548934291.008407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5001631 total-bytes-write=52 payload-bytes-read=5001602/5242880 (95.40%)
+2019-01-31 11:31:31 1548934291.052390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5007607 total-bytes-write=52 payload-bytes-read=5007578/5242880 (95.51%)
+2019-01-31 11:31:31 1548934291.052530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5011591 total-bytes-write=52 payload-bytes-read=5011562/5242880 (95.59%)
+2019-01-31 11:31:31 1548934291.105054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5012089 total-bytes-write=52 payload-bytes-read=5012060/5242880 (95.60%)
+2019-01-31 11:31:31 1548934291.106901 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5015525 total-bytes-write=52 payload-bytes-read=5015496/5242880 (95.66%)
+2019-01-31 11:31:31 1548934291.108145 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5019509 total-bytes-write=52 payload-bytes-read=5019480/5242880 (95.74%)
+2019-01-31 11:31:31 1548934291.109650 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5023493 total-bytes-write=52 payload-bytes-read=5023464/5242880 (95.81%)
+2019-01-31 11:31:31 1548934291.152389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5028473 total-bytes-write=52 payload-bytes-read=5028444/5242880 (95.91%)
+2019-01-31 11:31:31 1548934291.196400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5032905 total-bytes-write=52 payload-bytes-read=5032876/5242880 (95.99%)
+2019-01-31 11:31:31 1548934291.355003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5036391 total-bytes-write=52 payload-bytes-read=5036362/5242880 (96.06%)
+2019-01-31 11:31:31 1548934291.378537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5036889 total-bytes-write=52 payload-bytes-read=5036860/5242880 (96.07%)
+2019-01-31 11:31:31 1548934291.380355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5042367 total-bytes-write=52 payload-bytes-read=5042338/5242880 (96.17%)
+2019-01-31 11:31:31 1548934291.391428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5045853 total-bytes-write=52 payload-bytes-read=5045824/5242880 (96.24%)
+2019-01-31 11:31:31 1548934291.394924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5049787 total-bytes-write=52 payload-bytes-read=5049758/5242880 (96.32%)
+2019-01-31 11:31:31 1548934291.397634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5053771 total-bytes-write=52 payload-bytes-read=5053742/5242880 (96.39%)
+2019-01-31 11:31:31 1548934291.408110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5057257 total-bytes-write=52 payload-bytes-read=5057228/5242880 (96.46%)
+2019-01-31 11:31:31 1548934291.412051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5058253 total-bytes-write=52 payload-bytes-read=5058224/5242880 (96.48%)
+2019-01-31 11:31:31 1548934291.413173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5061739 total-bytes-write=52 payload-bytes-read=5061710/5242880 (96.54%)
+2019-01-31 11:31:31 1548934291.414612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5065673 total-bytes-write=52 payload-bytes-read=5065644/5242880 (96.62%)
+2019-01-31 11:31:31 1548934291.415556 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5068163 total-bytes-write=52 payload-bytes-read=5068134/5242880 (96.67%)
+2019-01-31 11:31:31 1548934291.426316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5071649 total-bytes-write=52 payload-bytes-read=5071620/5242880 (96.73%)
+2019-01-31 11:31:31 1548934291.427337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5075633 total-bytes-write=52 payload-bytes-read=5075604/5242880 (96.81%)
+2019-01-31 11:31:31 1548934291.431748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5079567 total-bytes-write=52 payload-bytes-read=5079538/5242880 (96.88%)
+2019-01-31 11:31:31 1548934291.437350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5083551 total-bytes-write=52 payload-bytes-read=5083522/5242880 (96.96%)
+2019-01-31 11:31:31 1548934291.464557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5084049 total-bytes-write=52 payload-bytes-read=5084020/5242880 (96.97%)
+2019-01-31 11:31:31 1548934291.464678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5085543 total-bytes-write=52 payload-bytes-read=5085514/5242880 (97.00%)
+2019-01-31 11:31:31 1548934291.538443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5086539 total-bytes-write=52 payload-bytes-read=5086510/5242880 (97.02%)
+2019-01-31 11:31:31 1548934291.540109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5090025 total-bytes-write=52 payload-bytes-read=5089996/5242880 (97.08%)
+2019-01-31 11:31:31 1548934291.540736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5092017 total-bytes-write=52 payload-bytes-read=5091988/5242880 (97.12%)
+2019-01-31 11:31:31 1548934291.547982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5096449 total-bytes-write=52 payload-bytes-read=5096420/5242880 (97.21%)
+2019-01-31 11:31:31 1548934291.548511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5098939 total-bytes-write=52 payload-bytes-read=5098910/5242880 (97.25%)
+2019-01-31 11:31:31 1548934291.558285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5102425 total-bytes-write=52 payload-bytes-read=5102396/5242880 (97.32%)
+2019-01-31 11:31:31 1548934291.560438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5110393 total-bytes-write=52 payload-bytes-read=5110364/5242880 (97.47%)
+2019-01-31 11:31:31 1548934291.564729 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5114327 total-bytes-write=52 payload-bytes-read=5114298/5242880 (97.55%)
+2019-01-31 11:31:31 1548934291.565046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5114825 total-bytes-write=52 payload-bytes-read=5114796/5242880 (97.56%)
+2019-01-31 11:31:31 1548934291.566436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5118311 total-bytes-write=52 payload-bytes-read=5118282/5242880 (97.62%)
+2019-01-31 11:31:31 1548934291.567013 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5119307 total-bytes-write=52 payload-bytes-read=5119278/5242880 (97.64%)
+2019-01-31 11:31:31 1548934291.568359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5122793 total-bytes-write=52 payload-bytes-read=5122764/5242880 (97.71%)
+2019-01-31 11:31:31 1548934291.570088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5126279 total-bytes-write=52 payload-bytes-read=5126250/5242880 (97.78%)
+2019-01-31 11:31:31 1548934291.612409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5132205 total-bytes-write=52 payload-bytes-read=5132176/5242880 (97.89%)
+2019-01-31 11:31:31 1548934291.656434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5158549 total-bytes-write=52 payload-bytes-read=5158520/5242880 (98.39%)
+2019-01-31 11:31:31 1548934291.700447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5184345 total-bytes-write=52 payload-bytes-read=5184316/5242880 (98.88%)
+2019-01-31 11:31:31 1548934291.707216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5187333 total-bytes-write=52 payload-bytes-read=5187304/5242880 (98.94%)
+2019-01-31 11:31:31 1548934291.709982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5190819 total-bytes-write=52 payload-bytes-read=5190790/5242880 (99.01%)
+2019-01-31 11:31:31 1548934291.716856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5194753 total-bytes-write=52 payload-bytes-read=5194724/5242880 (99.08%)
+2019-01-31 11:31:31 1548934291.724791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5198737 total-bytes-write=52 payload-bytes-read=5198708/5242880 (99.16%)
+2019-01-31 11:31:31 1548934291.728489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5203219 total-bytes-write=52 payload-bytes-read=5203190/5242880 (99.24%)
+2019-01-31 11:31:31 1548934291.739068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5206705 total-bytes-write=52 payload-bytes-read=5206676/5242880 (99.31%)
+2019-01-31 11:31:31 1548934291.739335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5207701 total-bytes-write=52 payload-bytes-read=5207672/5242880 (99.33%)
+2019-01-31 11:31:31 1548934291.750655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5211137 total-bytes-write=52 payload-bytes-read=5211108/5242880 (99.39%)
+2019-01-31 11:31:31 1548934291.751578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5215121 total-bytes-write=52 payload-bytes-read=5215092/5242880 (99.47%)
+2019-01-31 11:31:31 1548934291.754687 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5219603 total-bytes-write=52 payload-bytes-read=5219574/5242880 (99.56%)
+2019-01-31 11:31:31 1548934291.754768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5220599 total-bytes-write=52 payload-bytes-read=5220570/5242880 (99.57%)
+2019-01-31 11:31:31 1548934291.760349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5224085 total-bytes-write=52 payload-bytes-read=5224056/5242880 (99.64%)
+2019-01-31 11:31:31 1548934291.760656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5225081 total-bytes-write=52 payload-bytes-read=5225052/5242880 (99.66%)
+2019-01-31 11:31:31 1548934291.763044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5228517 total-bytes-write=52 payload-bytes-read=5228488/5242880 (99.73%)
+2019-01-31 11:31:31 1548934291.775864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5231505 total-bytes-write=52 payload-bytes-read=5231476/5242880 (99.78%)
+2019-01-31 11:31:31 1548934291.776475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5234991 total-bytes-write=52 payload-bytes-read=5234962/5242880 (99.85%)
+2019-01-31 11:31:31 1548934291.837067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5235987 total-bytes-write=52 payload-bytes-read=5235958/5242880 (99.87%)
+2019-01-31 11:31:31 1548934291.843999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5237481 total-bytes-write=52 payload-bytes-read=5237452/5242880 (99.90%)
+2019-01-31 11:31:31 1548934291.953718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5240967 total-bytes-write=52 payload-bytes-read=5240938/5242880 (99.96%)
+2019-01-31 11:31:32 1548934292.144594 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:31:32 1548934292.144715 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:31:32 1548934292.144780 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=SUCCESS,error=NONE MD5 checksums passed: computed=2316129dbffd554cb7c2ad6a8e920d90 received=2316129dbffd554cb7c2ad6a8e920d90
+2019-01-31 11:31:32 1548934292.144856 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=11 usecs-to-socket-connect=298 usecs-to-proxy-init=387 usecs-to-proxy-choice=470 usecs-to-proxy-request=546 usecs-to-proxy-response=-1 usecs-to-command=750228 usecs-to-response=1417838 usecs-to-first-byte=1459026 usecs-to-last-byte=19951352 usecs-to-checksum=19951451
+2019-01-31 11:31:32 1548934292.145009 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:31:32 1548934292.145065 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 14
+2019-01-31 11:31:32 1548934292.145145 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:31:32 1548934292.145210 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:31:32 1548934292.145263 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:31:32 1548934292.145337 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:31:32 1548934292.878091 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:31:32 1548934292.878175 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:31:32 1548934292.878227 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36440 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:31:32 1548934292.878293 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:31:32 1548934292.878379 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,6,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:31:33 1548934293.393151 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:31:33 1548934293.393218 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:31:33 1548934293.510212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:31:33 1548934293.555686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=7499 total-bytes-write=52 payload-bytes-read=7470/5242880 (0.14%)
+2019-01-31 11:31:33 1548934293.556447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=8993 total-bytes-write=52 payload-bytes-read=8964/5242880 (0.17%)
+2019-01-31 11:31:33 1548934293.600557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=10985 total-bytes-write=52 payload-bytes-read=10956/5242880 (0.21%)
+2019-01-31 11:31:33 1548934293.602092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=14969 total-bytes-write=52 payload-bytes-read=14940/5242880 (0.28%)
+2019-01-31 11:31:33 1548934293.639377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=18903 total-bytes-write=52 payload-bytes-read=18874/5242880 (0.36%)
+2019-01-31 11:31:33 1548934293.684472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:31:33 1548934293.691057 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=26373 total-bytes-write=52 payload-bytes-read=26344/5242880 (0.50%)
+2019-01-31 11:31:33 1548934293.694477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=30357 total-bytes-write=52 payload-bytes-read=30328/5242880 (0.58%)
+2019-01-31 11:31:33 1548934293.698090 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=34789 total-bytes-write=52 payload-bytes-read=34760/5242880 (0.66%)
+2019-01-31 11:31:33 1548934293.723825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=37777 total-bytes-write=52 payload-bytes-read=37748/5242880 (0.72%)
+2019-01-31 11:31:33 1548934293.766187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=41263 total-bytes-write=52 payload-bytes-read=41234/5242880 (0.79%)
+2019-01-31 11:31:33 1548934293.770106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=48235 total-bytes-write=52 payload-bytes-read=48206/5242880 (0.92%)
+2019-01-31 11:31:33 1548934293.776861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=51671 total-bytes-write=52 payload-bytes-read=51642/5242880 (0.98%)
+2019-01-31 11:31:33 1548934293.779038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=55655 total-bytes-write=52 payload-bytes-read=55626/5242880 (1.06%)
+2019-01-31 11:31:33 1548934293.783884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=59639 total-bytes-write=52 payload-bytes-read=59610/5242880 (1.14%)
+2019-01-31 11:31:33 1548934293.807038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=63125 total-bytes-write=52 payload-bytes-read=63096/5242880 (1.20%)
+2019-01-31 11:31:33 1548934293.853400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=66561 total-bytes-write=52 payload-bytes-read=66532/5242880 (1.27%)
+2019-01-31 11:31:33 1548934293.857166 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=70545 total-bytes-write=52 payload-bytes-read=70516/5242880 (1.34%)
+2019-01-31 11:31:33 1548934293.900446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=89917 total-bytes-write=52 payload-bytes-read=89888/5242880 (1.71%)
+2019-01-31 11:31:33 1548934293.944421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=100325 total-bytes-write=52 payload-bytes-read=100296/5242880 (1.91%)
+2019-01-31 11:31:33 1548934293.944784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=103811 total-bytes-write=52 payload-bytes-read=103782/5242880 (1.98%)
+2019-01-31 11:31:33 1548934293.947201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=107297 total-bytes-write=52 payload-bytes-read=107268/5242880 (2.05%)
+2019-01-31 11:31:33 1548934293.988424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=116709 total-bytes-write=52 payload-bytes-read=116680/5242880 (2.23%)
+2019-01-31 11:31:34 1548934294.032433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=134089 total-bytes-write=52 payload-bytes-read=134060/5242880 (2.56%)
+2019-01-31 11:31:34 1548934294.076454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=146539 total-bytes-write=52 payload-bytes-read=146510/5242880 (2.79%)
+2019-01-31 11:31:34 1548934294.110910 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=149477 total-bytes-write=52 payload-bytes-read=149448/5242880 (2.85%)
+2019-01-31 11:31:34 1548934294.112085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=152963 total-bytes-write=52 payload-bytes-read=152934/5242880 (2.92%)
+2019-01-31 11:31:34 1548934294.112777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=156947 total-bytes-write=52 payload-bytes-read=156918/5242880 (2.99%)
+2019-01-31 11:31:34 1548934294.114024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=160931 total-bytes-write=52 payload-bytes-read=160902/5242880 (3.07%)
+2019-01-31 11:31:34 1548934294.156436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=176319 total-bytes-write=52 payload-bytes-read=176290/5242880 (3.36%)
+2019-01-31 11:31:34 1548934294.200435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=193699 total-bytes-write=52 payload-bytes-read=193670/5242880 (3.69%)
+2019-01-31 11:31:34 1548934294.244437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=205103 total-bytes-write=52 payload-bytes-read=205074/5242880 (3.91%)
+2019-01-31 11:31:34 1548934294.278378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=209585 total-bytes-write=52 payload-bytes-read=209556/5242880 (4.00%)
+2019-01-31 11:31:34 1548934294.278839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=213021 total-bytes-write=52 payload-bytes-read=212992/5242880 (4.06%)
+2019-01-31 11:31:34 1548934294.281059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=217005 total-bytes-write=52 payload-bytes-read=216976/5242880 (4.14%)
+2019-01-31 11:31:34 1548934294.282067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=220989 total-bytes-write=52 payload-bytes-read=220960/5242880 (4.21%)
+2019-01-31 11:31:34 1548934294.324398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=233389 total-bytes-write=52 payload-bytes-read=233360/5242880 (4.45%)
+2019-01-31 11:31:34 1548934294.368421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=237373 total-bytes-write=52 payload-bytes-read=237344/5242880 (4.53%)
+2019-01-31 11:31:34 1548934294.370366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=242353 total-bytes-write=52 payload-bytes-read=242324/5242880 (4.62%)
+2019-01-31 11:31:34 1548934294.370580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:31:34 1548934294.431882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:31:34 1548934294.478025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=258737 total-bytes-write=52 payload-bytes-read=258708/5242880 (4.93%)
+2019-01-31 11:31:34 1548934294.478109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=262671 total-bytes-write=52 payload-bytes-read=262642/5242880 (5.01%)
+2019-01-31 11:31:34 1548934294.505454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=263169 total-bytes-write=52 payload-bytes-read=263140/5242880 (5.02%)
+2019-01-31 11:31:34 1548934294.508595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=266655 total-bytes-write=52 payload-bytes-read=266626/5242880 (5.09%)
+2019-01-31 11:31:34 1548934294.508728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=270141 total-bytes-write=52 payload-bytes-read=270112/5242880 (5.15%)
+2019-01-31 11:31:34 1548934294.598047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:31:34 1548934294.599283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=274125 total-bytes-write=52 payload-bytes-read=274096/5242880 (5.23%)
+2019-01-31 11:31:34 1548934294.640433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:31:34 1548934294.684426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=302909 total-bytes-write=52 payload-bytes-read=302880/5242880 (5.78%)
+2019-01-31 11:31:34 1548934294.685220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=306893 total-bytes-write=52 payload-bytes-read=306864/5242880 (5.85%)
+2019-01-31 11:31:34 1548934294.686410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=309881 total-bytes-write=52 payload-bytes-read=309852/5242880 (5.91%)
+2019-01-31 11:31:34 1548934294.701969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=313317 total-bytes-write=52 payload-bytes-read=313288/5242880 (5.98%)
+2019-01-31 11:31:34 1548934294.702039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=315309 total-bytes-write=52 payload-bytes-read=315280/5242880 (6.01%)
+2019-01-31 11:31:34 1548934294.714184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=318795 total-bytes-write=52 payload-bytes-read=318766/5242880 (6.08%)
+2019-01-31 11:31:34 1548934294.725503 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=322281 total-bytes-write=52 payload-bytes-read=322252/5242880 (6.15%)
+2019-01-31 11:31:34 1548934294.768523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=339163 total-bytes-write=52 payload-bytes-read=339134/5242880 (6.47%)
+2019-01-31 11:31:34 1548934294.812444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=362967 total-bytes-write=52 payload-bytes-read=362938/5242880 (6.92%)
+2019-01-31 11:31:34 1548934294.856428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=376861 total-bytes-write=52 payload-bytes-read=376832/5242880 (7.19%)
+2019-01-31 11:31:34 1548934294.860631 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=379849 total-bytes-write=52 payload-bytes-read=379820/5242880 (7.24%)
+2019-01-31 11:31:34 1548934294.867299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=383335 total-bytes-write=52 payload-bytes-read=383306/5242880 (7.31%)
+2019-01-31 11:31:34 1548934294.868774 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=387319 total-bytes-write=52 payload-bytes-read=387290/5242880 (7.39%)
+2019-01-31 11:31:34 1548934294.880028 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=387817 total-bytes-write=52 payload-bytes-read=387788/5242880 (7.40%)
+2019-01-31 11:31:34 1548934294.892735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=391801 total-bytes-write=52 payload-bytes-read=391772/5242880 (7.47%)
+2019-01-31 11:31:34 1548934294.894554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=395237 total-bytes-write=52 payload-bytes-read=395208/5242880 (7.54%)
+2019-01-31 11:31:34 1548934294.906873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=399221 total-bytes-write=52 payload-bytes-read=399192/5242880 (7.61%)
+2019-01-31 11:31:34 1548934294.910759 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=403205 total-bytes-write=52 payload-bytes-read=403176/5242880 (7.69%)
+2019-01-31 11:31:34 1548934294.952427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=423573 total-bytes-write=52 payload-bytes-read=423544/5242880 (8.08%)
+2019-01-31 11:31:34 1548934294.996409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=440455 total-bytes-write=52 payload-bytes-read=440426/5242880 (8.40%)
+2019-01-31 11:31:35 1548934295.025999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=443891 total-bytes-write=52 payload-bytes-read=443862/5242880 (8.47%)
+2019-01-31 11:31:35 1548934295.050967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=444389 total-bytes-write=52 payload-bytes-read=444360/5242880 (8.48%)
+2019-01-31 11:31:35 1548934295.052060 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=447875 total-bytes-write=52 payload-bytes-read=447846/5242880 (8.54%)
+2019-01-31 11:31:35 1548934295.053362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=451859 total-bytes-write=52 payload-bytes-read=451830/5242880 (8.62%)
+2019-01-31 11:31:35 1548934295.054692 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=455843 total-bytes-write=52 payload-bytes-read=455814/5242880 (8.69%)
+2019-01-31 11:31:35 1548934295.096450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=479647 total-bytes-write=52 payload-bytes-read=479618/5242880 (9.15%)
+2019-01-31 11:31:35 1548934295.140409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=491101 total-bytes-write=52 payload-bytes-read=491072/5242880 (9.37%)
+2019-01-31 11:31:35 1548934295.147843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=493043 total-bytes-write=52 payload-bytes-read=493014/5242880 (9.40%)
+2019-01-31 11:31:35 1548934295.251968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=496031 total-bytes-write=52 payload-bytes-read=496002/5242880 (9.46%)
+2019-01-31 11:31:35 1548934295.420511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=502505 total-bytes-write=52 payload-bytes-read=502476/5242880 (9.58%)
+2019-01-31 11:31:35 1548934295.434898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=505991 total-bytes-write=52 payload-bytes-read=505962/5242880 (9.65%)
+2019-01-31 11:31:35 1548934295.435921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=509925 total-bytes-write=52 payload-bytes-read=509896/5242880 (9.73%)
+2019-01-31 11:31:35 1548934295.437554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=513909 total-bytes-write=52 payload-bytes-read=513880/5242880 (9.80%)
+2019-01-31 11:31:35 1548934295.441637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=514407 total-bytes-write=52 payload-bytes-read=514378/5242880 (9.81%)
+2019-01-31 11:31:35 1548934295.442792 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=517893 total-bytes-write=52 payload-bytes-read=517864/5242880 (9.88%)
+2019-01-31 11:31:35 1548934295.444130 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=521877 total-bytes-write=52 payload-bytes-read=521848/5242880 (9.95%)
+2019-01-31 11:31:35 1548934295.445391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=525811 total-bytes-write=52 payload-bytes-read=525782/5242880 (10.03%)
+2019-01-31 11:31:35 1548934295.447110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=529795 total-bytes-write=52 payload-bytes-read=529766/5242880 (10.10%)
+2019-01-31 11:31:35 1548934295.447466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=530293 total-bytes-write=52 payload-bytes-read=530264/5242880 (10.11%)
+2019-01-31 11:31:35 1548934295.449616 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=533779 total-bytes-write=52 payload-bytes-read=533750/5242880 (10.18%)
+2019-01-31 11:31:35 1548934295.454592 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=534775 total-bytes-write=52 payload-bytes-read=534746/5242880 (10.20%)
+2019-01-31 11:31:35 1548934295.516593 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=538261 total-bytes-write=52 payload-bytes-read=538232/5242880 (10.27%)
+2019-01-31 11:31:35 1548934295.518005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=539257 total-bytes-write=52 payload-bytes-read=539228/5242880 (10.28%)
+2019-01-31 11:31:35 1548934295.539027 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=542693 total-bytes-write=52 payload-bytes-read=542664/5242880 (10.35%)
+2019-01-31 11:31:35 1548934295.543404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=545681 total-bytes-write=52 payload-bytes-read=545652/5242880 (10.41%)
+2019-01-31 11:31:35 1548934295.562386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=549167 total-bytes-write=52 payload-bytes-read=549138/5242880 (10.47%)
+2019-01-31 11:31:35 1548934295.564764 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=553151 total-bytes-write=52 payload-bytes-read=553122/5242880 (10.55%)
+2019-01-31 11:31:35 1548934295.566192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=556139 total-bytes-write=52 payload-bytes-read=556110/5242880 (10.61%)
+2019-01-31 11:31:35 1548934295.572421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=559575 total-bytes-write=52 payload-bytes-read=559546/5242880 (10.67%)
+2019-01-31 11:31:35 1548934295.573750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=563559 total-bytes-write=52 payload-bytes-read=563530/5242880 (10.75%)
+2019-01-31 11:31:35 1548934295.576014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=567543 total-bytes-write=52 payload-bytes-read=567514/5242880 (10.82%)
+2019-01-31 11:31:35 1548934295.616392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=579445 total-bytes-write=52 payload-bytes-read=579416/5242880 (11.05%)
+2019-01-31 11:31:35 1548934295.660424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=600809 total-bytes-write=52 payload-bytes-read=600780/5242880 (11.46%)
+2019-01-31 11:31:35 1548934295.704421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=623617 total-bytes-write=52 payload-bytes-read=623588/5242880 (11.89%)
+2019-01-31 11:31:35 1548934295.748437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=644483 total-bytes-write=52 payload-bytes-read=644454/5242880 (12.29%)
+2019-01-31 11:31:35 1548934295.757341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=648965 total-bytes-write=52 payload-bytes-read=648936/5242880 (12.38%)
+2019-01-31 11:31:35 1548934295.758906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=652451 total-bytes-write=52 payload-bytes-read=652422/5242880 (12.44%)
+2019-01-31 11:31:35 1548934295.761387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=656385 total-bytes-write=52 payload-bytes-read=656356/5242880 (12.52%)
+2019-01-31 11:31:35 1548934295.763449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=660369 total-bytes-write=52 payload-bytes-read=660340/5242880 (12.59%)
+2019-01-31 11:31:35 1548934295.764819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=663357 total-bytes-write=52 payload-bytes-read=663328/5242880 (12.65%)
+2019-01-31 11:31:35 1548934295.791921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=666843 total-bytes-write=52 payload-bytes-read=666814/5242880 (12.72%)
+2019-01-31 11:31:35 1548934295.811809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=670827 total-bytes-write=52 payload-bytes-read=670798/5242880 (12.79%)
+2019-01-31 11:31:35 1548934295.813009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=674761 total-bytes-write=52 payload-bytes-read=674732/5242880 (12.87%)
+2019-01-31 11:31:35 1548934295.819772 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=678247 total-bytes-write=52 payload-bytes-read=678218/5242880 (12.94%)
+2019-01-31 11:31:35 1548934295.827530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=681733 total-bytes-write=52 payload-bytes-read=681704/5242880 (13.00%)
+2019-01-31 11:31:35 1548934295.868421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=690149 total-bytes-write=52 payload-bytes-read=690120/5242880 (13.16%)
+2019-01-31 11:31:35 1548934295.934395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=697619 total-bytes-write=52 payload-bytes-read=697590/5242880 (13.31%)
+2019-01-31 11:31:35 1548934295.934544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=701603 total-bytes-write=52 payload-bytes-read=701574/5242880 (13.38%)
+2019-01-31 11:31:35 1548934295.978991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=705537 total-bytes-write=52 payload-bytes-read=705508/5242880 (13.46%)
+2019-01-31 11:31:35 1548934295.979719 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=710019 total-bytes-write=52 payload-bytes-read=709990/5242880 (13.54%)
+2019-01-31 11:31:35 1548934295.979966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=716493 total-bytes-write=52 payload-bytes-read=716464/5242880 (13.67%)
+2019-01-31 11:31:35 1548934295.980330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=724411 total-bytes-write=52 payload-bytes-read=724382/5242880 (13.82%)
+2019-01-31 11:31:35 1548934295.980502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=728893 total-bytes-write=52 payload-bytes-read=728864/5242880 (13.90%)
+2019-01-31 11:31:35 1548934295.980695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=733375 total-bytes-write=52 payload-bytes-read=733346/5242880 (13.99%)
+2019-01-31 11:31:35 1548934295.980856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=737309 total-bytes-write=52 payload-bytes-read=737280/5242880 (14.06%)
+2019-01-31 11:31:36 1548934296.003086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=743783 total-bytes-write=52 payload-bytes-read=743754/5242880 (14.19%)
+2019-01-31 11:31:36 1548934296.003163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=744281 total-bytes-write=52 payload-bytes-read=744252/5242880 (14.20%)
+2019-01-31 11:31:36 1548934296.086612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=747767 total-bytes-write=52 payload-bytes-read=747738/5242880 (14.26%)
+2019-01-31 11:31:36 1548934296.088242 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=751751 total-bytes-write=52 payload-bytes-read=751722/5242880 (14.34%)
+2019-01-31 11:31:36 1548934296.171991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=756681 total-bytes-write=52 payload-bytes-read=756652/5242880 (14.43%)
+2019-01-31 11:31:36 1548934296.172184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=762657 total-bytes-write=52 payload-bytes-read=762628/5242880 (14.55%)
+2019-01-31 11:31:36 1548934296.241457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=763653 total-bytes-write=52 payload-bytes-read=763624/5242880 (14.56%)
+2019-01-31 11:31:36 1548934296.244088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=767139 total-bytes-write=52 payload-bytes-read=767110/5242880 (14.63%)
+2019-01-31 11:31:36 1548934296.250374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=767637 total-bytes-write=52 payload-bytes-read=767608/5242880 (14.64%)
+2019-01-31 11:31:36 1548934296.251119 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=771073 total-bytes-write=52 payload-bytes-read=771044/5242880 (14.71%)
+2019-01-31 11:31:36 1548934296.282494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=773563 total-bytes-write=52 payload-bytes-read=773534/5242880 (14.75%)
+2019-01-31 11:31:36 1548934296.283511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=777049 total-bytes-write=52 payload-bytes-read=777020/5242880 (14.82%)
+2019-01-31 11:31:36 1548934296.284671 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=781033 total-bytes-write=52 payload-bytes-read=781004/5242880 (14.90%)
+2019-01-31 11:31:36 1548934296.286439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=784519 total-bytes-write=52 payload-bytes-read=784490/5242880 (14.96%)
+2019-01-31 11:31:36 1548934296.342031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=788453 total-bytes-write=52 payload-bytes-read=788424/5242880 (15.04%)
+2019-01-31 11:31:36 1548934296.342131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=789449 total-bytes-write=52 payload-bytes-read=789420/5242880 (15.06%)
+2019-01-31 11:31:36 1548934296.343429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=792935 total-bytes-write=52 payload-bytes-read=792906/5242880 (15.12%)
+2019-01-31 11:31:36 1548934296.402496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=793931 total-bytes-write=52 payload-bytes-read=793902/5242880 (15.14%)
+2019-01-31 11:31:36 1548934296.403707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=797417 total-bytes-write=52 payload-bytes-read=797388/5242880 (15.21%)
+2019-01-31 11:31:36 1548934296.405252 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=801401 total-bytes-write=52 payload-bytes-read=801372/5242880 (15.28%)
+2019-01-31 11:31:36 1548934296.406704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=805335 total-bytes-write=52 payload-bytes-read=805306/5242880 (15.36%)
+2019-01-31 11:31:36 1548934296.408333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=809319 total-bytes-write=52 payload-bytes-read=809290/5242880 (15.44%)
+2019-01-31 11:31:36 1548934296.408577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=809817 total-bytes-write=52 payload-bytes-read=809788/5242880 (15.45%)
+2019-01-31 11:31:36 1548934296.425281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=813303 total-bytes-write=52 payload-bytes-read=813274/5242880 (15.51%)
+2019-01-31 11:31:36 1548934296.427649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=816789 total-bytes-write=52 payload-bytes-read=816760/5242880 (15.58%)
+2019-01-31 11:31:36 1548934296.488262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=820837 total-bytes-write=52 payload-bytes-read=820808/5242880 (15.66%)
+2019-01-31 11:31:36 1548934296.528414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=841091 total-bytes-write=52 payload-bytes-read=841062/5242880 (16.04%)
+2019-01-31 11:31:36 1548934296.572395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=848561 total-bytes-write=52 payload-bytes-read=848532/5242880 (16.18%)
+2019-01-31 11:31:36 1548934296.572496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=850553 total-bytes-write=52 payload-bytes-read=850524/5242880 (16.22%)
+2019-01-31 11:31:36 1548934296.573182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=854985 total-bytes-write=52 payload-bytes-read=854956/5242880 (16.31%)
+2019-01-31 11:31:36 1548934296.576018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=858471 total-bytes-write=52 payload-bytes-read=858442/5242880 (16.37%)
+2019-01-31 11:31:36 1548934296.577038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=862455 total-bytes-write=52 payload-bytes-read=862426/5242880 (16.45%)
+2019-01-31 11:31:36 1548934296.609688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=866439 total-bytes-write=52 payload-bytes-read=866410/5242880 (16.53%)
+2019-01-31 11:31:36 1548934296.652423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=870871 total-bytes-write=52 payload-bytes-read=870842/5242880 (16.61%)
+2019-01-31 11:31:36 1548934296.696445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=889745 total-bytes-write=52 payload-bytes-read=889716/5242880 (16.97%)
+2019-01-31 11:31:36 1548934296.740432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=901647 total-bytes-write=52 payload-bytes-read=901618/5242880 (17.20%)
+2019-01-31 11:31:36 1548934296.743079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=905133 total-bytes-write=52 payload-bytes-read=905104/5242880 (17.26%)
+2019-01-31 11:31:36 1548934296.745229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=909117 total-bytes-write=52 payload-bytes-read=909088/5242880 (17.34%)
+2019-01-31 11:31:36 1548934296.746829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=913101 total-bytes-write=52 payload-bytes-read=913072/5242880 (17.42%)
+2019-01-31 11:31:36 1548934296.788400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=921517 total-bytes-write=52 payload-bytes-read=921488/5242880 (17.58%)
+2019-01-31 11:31:36 1548934296.832439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=940889 total-bytes-write=52 payload-bytes-read=940860/5242880 (17.95%)
+2019-01-31 11:31:36 1548934296.876410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=956277 total-bytes-write=52 payload-bytes-read=956248/5242880 (18.24%)
+2019-01-31 11:31:36 1548934296.882824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=960759 total-bytes-write=52 payload-bytes-read=960730/5242880 (18.32%)
+2019-01-31 11:31:36 1548934296.913183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=962253 total-bytes-write=52 payload-bytes-read=962224/5242880 (18.35%)
+2019-01-31 11:31:36 1548934296.914553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=965739 total-bytes-write=52 payload-bytes-read=965710/5242880 (18.42%)
+2019-01-31 11:31:36 1548934296.915491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=969673 total-bytes-write=52 payload-bytes-read=969644/5242880 (18.49%)
+2019-01-31 11:31:36 1548934296.916231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=973657 total-bytes-write=52 payload-bytes-read=973628/5242880 (18.57%)
+2019-01-31 11:31:36 1548934296.919576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=978139 total-bytes-write=52 payload-bytes-read=978110/5242880 (18.66%)
+2019-01-31 11:31:36 1548934296.919663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=982123 total-bytes-write=52 payload-bytes-read=982094/5242880 (18.73%)
+2019-01-31 11:31:36 1548934296.919780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=985559 total-bytes-write=52 payload-bytes-read=985530/5242880 (18.80%)
+2019-01-31 11:31:36 1548934296.960060 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=986555 total-bytes-write=52 payload-bytes-read=986526/5242880 (18.82%)
+2019-01-31 11:31:36 1548934296.968669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=992531 total-bytes-write=52 payload-bytes-read=992502/5242880 (18.93%)
+2019-01-31 11:31:36 1548934296.999604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1000449 total-bytes-write=52 payload-bytes-read=1000420/5242880 (19.08%)
+2019-01-31 11:31:37 1548934297.000299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1002441 total-bytes-write=52 payload-bytes-read=1002412/5242880 (19.12%)
+2019-01-31 11:31:37 1548934297.001823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1006923 total-bytes-write=52 payload-bytes-read=1006894/5242880 (19.20%)
+2019-01-31 11:31:37 1548934297.003031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1010409 total-bytes-write=52 payload-bytes-read=1010380/5242880 (19.27%)
+2019-01-31 11:31:37 1548934297.003397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1011405 total-bytes-write=52 payload-bytes-read=1011376/5242880 (19.29%)
+2019-01-31 11:31:37 1548934297.004014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1014891 total-bytes-write=52 payload-bytes-read=1014862/5242880 (19.36%)
+2019-01-31 11:31:37 1548934297.042333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1018825 total-bytes-write=52 payload-bytes-read=1018796/5242880 (19.43%)
+2019-01-31 11:31:37 1548934297.050920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1022809 total-bytes-write=52 payload-bytes-read=1022780/5242880 (19.51%)
+2019-01-31 11:31:37 1548934297.051169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1027291 total-bytes-write=52 payload-bytes-read=1027262/5242880 (19.59%)
+2019-01-31 11:31:37 1548934297.085195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1030777 total-bytes-write=52 payload-bytes-read=1030748/5242880 (19.66%)
+2019-01-31 11:31:37 1548934297.085276 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1034213 total-bytes-write=52 payload-bytes-read=1034184/5242880 (19.73%)
+2019-01-31 11:31:37 1548934297.087375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1036703 total-bytes-write=52 payload-bytes-read=1036674/5242880 (19.77%)
+2019-01-31 11:31:37 1548934297.088929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1040687 total-bytes-write=52 payload-bytes-read=1040658/5242880 (19.85%)
+2019-01-31 11:31:37 1548934297.139779 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1042181 total-bytes-write=52 payload-bytes-read=1042152/5242880 (19.88%)
+2019-01-31 11:31:37 1548934297.459436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1045667 total-bytes-write=52 payload-bytes-read=1045638/5242880 (19.94%)
+2019-01-31 11:31:37 1548934297.476498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1049103 total-bytes-write=52 payload-bytes-read=1049074/5242880 (20.01%)
+2019-01-31 11:31:37 1548934297.484478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1052091 total-bytes-write=52 payload-bytes-read=1052062/5242880 (20.07%)
+2019-01-31 11:31:37 1548934297.492034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1055577 total-bytes-write=52 payload-bytes-read=1055548/5242880 (20.13%)
+2019-01-31 11:31:37 1548934297.521931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1060059 total-bytes-write=52 payload-bytes-read=1060030/5242880 (20.22%)
+2019-01-31 11:31:37 1548934297.522011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1063545 total-bytes-write=52 payload-bytes-read=1063516/5242880 (20.28%)
+2019-01-31 11:31:37 1548934297.526733 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1064541 total-bytes-write=52 payload-bytes-read=1064512/5242880 (20.30%)
+2019-01-31 11:31:37 1548934297.527628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1067977 total-bytes-write=52 payload-bytes-read=1067948/5242880 (20.37%)
+2019-01-31 11:31:37 1548934297.528537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1071961 total-bytes-write=52 payload-bytes-read=1071932/5242880 (20.45%)
+2019-01-31 11:31:37 1548934297.551873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1075447 total-bytes-write=52 payload-bytes-read=1075418/5242880 (20.51%)
+2019-01-31 11:31:37 1548934297.552560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1079431 total-bytes-write=52 payload-bytes-read=1079402/5242880 (20.59%)
+2019-01-31 11:31:37 1548934297.596312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1083863 total-bytes-write=52 payload-bytes-read=1083834/5242880 (20.67%)
+2019-01-31 11:31:37 1548934297.598292 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1091831 total-bytes-write=52 payload-bytes-read=1091802/5242880 (20.82%)
+2019-01-31 11:31:37 1548934297.606077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1095317 total-bytes-write=52 payload-bytes-read=1095288/5242880 (20.89%)
+2019-01-31 11:31:37 1548934297.624558 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1098753 total-bytes-write=52 payload-bytes-read=1098724/5242880 (20.96%)
+2019-01-31 11:31:37 1548934297.719878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1106223 total-bytes-write=52 payload-bytes-read=1106194/5242880 (21.10%)
+2019-01-31 11:31:37 1548934297.773786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1114141 total-bytes-write=52 payload-bytes-read=1114112/5242880 (21.25%)
+2019-01-31 11:31:37 1548934297.773882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1118125 total-bytes-write=52 payload-bytes-read=1118096/5242880 (21.33%)
+2019-01-31 11:31:37 1548934297.774084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1123603 total-bytes-write=52 payload-bytes-read=1123574/5242880 (21.43%)
+2019-01-31 11:31:37 1548934297.774282 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1131023 total-bytes-write=52 payload-bytes-read=1130994/5242880 (21.57%)
+2019-01-31 11:31:37 1548934297.774410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1135505 total-bytes-write=52 payload-bytes-read=1135476/5242880 (21.66%)
+2019-01-31 11:31:37 1548934297.802037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1139489 total-bytes-write=52 payload-bytes-read=1139460/5242880 (21.73%)
+2019-01-31 11:31:37 1548934297.878401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1143473 total-bytes-write=52 payload-bytes-read=1143444/5242880 (21.81%)
+2019-01-31 11:31:37 1548934297.920390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1150893 total-bytes-write=52 payload-bytes-read=1150864/5242880 (21.95%)
+2019-01-31 11:31:37 1548934297.964380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1158363 total-bytes-write=52 payload-bytes-read=1158334/5242880 (22.09%)
+2019-01-31 11:31:38 1548934298.008405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1170265 total-bytes-write=52 payload-bytes-read=1170236/5242880 (22.32%)
+2019-01-31 11:31:38 1548934298.052408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1182665 total-bytes-write=52 payload-bytes-read=1182636/5242880 (22.56%)
+2019-01-31 11:31:38 1548934298.096413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1191131 total-bytes-write=52 payload-bytes-read=1191102/5242880 (22.72%)
+2019-01-31 11:31:38 1548934298.128508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1194617 total-bytes-write=52 payload-bytes-read=1194588/5242880 (22.78%)
+2019-01-31 11:31:38 1548934298.129456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1198551 total-bytes-write=52 payload-bytes-read=1198522/5242880 (22.86%)
+2019-01-31 11:31:38 1548934298.131715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1202535 total-bytes-write=52 payload-bytes-read=1202506/5242880 (22.94%)
+2019-01-31 11:31:38 1548934298.145311 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1206021 total-bytes-write=52 payload-bytes-read=1205992/5242880 (23.00%)
+2019-01-31 11:31:38 1548934298.146136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1210005 total-bytes-write=52 payload-bytes-read=1209976/5242880 (23.08%)
+2019-01-31 11:31:38 1548934298.183693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1213939 total-bytes-write=52 payload-bytes-read=1213910/5242880 (23.15%)
+2019-01-31 11:31:38 1548934298.213356 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1218421 total-bytes-write=52 payload-bytes-read=1218392/5242880 (23.24%)
+2019-01-31 11:31:38 1548934298.214787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1221907 total-bytes-write=52 payload-bytes-read=1221878/5242880 (23.31%)
+2019-01-31 11:31:38 1548934298.226788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1225891 total-bytes-write=52 payload-bytes-read=1225862/5242880 (23.38%)
+2019-01-31 11:31:38 1548934298.227082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1227883 total-bytes-write=52 payload-bytes-read=1227854/5242880 (23.42%)
+2019-01-31 11:31:38 1548934298.229836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1231319 total-bytes-write=52 payload-bytes-read=1231290/5242880 (23.48%)
+2019-01-31 11:31:38 1548934298.266251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1234805 total-bytes-write=52 payload-bytes-read=1234776/5242880 (23.55%)
+2019-01-31 11:31:38 1548934298.299001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1240781 total-bytes-write=52 payload-bytes-read=1240752/5242880 (23.67%)
+2019-01-31 11:31:38 1548934298.302049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1248201 total-bytes-write=52 payload-bytes-read=1248172/5242880 (23.81%)
+2019-01-31 11:31:38 1548934298.311428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1251687 total-bytes-write=52 payload-bytes-read=1251658/5242880 (23.87%)
+2019-01-31 11:31:38 1548934298.313147 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1255671 total-bytes-write=52 payload-bytes-read=1255642/5242880 (23.95%)
+2019-01-31 11:31:38 1548934298.349174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1259157 total-bytes-write=52 payload-bytes-read=1259128/5242880 (24.02%)
+2019-01-31 11:31:38 1548934298.382734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1262593 total-bytes-write=52 payload-bytes-read=1262564/5242880 (24.08%)
+2019-01-31 11:31:38 1548934298.383910 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1266577 total-bytes-write=52 payload-bytes-read=1266548/5242880 (24.16%)
+2019-01-31 11:31:38 1548934298.387957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1269067 total-bytes-write=52 payload-bytes-read=1269038/5242880 (24.20%)
+2019-01-31 11:31:38 1548934298.389164 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1272553 total-bytes-write=52 payload-bytes-read=1272524/5242880 (24.27%)
+2019-01-31 11:31:38 1548934298.395648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1276537 total-bytes-write=52 payload-bytes-read=1276508/5242880 (24.35%)
+2019-01-31 11:31:38 1548934298.403583 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1281467 total-bytes-write=52 payload-bytes-read=1281438/5242880 (24.44%)
+2019-01-31 11:31:38 1548934298.432513 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1284455 total-bytes-write=52 payload-bytes-read=1284426/5242880 (24.50%)
+2019-01-31 11:31:38 1548934298.469837 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1287941 total-bytes-write=52 payload-bytes-read=1287912/5242880 (24.56%)
+2019-01-31 11:31:38 1548934298.470376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1290431 total-bytes-write=52 payload-bytes-read=1290402/5242880 (24.61%)
+2019-01-31 11:31:38 1548934298.472639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1293917 total-bytes-write=52 payload-bytes-read=1293888/5242880 (24.68%)
+2019-01-31 11:31:38 1548934298.473290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1297353 total-bytes-write=52 payload-bytes-read=1297324/5242880 (24.74%)
+2019-01-31 11:31:38 1548934298.477705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1300839 total-bytes-write=52 payload-bytes-read=1300810/5242880 (24.81%)
+2019-01-31 11:31:38 1548934298.479652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1305321 total-bytes-write=52 payload-bytes-read=1305292/5242880 (24.90%)
+2019-01-31 11:31:38 1548934298.514879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1308807 total-bytes-write=52 payload-bytes-read=1308778/5242880 (24.96%)
+2019-01-31 11:31:38 1548934298.515046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1309803 total-bytes-write=52 payload-bytes-read=1309774/5242880 (24.98%)
+2019-01-31 11:31:38 1548934298.553336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1313239 total-bytes-write=52 payload-bytes-read=1313210/5242880 (25.05%)
+2019-01-31 11:31:38 1548934298.555623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1317223 total-bytes-write=52 payload-bytes-read=1317194/5242880 (25.12%)
+2019-01-31 11:31:38 1548934298.556898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1318717 total-bytes-write=52 payload-bytes-read=1318688/5242880 (25.15%)
+2019-01-31 11:31:38 1548934298.557805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1322203 total-bytes-write=52 payload-bytes-read=1322174/5242880 (25.22%)
+2019-01-31 11:31:38 1548934298.559038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1327631 total-bytes-write=52 payload-bytes-read=1327602/5242880 (25.32%)
+2019-01-31 11:31:38 1548934298.656105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1335101 total-bytes-write=52 payload-bytes-read=1335072/5242880 (25.46%)
+2019-01-31 11:31:38 1548934298.656189 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1338587 total-bytes-write=52 payload-bytes-read=1338558/5242880 (25.53%)
+2019-01-31 11:31:38 1548934298.656516 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1343517 total-bytes-write=52 payload-bytes-read=1343488/5242880 (25.62%)
+2019-01-31 11:31:38 1548934298.656785 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1350489 total-bytes-write=52 payload-bytes-read=1350460/5242880 (25.76%)
+2019-01-31 11:31:38 1548934298.657107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1358457 total-bytes-write=52 payload-bytes-read=1358428/5242880 (25.91%)
+2019-01-31 11:31:38 1548934298.739657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1361893 total-bytes-write=52 payload-bytes-read=1361864/5242880 (25.98%)
+2019-01-31 11:31:38 1548934298.821442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1365877 total-bytes-write=52 payload-bytes-read=1365848/5242880 (26.05%)
+2019-01-31 11:31:38 1548934298.863523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1369861 total-bytes-write=52 payload-bytes-read=1369832/5242880 (26.13%)
+2019-01-31 11:31:38 1548934298.913319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1373909 total-bytes-write=52 payload-bytes-read=1373880/5242880 (26.20%)
+2019-01-31 11:31:38 1548934298.956403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1383755 total-bytes-write=52 payload-bytes-read=1383726/5242880 (26.39%)
+2019-01-31 11:31:39 1548934299.002330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1387241 total-bytes-write=52 payload-bytes-read=1387212/5242880 (26.46%)
+2019-01-31 11:31:39 1548934299.003017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1389731 total-bytes-write=52 payload-bytes-read=1389702/5242880 (26.51%)
+2019-01-31 11:31:39 1548934299.003149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1392669 total-bytes-write=52 payload-bytes-read=1392640/5242880 (26.56%)
+2019-01-31 11:31:39 1548934299.032467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1396155 total-bytes-write=52 payload-bytes-read=1396126/5242880 (26.63%)
+2019-01-31 11:31:39 1548934299.085219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1400139 total-bytes-write=52 payload-bytes-read=1400110/5242880 (26.70%)
+2019-01-31 11:31:39 1548934299.086364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1404123 total-bytes-write=52 payload-bytes-read=1404094/5242880 (26.78%)
+2019-01-31 11:31:39 1548934299.128407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1415029 total-bytes-write=52 payload-bytes-read=1415000/5242880 (26.99%)
+2019-01-31 11:31:39 1548934299.172395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1422997 total-bytes-write=52 payload-bytes-read=1422968/5242880 (27.14%)
+2019-01-31 11:31:39 1548934299.172869 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1426931 total-bytes-write=52 payload-bytes-read=1426902/5242880 (27.22%)
+2019-01-31 11:31:39 1548934299.208141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1430915 total-bytes-write=52 payload-bytes-read=1430886/5242880 (27.29%)
+2019-01-31 11:31:39 1548934299.254627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1434899 total-bytes-write=52 payload-bytes-read=1434870/5242880 (27.37%)
+2019-01-31 11:31:39 1548934299.296409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1448295 total-bytes-write=52 payload-bytes-read=1448266/5242880 (27.62%)
+2019-01-31 11:31:39 1548934299.340402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1456761 total-bytes-write=52 payload-bytes-read=1456732/5242880 (27.78%)
+2019-01-31 11:31:39 1548934299.340914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1460197 total-bytes-write=52 payload-bytes-read=1460168/5242880 (27.85%)
+2019-01-31 11:31:39 1548934299.376423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1464181 total-bytes-write=52 payload-bytes-read=1464152/5242880 (27.93%)
+2019-01-31 11:31:39 1548934299.377576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1467667 total-bytes-write=52 payload-bytes-read=1467638/5242880 (27.99%)
+2019-01-31 11:31:39 1548934299.422474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1471651 total-bytes-write=52 payload-bytes-read=1471622/5242880 (28.07%)
+2019-01-31 11:31:39 1548934299.425097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1477577 total-bytes-write=52 payload-bytes-read=1477548/5242880 (28.18%)
+2019-01-31 11:31:39 1548934299.425741 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1481063 total-bytes-write=52 payload-bytes-read=1481034/5242880 (28.25%)
+2019-01-31 11:31:39 1548934299.460605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1485047 total-bytes-write=52 payload-bytes-read=1485018/5242880 (28.32%)
+2019-01-31 11:31:39 1548934299.501801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1489031 total-bytes-write=52 payload-bytes-read=1489002/5242880 (28.40%)
+2019-01-31 11:31:39 1548934299.544439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1506909 total-bytes-write=52 payload-bytes-read=1506880/5242880 (28.74%)
+2019-01-31 11:31:39 1548934299.588391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1514329 total-bytes-write=52 payload-bytes-read=1514300/5242880 (28.88%)
+2019-01-31 11:31:39 1548934299.594375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1518313 total-bytes-write=52 payload-bytes-read=1518284/5242880 (28.96%)
+2019-01-31 11:31:39 1548934299.595865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1524737 total-bytes-write=52 payload-bytes-read=1524708/5242880 (29.08%)
+2019-01-31 11:31:39 1548934299.595973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1528721 total-bytes-write=52 payload-bytes-read=1528692/5242880 (29.16%)
+2019-01-31 11:31:39 1548934299.630066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1532207 total-bytes-write=52 payload-bytes-read=1532178/5242880 (29.22%)
+2019-01-31 11:31:39 1548934299.668621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1535195 total-bytes-write=52 payload-bytes-read=1535166/5242880 (29.28%)
+2019-01-31 11:31:39 1548934299.679107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1538681 total-bytes-write=52 payload-bytes-read=1538652/5242880 (29.35%)
+2019-01-31 11:31:39 1548934299.680390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1543611 total-bytes-write=52 payload-bytes-read=1543582/5242880 (29.44%)
+2019-01-31 11:31:39 1548934299.681475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1551579 total-bytes-write=52 payload-bytes-read=1551550/5242880 (29.59%)
+2019-01-31 11:31:39 1548934299.714269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1555563 total-bytes-write=52 payload-bytes-read=1555534/5242880 (29.67%)
+2019-01-31 11:31:39 1548934299.751586 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1558999 total-bytes-write=52 payload-bytes-read=1558970/5242880 (29.73%)
+2019-01-31 11:31:39 1548934299.752664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1562485 total-bytes-write=52 payload-bytes-read=1562456/5242880 (29.80%)
+2019-01-31 11:31:39 1548934299.764710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1566469 total-bytes-write=52 payload-bytes-read=1566440/5242880 (29.88%)
+2019-01-31 11:31:39 1548934299.765338 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1568461 total-bytes-write=52 payload-bytes-read=1568432/5242880 (29.92%)
+2019-01-31 11:31:39 1548934299.765922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1571947 total-bytes-write=52 payload-bytes-read=1571918/5242880 (29.98%)
+2019-01-31 11:31:39 1548934299.767742 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1575383 total-bytes-write=52 payload-bytes-read=1575354/5242880 (30.05%)
+2019-01-31 11:31:39 1548934299.801303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1578869 total-bytes-write=52 payload-bytes-read=1578840/5242880 (30.11%)
+2019-01-31 11:31:39 1548934299.834623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1582853 total-bytes-write=52 payload-bytes-read=1582824/5242880 (30.19%)
+2019-01-31 11:31:39 1548934299.835163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1583849 total-bytes-write=52 payload-bytes-read=1583820/5242880 (30.21%)
+2019-01-31 11:31:39 1548934299.837450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1588331 total-bytes-write=52 payload-bytes-read=1588302/5242880 (30.29%)
+2019-01-31 11:31:39 1548934299.849249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1591767 total-bytes-write=52 payload-bytes-read=1591738/5242880 (30.36%)
+2019-01-31 11:31:39 1548934299.852374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1595751 total-bytes-write=52 payload-bytes-read=1595722/5242880 (30.44%)
+2019-01-31 11:31:39 1548934299.853557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1599735 total-bytes-write=52 payload-bytes-read=1599706/5242880 (30.51%)
+2019-01-31 11:31:39 1548934299.896380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1604217 total-bytes-write=52 payload-bytes-read=1604188/5242880 (30.60%)
+2019-01-31 11:31:39 1548934299.940407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1616617 total-bytes-write=52 payload-bytes-read=1616588/5242880 (30.83%)
+2019-01-31 11:31:39 1548934299.984417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1633499 total-bytes-write=52 payload-bytes-read=1633470/5242880 (31.16%)
+2019-01-31 11:31:40 1548934300.028414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1645401 total-bytes-write=52 payload-bytes-read=1645372/5242880 (31.38%)
+2019-01-31 11:31:40 1548934300.032856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1649385 total-bytes-write=52 payload-bytes-read=1649356/5242880 (31.46%)
+2019-01-31 11:31:40 1548934300.034498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1653369 total-bytes-write=52 payload-bytes-read=1653340/5242880 (31.53%)
+2019-01-31 11:31:40 1548934300.076445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1662781 total-bytes-write=52 payload-bytes-read=1662752/5242880 (31.71%)
+2019-01-31 11:31:40 1548934300.120427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1677671 total-bytes-write=52 payload-bytes-read=1677642/5242880 (32.00%)
+2019-01-31 11:31:40 1548934300.164412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1691067 total-bytes-write=52 payload-bytes-read=1691038/5242880 (32.25%)
+2019-01-31 11:31:40 1548934300.171159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1694055 total-bytes-write=52 payload-bytes-read=1694026/5242880 (32.31%)
+2019-01-31 11:31:40 1548934300.252965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1694553 total-bytes-write=52 payload-bytes-read=1694524/5242880 (32.32%)
+2019-01-31 11:31:40 1548934300.405441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1697541 total-bytes-write=52 payload-bytes-read=1697512/5242880 (32.38%)
+2019-01-31 11:31:40 1548934300.425467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1701027 total-bytes-write=52 payload-bytes-read=1700998/5242880 (32.44%)
+2019-01-31 11:31:40 1548934300.457628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1702521 total-bytes-write=52 payload-bytes-read=1702492/5242880 (32.47%)
+2019-01-31 11:31:40 1548934300.458452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1705957 total-bytes-write=52 payload-bytes-read=1705928/5242880 (32.54%)
+2019-01-31 11:31:40 1548934300.468202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1706953 total-bytes-write=52 payload-bytes-read=1706924/5242880 (32.56%)
+2019-01-31 11:31:40 1548934300.468819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1710439 total-bytes-write=52 payload-bytes-read=1710410/5242880 (32.62%)
+2019-01-31 11:31:40 1548934300.470042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1716913 total-bytes-write=52 payload-bytes-read=1716884/5242880 (32.75%)
+2019-01-31 11:31:40 1548934300.480181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1720349 total-bytes-write=52 payload-bytes-read=1720320/5242880 (32.81%)
+2019-01-31 11:31:40 1548934300.490705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1723835 total-bytes-write=52 payload-bytes-read=1723806/5242880 (32.88%)
+2019-01-31 11:31:40 1548934300.501812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1727321 total-bytes-write=52 payload-bytes-read=1727292/5242880 (32.95%)
+2019-01-31 11:31:40 1548934300.544396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1735289 total-bytes-write=52 payload-bytes-read=1735260/5242880 (33.10%)
+2019-01-31 11:31:40 1548934300.588428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1760089 total-bytes-write=52 payload-bytes-read=1760060/5242880 (33.57%)
+2019-01-31 11:31:40 1548934300.632395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1765567 total-bytes-write=52 payload-bytes-read=1765538/5242880 (33.67%)
+2019-01-31 11:31:40 1548934300.636247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1769053 total-bytes-write=52 payload-bytes-read=1769024/5242880 (33.74%)
+2019-01-31 11:31:40 1548934300.637839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1772987 total-bytes-write=52 payload-bytes-read=1772958/5242880 (33.82%)
+2019-01-31 11:31:40 1548934300.641649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1776971 total-bytes-write=52 payload-bytes-read=1776942/5242880 (33.89%)
+2019-01-31 11:31:40 1548934300.647620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1780457 total-bytes-write=52 payload-bytes-read=1780428/5242880 (33.96%)
+2019-01-31 11:31:40 1548934300.661848 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1781453 total-bytes-write=52 payload-bytes-read=1781424/5242880 (33.98%)
+2019-01-31 11:31:40 1548934300.662835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1784939 total-bytes-write=52 payload-bytes-read=1784910/5242880 (34.04%)
+2019-01-31 11:31:40 1548934300.667298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1790367 total-bytes-write=52 payload-bytes-read=1790338/5242880 (34.15%)
+2019-01-31 11:31:40 1548934300.681623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1796841 total-bytes-write=52 payload-bytes-read=1796812/5242880 (34.27%)
+2019-01-31 11:31:40 1548934300.710749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1800825 total-bytes-write=52 payload-bytes-read=1800796/5242880 (34.35%)
+2019-01-31 11:31:40 1548934300.719862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1804261 total-bytes-write=52 payload-bytes-read=1804232/5242880 (34.41%)
+2019-01-31 11:31:40 1548934300.720732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1805755 total-bytes-write=52 payload-bytes-read=1805726/5242880 (34.44%)
+2019-01-31 11:31:40 1548934300.727791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1810237 total-bytes-write=52 payload-bytes-read=1810208/5242880 (34.53%)
+2019-01-31 11:31:40 1548934300.727879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1811731 total-bytes-write=52 payload-bytes-read=1811702/5242880 (34.56%)
+2019-01-31 11:31:40 1548934300.746211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1815217 total-bytes-write=52 payload-bytes-read=1815188/5242880 (34.62%)
+2019-01-31 11:31:40 1548934300.747455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1819151 total-bytes-write=52 payload-bytes-read=1819122/5242880 (34.70%)
+2019-01-31 11:31:40 1548934300.750300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1823135 total-bytes-write=52 payload-bytes-read=1823106/5242880 (34.77%)
+2019-01-31 11:31:40 1548934300.764735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1826123 total-bytes-write=52 payload-bytes-read=1826094/5242880 (34.83%)
+2019-01-31 11:31:40 1548934300.766485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1829609 total-bytes-write=52 payload-bytes-read=1829580/5242880 (34.90%)
+2019-01-31 11:31:40 1548934300.798433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1833593 total-bytes-write=52 payload-bytes-read=1833564/5242880 (34.97%)
+2019-01-31 11:31:40 1548934300.810588 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1837029 total-bytes-write=52 payload-bytes-read=1837000/5242880 (35.04%)
+2019-01-31 11:31:40 1548934300.930310 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1840515 total-bytes-write=52 payload-bytes-read=1840486/5242880 (35.10%)
+2019-01-31 11:31:40 1548934300.943580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1844499 total-bytes-write=52 payload-bytes-read=1844470/5242880 (35.18%)
+2019-01-31 11:31:40 1548934300.944159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1849479 total-bytes-write=52 payload-bytes-read=1849450/5242880 (35.28%)
+2019-01-31 11:31:40 1548934300.944422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1856401 total-bytes-write=52 payload-bytes-read=1856372/5242880 (35.41%)
+2019-01-31 11:31:40 1548934300.944560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1860385 total-bytes-write=52 payload-bytes-read=1860356/5242880 (35.48%)
+2019-01-31 11:31:40 1548934300.944770 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1865863 total-bytes-write=52 payload-bytes-read=1865834/5242880 (35.59%)
+2019-01-31 11:31:40 1548934300.978303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1873283 total-bytes-write=52 payload-bytes-read=1873254/5242880 (35.73%)
+2019-01-31 11:31:41 1548934301.070504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1879757 total-bytes-write=52 payload-bytes-read=1879728/5242880 (35.85%)
+2019-01-31 11:31:41 1548934301.070602 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1882745 total-bytes-write=52 payload-bytes-read=1882716/5242880 (35.91%)
+2019-01-31 11:31:41 1548934301.071416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1886181 total-bytes-write=52 payload-bytes-read=1886152/5242880 (35.98%)
+2019-01-31 11:31:41 1548934301.110750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1890165 total-bytes-write=52 payload-bytes-read=1890136/5242880 (36.05%)
+2019-01-31 11:31:41 1548934301.154634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1894149 total-bytes-write=52 payload-bytes-read=1894120/5242880 (36.13%)
+2019-01-31 11:31:41 1548934301.196408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1902067 total-bytes-write=52 payload-bytes-read=1902038/5242880 (36.28%)
+2019-01-31 11:31:41 1548934301.248359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1909537 total-bytes-write=52 payload-bytes-read=1909508/5242880 (36.42%)
+2019-01-31 11:31:41 1548934301.248453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1913521 total-bytes-write=52 payload-bytes-read=1913492/5242880 (36.50%)
+2019-01-31 11:31:41 1548934301.276658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1917455 total-bytes-write=52 payload-bytes-read=1917426/5242880 (36.57%)
+2019-01-31 11:31:41 1548934301.318917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1921937 total-bytes-write=52 payload-bytes-read=1921908/5242880 (36.66%)
+2019-01-31 11:31:41 1548934301.338844 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1928909 total-bytes-write=52 payload-bytes-read=1928880/5242880 (36.79%)
+2019-01-31 11:31:41 1548934301.338967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1934835 total-bytes-write=52 payload-bytes-read=1934806/5242880 (36.90%)
+2019-01-31 11:31:41 1548934301.361967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1938321 total-bytes-write=52 payload-bytes-read=1938292/5242880 (36.97%)
+2019-01-31 11:31:41 1548934301.424848 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1939317 total-bytes-write=52 payload-bytes-read=1939288/5242880 (36.99%)
+2019-01-31 11:31:41 1548934301.425604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1942803 total-bytes-write=52 payload-bytes-read=1942774/5242880 (37.06%)
+2019-01-31 11:31:41 1548934301.426697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1947285 total-bytes-write=52 payload-bytes-read=1947256/5242880 (37.14%)
+2019-01-31 11:31:41 1548934301.427292 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1951717 total-bytes-write=52 payload-bytes-read=1951688/5242880 (37.23%)
+2019-01-31 11:31:41 1548934301.444712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1955203 total-bytes-write=52 payload-bytes-read=1955174/5242880 (37.29%)
+2019-01-31 11:31:41 1548934301.446169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1956199 total-bytes-write=52 payload-bytes-read=1956170/5242880 (37.31%)
+2019-01-31 11:31:41 1548934301.511794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1959187 total-bytes-write=52 payload-bytes-read=1959158/5242880 (37.37%)
+2019-01-31 11:31:41 1548934301.513055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1962673 total-bytes-write=52 payload-bytes-read=1962644/5242880 (37.43%)
+2019-01-31 11:31:41 1548934301.515460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1966607 total-bytes-write=52 payload-bytes-read=1966578/5242880 (37.51%)
+2019-01-31 11:31:41 1548934301.516857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1970591 total-bytes-write=52 payload-bytes-read=1970562/5242880 (37.59%)
+2019-01-31 11:31:41 1548934301.517419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1972085 total-bytes-write=52 payload-bytes-read=1972056/5242880 (37.61%)
+2019-01-31 11:31:41 1548934301.531017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1976567 total-bytes-write=52 payload-bytes-read=1976538/5242880 (37.70%)
+2019-01-31 11:31:41 1548934301.600659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1980053 total-bytes-write=52 payload-bytes-read=1980024/5242880 (37.77%)
+2019-01-31 11:31:41 1548934301.602698 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1981049 total-bytes-write=52 payload-bytes-read=1981020/5242880 (37.78%)
+2019-01-31 11:31:41 1548934301.606351 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1985481 total-bytes-write=52 payload-bytes-read=1985452/5242880 (37.87%)
+2019-01-31 11:31:41 1548934301.607638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1988967 total-bytes-write=52 payload-bytes-read=1988938/5242880 (37.94%)
+2019-01-31 11:31:41 1548934301.609073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1992453 total-bytes-write=52 payload-bytes-read=1992424/5242880 (38.00%)
+2019-01-31 11:31:41 1548934301.652408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1997433 total-bytes-write=52 payload-bytes-read=1997404/5242880 (38.10%)
+2019-01-31 11:31:41 1548934301.696414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2014813 total-bytes-write=52 payload-bytes-read=2014784/5242880 (38.43%)
+2019-01-31 11:31:41 1548934301.740425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2018249 total-bytes-write=52 payload-bytes-read=2018220/5242880 (38.49%)
+2019-01-31 11:31:41 1548934301.741088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2022233 total-bytes-write=52 payload-bytes-read=2022204/5242880 (38.57%)
+2019-01-31 11:31:41 1548934301.770790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2026217 total-bytes-write=52 payload-bytes-read=2026188/5242880 (38.65%)
+2019-01-31 11:31:41 1548934301.812419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2042103 total-bytes-write=52 payload-bytes-read=2042074/5242880 (38.95%)
+2019-01-31 11:31:41 1548934301.856463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2046585 total-bytes-write=52 payload-bytes-read=2046556/5242880 (39.03%)
+2019-01-31 11:31:41 1548934301.856612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2050021 total-bytes-write=52 payload-bytes-read=2049992/5242880 (39.10%)
+2019-01-31 11:31:41 1548934301.861898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2054005 total-bytes-write=52 payload-bytes-read=2053976/5242880 (39.18%)
+2019-01-31 11:31:41 1548934301.870802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2057989 total-bytes-write=52 payload-bytes-read=2057960/5242880 (39.25%)
+2019-01-31 11:31:41 1548934301.912432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2074373 total-bytes-write=52 payload-bytes-read=2074344/5242880 (39.56%)
+2019-01-31 11:31:41 1548934301.960415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2087271 total-bytes-write=52 payload-bytes-read=2087242/5242880 (39.81%)
+2019-01-31 11:31:41 1548934301.965024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2090757 total-bytes-write=52 payload-bytes-read=2090728/5242880 (39.88%)
+2019-01-31 11:31:41 1548934301.991312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2094741 total-bytes-write=52 payload-bytes-read=2094712/5242880 (39.95%)
+2019-01-31 11:31:41 1548934301.993350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2096235 total-bytes-write=52 payload-bytes-read=2096206/5242880 (39.98%)
+2019-01-31 11:31:41 1548934301.995680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2100667 total-bytes-write=52 payload-bytes-read=2100638/5242880 (40.07%)
+2019-01-31 11:31:41 1548934301.996393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2103655 total-bytes-write=52 payload-bytes-read=2103626/5242880 (40.12%)
+2019-01-31 11:31:42 1548934302.031302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2107639 total-bytes-write=52 payload-bytes-read=2107610/5242880 (40.20%)
+2019-01-31 11:31:42 1548934302.039578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2111125 total-bytes-write=52 payload-bytes-read=2111096/5242880 (40.27%)
+2019-01-31 11:31:42 1548934302.041177 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2115059 total-bytes-write=52 payload-bytes-read=2115030/5242880 (40.34%)
+2019-01-31 11:31:42 1548934302.050016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2120039 total-bytes-write=52 payload-bytes-read=2120010/5242880 (40.44%)
+2019-01-31 11:31:42 1548934302.076673 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2124521 total-bytes-write=52 payload-bytes-read=2124492/5242880 (40.52%)
+2019-01-31 11:31:42 1548934302.079521 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2128007 total-bytes-write=52 payload-bytes-read=2127978/5242880 (40.59%)
+2019-01-31 11:31:42 1548934302.080502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2131941 total-bytes-write=52 payload-bytes-read=2131912/5242880 (40.66%)
+2019-01-31 11:31:42 1548934302.111426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2132937 total-bytes-write=52 payload-bytes-read=2132908/5242880 (40.68%)
+2019-01-31 11:31:42 1548934302.112045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2134431 total-bytes-write=52 payload-bytes-read=2134402/5242880 (40.71%)
+2019-01-31 11:31:42 1548934302.122492 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2137917 total-bytes-write=52 payload-bytes-read=2137888/5242880 (40.78%)
+2019-01-31 11:31:42 1548934302.124403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2141901 total-bytes-write=52 payload-bytes-read=2141872/5242880 (40.85%)
+2019-01-31 11:31:42 1548934302.130890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2145885 total-bytes-write=52 payload-bytes-read=2145856/5242880 (40.93%)
+2019-01-31 11:31:42 1548934302.176419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2158285 total-bytes-write=52 payload-bytes-read=2158256/5242880 (41.17%)
+2019-01-31 11:31:42 1548934302.220428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2177657 total-bytes-write=52 payload-bytes-read=2177628/5242880 (41.53%)
+2019-01-31 11:31:42 1548934302.347376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2181093 total-bytes-write=52 payload-bytes-read=2181064/5242880 (41.60%)
+2019-01-31 11:31:42 1548934302.379392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2184579 total-bytes-write=52 payload-bytes-read=2184550/5242880 (41.67%)
+2019-01-31 11:31:42 1548934302.381031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2187567 total-bytes-write=52 payload-bytes-read=2187538/5242880 (41.72%)
+2019-01-31 11:31:42 1548934302.402866 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2191053 total-bytes-write=52 payload-bytes-read=2191024/5242880 (41.79%)
+2019-01-31 11:31:42 1548934302.413110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2195037 total-bytes-write=52 payload-bytes-read=2195008/5242880 (41.87%)
+2019-01-31 11:31:42 1548934302.414320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2202457 total-bytes-write=52 payload-bytes-read=2202428/5242880 (42.01%)
+2019-01-31 11:31:42 1548934302.446051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2202955 total-bytes-write=52 payload-bytes-read=2202926/5242880 (42.02%)
+2019-01-31 11:31:42 1548934302.447168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2208931 total-bytes-write=52 payload-bytes-read=2208902/5242880 (42.13%)
+2019-01-31 11:31:42 1548934302.459059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2212367 total-bytes-write=52 payload-bytes-read=2212338/5242880 (42.20%)
+2019-01-31 11:31:42 1548934302.472089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2215853 total-bytes-write=52 payload-bytes-read=2215824/5242880 (42.26%)
+2019-01-31 11:31:42 1548934302.506348 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2223821 total-bytes-write=52 payload-bytes-read=2223792/5242880 (42.42%)
+2019-01-31 11:31:42 1548934302.506471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2229747 total-bytes-write=52 payload-bytes-read=2229718/5242880 (42.53%)
+2019-01-31 11:31:42 1548934302.508115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2231241 total-bytes-write=52 payload-bytes-read=2231212/5242880 (42.56%)
+2019-01-31 11:31:42 1548934302.550015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2233731 total-bytes-write=52 payload-bytes-read=2233702/5242880 (42.60%)
+2019-01-31 11:31:42 1548934302.563383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2237217 total-bytes-write=52 payload-bytes-read=2237188/5242880 (42.67%)
+2019-01-31 11:31:42 1548934302.572400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2240703 total-bytes-write=52 payload-bytes-read=2240674/5242880 (42.74%)
+2019-01-31 11:31:42 1548934302.616417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2260075 total-bytes-write=52 payload-bytes-read=2260046/5242880 (43.11%)
+2019-01-31 11:31:42 1548934302.664407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2271977 total-bytes-write=52 payload-bytes-read=2271948/5242880 (43.33%)
+2019-01-31 11:31:42 1548934302.671933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2276459 total-bytes-write=52 payload-bytes-read=2276430/5242880 (43.42%)
+2019-01-31 11:31:42 1548934302.671998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2276957 total-bytes-write=52 payload-bytes-read=2276928/5242880 (43.43%)
+2019-01-31 11:31:42 1548934302.713263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2280393 total-bytes-write=52 payload-bytes-read=2280364/5242880 (43.49%)
+2019-01-31 11:31:42 1548934302.718528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2283879 total-bytes-write=52 payload-bytes-read=2283850/5242880 (43.56%)
+2019-01-31 11:31:42 1548934302.719534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2287863 total-bytes-write=52 payload-bytes-read=2287834/5242880 (43.64%)
+2019-01-31 11:31:42 1548934302.721454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2295781 total-bytes-write=52 payload-bytes-read=2295752/5242880 (43.79%)
+2019-01-31 11:31:42 1548934302.721549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2296279 total-bytes-write=52 payload-bytes-read=2296250/5242880 (43.80%)
+2019-01-31 11:31:42 1548934302.727054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2299267 total-bytes-write=52 payload-bytes-read=2299238/5242880 (43.85%)
+2019-01-31 11:31:42 1548934302.741321 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2302753 total-bytes-write=52 payload-bytes-read=2302724/5242880 (43.92%)
+2019-01-31 11:31:42 1548934302.764962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2306737 total-bytes-write=52 payload-bytes-read=2306708/5242880 (44.00%)
+2019-01-31 11:31:42 1548934302.766648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2310173 total-bytes-write=52 payload-bytes-read=2310144/5242880 (44.06%)
+2019-01-31 11:31:42 1548934302.803245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2314157 total-bytes-write=52 payload-bytes-read=2314128/5242880 (44.14%)
+2019-01-31 11:31:42 1548934302.803931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2316647 total-bytes-write=52 payload-bytes-read=2316618/5242880 (44.19%)
+2019-01-31 11:31:42 1548934302.814467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2324117 total-bytes-write=52 payload-bytes-read=2324088/5242880 (44.33%)
+2019-01-31 11:31:42 1548934302.814657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2331537 total-bytes-write=52 payload-bytes-read=2331508/5242880 (44.47%)
+2019-01-31 11:31:42 1548934302.814710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2332533 total-bytes-write=52 payload-bytes-read=2332504/5242880 (44.49%)
+2019-01-31 11:31:42 1548934302.833508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2335521 total-bytes-write=52 payload-bytes-read=2335492/5242880 (44.55%)
+2019-01-31 11:31:42 1548934302.845227 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2339007 total-bytes-write=52 payload-bytes-read=2338978/5242880 (44.61%)
+2019-01-31 11:31:42 1548934302.855265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2342941 total-bytes-write=52 payload-bytes-read=2342912/5242880 (44.69%)
+2019-01-31 11:31:42 1548934302.893852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2346925 total-bytes-write=52 payload-bytes-read=2346896/5242880 (44.76%)
+2019-01-31 11:31:42 1548934302.895117 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2351407 total-bytes-write=52 payload-bytes-read=2351378/5242880 (44.85%)
+2019-01-31 11:31:42 1548934302.895196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2352901 total-bytes-write=52 payload-bytes-read=2352872/5242880 (44.88%)
+2019-01-31 11:31:42 1548934302.900503 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2356387 total-bytes-write=52 payload-bytes-read=2356358/5242880 (44.94%)
+2019-01-31 11:31:42 1548934302.901659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2359325 total-bytes-write=52 payload-bytes-read=2359296/5242880 (45.00%)
+2019-01-31 11:31:42 1548934302.908226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2366297 total-bytes-write=52 payload-bytes-read=2366268/5242880 (45.13%)
+2019-01-31 11:31:42 1548934302.922285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2370281 total-bytes-write=52 payload-bytes-read=2370252/5242880 (45.21%)
+2019-01-31 11:31:42 1548934302.933604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2373767 total-bytes-write=52 payload-bytes-read=2373738/5242880 (45.28%)
+2019-01-31 11:31:42 1548934302.941275 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2377701 total-bytes-write=52 payload-bytes-read=2377672/5242880 (45.35%)
+2019-01-31 11:31:42 1548934302.966261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2381187 total-bytes-write=52 payload-bytes-read=2381158/5242880 (45.42%)
+2019-01-31 11:31:42 1548934302.982083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2382681 total-bytes-write=52 payload-bytes-read=2382652/5242880 (45.45%)
+2019-01-31 11:31:42 1548934302.983671 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2386167 total-bytes-write=52 payload-bytes-read=2386138/5242880 (45.51%)
+2019-01-31 11:31:42 1548934302.986728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2390151 total-bytes-write=52 payload-bytes-read=2390122/5242880 (45.59%)
+2019-01-31 11:31:42 1548934302.997010 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2394583 total-bytes-write=52 payload-bytes-read=2394554/5242880 (45.67%)
+2019-01-31 11:31:42 1548934302.997541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2398069 total-bytes-write=52 payload-bytes-read=2398040/5242880 (45.74%)
+2019-01-31 11:31:43 1548934303.063114 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2399065 total-bytes-write=52 payload-bytes-read=2399036/5242880 (45.76%)
+2019-01-31 11:31:43 1548934303.065324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2402551 total-bytes-write=52 payload-bytes-read=2402522/5242880 (45.82%)
+2019-01-31 11:31:43 1548934303.067250 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2410469 total-bytes-write=52 payload-bytes-read=2410440/5242880 (45.98%)
+2019-01-31 11:31:43 1548934303.067428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2414951 total-bytes-write=52 payload-bytes-read=2414922/5242880 (46.06%)
+2019-01-31 11:31:43 1548934303.067529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2418437 total-bytes-write=52 payload-bytes-read=2418408/5242880 (46.13%)
+2019-01-31 11:31:43 1548934303.069668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2421923 total-bytes-write=52 payload-bytes-read=2421894/5242880 (46.19%)
+2019-01-31 11:31:43 1548934303.112420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2433825 total-bytes-write=52 payload-bytes-read=2433796/5242880 (46.42%)
+2019-01-31 11:31:43 1548934303.156856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2437311 total-bytes-write=52 payload-bytes-read=2437282/5242880 (46.49%)
+2019-01-31 11:31:43 1548934303.157449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2441245 total-bytes-write=52 payload-bytes-read=2441216/5242880 (46.56%)
+2019-01-31 11:31:43 1548934303.159014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2445229 total-bytes-write=52 payload-bytes-read=2445200/5242880 (46.64%)
+2019-01-31 11:31:43 1548934303.160144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2449711 total-bytes-write=52 payload-bytes-read=2449682/5242880 (46.72%)
+2019-01-31 11:31:43 1548934303.160999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2453695 total-bytes-write=52 payload-bytes-read=2453666/5242880 (46.80%)
+2019-01-31 11:31:43 1548934303.161066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2454691 total-bytes-write=52 payload-bytes-read=2454662/5242880 (46.82%)
+2019-01-31 11:31:43 1548934303.205935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2455687 total-bytes-write=52 payload-bytes-read=2455658/5242880 (46.84%)
+2019-01-31 11:31:43 1548934303.248392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2457181 total-bytes-write=52 payload-bytes-read=2457152/5242880 (46.87%)
+2019-01-31 11:31:43 1548934303.390201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2457629 total-bytes-write=52 payload-bytes-read=2457600/5242880 (46.88%)
+2019-01-31 11:31:43 1548934303.435510 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2461115 total-bytes-write=52 payload-bytes-read=2461086/5242880 (46.94%)
+2019-01-31 11:31:43 1548934303.476440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2479491 total-bytes-write=52 payload-bytes-read=2479462/5242880 (47.29%)
+2019-01-31 11:31:43 1548934303.520439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2495377 total-bytes-write=52 payload-bytes-read=2495348/5242880 (47.59%)
+2019-01-31 11:31:43 1548934303.524529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2499361 total-bytes-write=52 payload-bytes-read=2499332/5242880 (47.67%)
+2019-01-31 11:31:43 1548934303.532922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2502847 total-bytes-write=52 payload-bytes-read=2502818/5242880 (47.74%)
+2019-01-31 11:31:43 1548934303.533000 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2503843 total-bytes-write=52 payload-bytes-read=2503814/5242880 (47.76%)
+2019-01-31 11:31:43 1548934303.629046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2506781 total-bytes-write=52 payload-bytes-read=2506752/5242880 (47.81%)
+2019-01-31 11:31:43 1548934303.641269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2510267 total-bytes-write=52 payload-bytes-read=2510238/5242880 (47.88%)
+2019-01-31 11:31:43 1548934303.663986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2513753 total-bytes-write=52 payload-bytes-read=2513724/5242880 (47.95%)
+2019-01-31 11:31:43 1548934303.704437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:31:43 1548934303.748422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2550007 total-bytes-write=52 payload-bytes-read=2549978/5242880 (48.64%)
+2019-01-31 11:31:43 1548934303.792408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2561909 total-bytes-write=52 payload-bytes-read=2561880/5242880 (48.86%)
+2019-01-31 11:31:43 1548934303.823717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2562407 total-bytes-write=52 payload-bytes-read=2562378/5242880 (48.87%)
+2019-01-31 11:31:43 1548934303.826344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2565395 total-bytes-write=52 payload-bytes-read=2565366/5242880 (48.93%)
+2019-01-31 11:31:43 1548934303.837146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2568881 total-bytes-write=52 payload-bytes-read=2568852/5242880 (49.00%)
+2019-01-31 11:31:43 1548934303.837693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2571371 total-bytes-write=52 payload-bytes-read=2571342/5242880 (49.04%)
+2019-01-31 11:31:43 1548934303.854128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2578791 total-bytes-write=52 payload-bytes-read=2578762/5242880 (49.19%)
+2019-01-31 11:31:43 1548934303.865188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2585763 total-bytes-write=52 payload-bytes-read=2585734/5242880 (49.32%)
+2019-01-31 11:31:43 1548934303.876307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2589199 total-bytes-write=52 payload-bytes-read=2589170/5242880 (49.38%)
+2019-01-31 11:31:43 1548934303.897676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2589697 total-bytes-write=52 payload-bytes-read=2589668/5242880 (49.39%)
+2019-01-31 11:31:43 1548934303.898214 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2592187 total-bytes-write=52 payload-bytes-read=2592158/5242880 (49.44%)
+2019-01-31 11:31:43 1548934303.908726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2594179 total-bytes-write=52 payload-bytes-read=2594150/5242880 (49.48%)
+2019-01-31 11:31:43 1548934303.919429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2596669 total-bytes-write=52 payload-bytes-read=2596640/5242880 (49.53%)
+2019-01-31 11:31:43 1548934303.955500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2604139 total-bytes-write=52 payload-bytes-read=2604110/5242880 (49.67%)
+2019-01-31 11:31:43 1548934303.955630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2612057 total-bytes-write=52 payload-bytes-read=2612028/5242880 (49.82%)
+2019-01-31 11:31:43 1548934303.963576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2613551 total-bytes-write=52 payload-bytes-read=2613522/5242880 (49.85%)
+2019-01-31 11:31:43 1548934303.964288 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2617037 total-bytes-write=52 payload-bytes-read=2617008/5242880 (49.92%)
+2019-01-31 11:31:43 1548934303.986045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2618033 total-bytes-write=52 payload-bytes-read=2618004/5242880 (49.93%)
+2019-01-31 11:31:43 1548934303.987333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2621469 total-bytes-write=52 payload-bytes-read=2621440/5242880 (50.00%)
+2019-01-31 11:31:43 1548934303.989098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2627445 total-bytes-write=52 payload-bytes-read=2627416/5242880 (50.11%)
+2019-01-31 11:31:44 1548934304.008504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2630433 total-bytes-write=52 payload-bytes-read=2630404/5242880 (50.17%)
+2019-01-31 11:31:44 1548934304.051477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2633919 total-bytes-write=52 payload-bytes-read=2633890/5242880 (50.24%)
+2019-01-31 11:31:44 1548934304.061238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2637405 total-bytes-write=52 payload-bytes-read=2637376/5242880 (50.30%)
+2019-01-31 11:31:44 1548934304.104434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2648809 total-bytes-write=52 payload-bytes-read=2648780/5242880 (50.52%)
+2019-01-31 11:31:44 1548934304.148427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2661209 total-bytes-write=52 payload-bytes-read=2661180/5242880 (50.76%)
+2019-01-31 11:31:44 1548934304.192432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2667683 total-bytes-write=52 payload-bytes-read=2667654/5242880 (50.88%)
+2019-01-31 11:31:44 1548934304.270284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2669675 total-bytes-write=52 payload-bytes-read=2669646/5242880 (50.92%)
+2019-01-31 11:31:44 1548934304.347256 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2673111 total-bytes-write=52 payload-bytes-read=2673082/5242880 (50.98%)
+2019-01-31 11:31:44 1548934304.348489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2677095 total-bytes-write=52 payload-bytes-read=2677066/5242880 (51.06%)
+2019-01-31 11:31:44 1548934304.348851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2680581 total-bytes-write=52 payload-bytes-read=2680552/5242880 (51.13%)
+2019-01-31 11:31:44 1548934304.363853 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2688001 total-bytes-write=52 payload-bytes-read=2687972/5242880 (51.27%)
+2019-01-31 11:31:44 1548934304.383725 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2688499 total-bytes-write=52 payload-bytes-read=2688470/5242880 (51.28%)
+2019-01-31 11:31:44 1548934304.385957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2693977 total-bytes-write=52 payload-bytes-read=2693948/5242880 (51.38%)
+2019-01-31 11:31:44 1548934304.391816 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2697463 total-bytes-write=52 payload-bytes-read=2697434/5242880 (51.45%)
+2019-01-31 11:31:44 1548934304.393921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:31:44 1548934304.394489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2708867 total-bytes-write=52 payload-bytes-read=2708838/5242880 (51.67%)
+2019-01-31 11:31:44 1548934304.404024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2712353 total-bytes-write=52 payload-bytes-read=2712324/5242880 (51.73%)
+2019-01-31 11:31:44 1548934304.444389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2720271 total-bytes-write=52 payload-bytes-read=2720242/5242880 (51.88%)
+2019-01-31 11:31:44 1548934304.488410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2724255 total-bytes-write=52 payload-bytes-read=2724226/5242880 (51.96%)
+2019-01-31 11:31:44 1548934304.488567 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2726745 total-bytes-write=52 payload-bytes-read=2726716/5242880 (52.01%)
+2019-01-31 11:31:44 1548934304.514562 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2730231 total-bytes-write=52 payload-bytes-read=2730202/5242880 (52.07%)
+2019-01-31 11:31:44 1548934304.551256 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2736157 total-bytes-write=52 payload-bytes-read=2736128/5242880 (52.19%)
+2019-01-31 11:31:44 1548934304.564709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2739643 total-bytes-write=52 payload-bytes-read=2739614/5242880 (52.25%)
+2019-01-31 11:31:44 1548934304.572815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2743129 total-bytes-write=52 payload-bytes-read=2743100/5242880 (52.32%)
+2019-01-31 11:31:44 1548934304.616404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2750101 total-bytes-write=52 payload-bytes-read=2750072/5242880 (52.45%)
+2019-01-31 11:31:44 1548934304.660419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2765987 total-bytes-write=52 payload-bytes-read=2765958/5242880 (52.76%)
+2019-01-31 11:31:44 1548934304.704399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2775897 total-bytes-write=52 payload-bytes-read=2775868/5242880 (52.95%)
+2019-01-31 11:31:44 1548934304.714023 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2779383 total-bytes-write=52 payload-bytes-read=2779354/5242880 (53.01%)
+2019-01-31 11:31:44 1548934304.715573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2783367 total-bytes-write=52 payload-bytes-read=2783338/5242880 (53.09%)
+2019-01-31 11:31:44 1548934304.723085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2788795 total-bytes-write=52 payload-bytes-read=2788766/5242880 (53.19%)
+2019-01-31 11:31:44 1548934304.732745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2792281 total-bytes-write=52 payload-bytes-read=2792252/5242880 (53.26%)
+2019-01-31 11:31:44 1548934304.733634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2795767 total-bytes-write=52 payload-bytes-read=2795738/5242880 (53.32%)
+2019-01-31 11:31:44 1548934304.776439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2808665 total-bytes-write=52 payload-bytes-read=2808636/5242880 (53.57%)
+2019-01-31 11:31:44 1548934304.833132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2810159 total-bytes-write=52 payload-bytes-read=2810130/5242880 (53.60%)
+2019-01-31 11:31:44 1548934304.833893 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2813645 total-bytes-write=52 payload-bytes-read=2813616/5242880 (53.67%)
+2019-01-31 11:31:44 1548934304.835473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2817629 total-bytes-write=52 payload-bytes-read=2817600/5242880 (53.74%)
+2019-01-31 11:31:44 1548934304.836008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2821563 total-bytes-write=52 payload-bytes-read=2821534/5242880 (53.82%)
+2019-01-31 11:31:44 1548934304.847601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2823057 total-bytes-write=52 payload-bytes-read=2823028/5242880 (53.84%)
+2019-01-31 11:31:44 1548934304.847987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2824551 total-bytes-write=52 payload-bytes-read=2824522/5242880 (53.87%)
+2019-01-31 11:31:44 1548934304.888399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2830029 total-bytes-write=52 payload-bytes-read=2830000/5242880 (53.98%)
+2019-01-31 11:31:44 1548934304.932410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2847907 total-bytes-write=52 payload-bytes-read=2847878/5242880 (54.32%)
+2019-01-31 11:31:44 1548934304.976426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2863295 total-bytes-write=52 payload-bytes-read=2863266/5242880 (54.61%)
+2019-01-31 11:31:45 1548934305.029782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2865785 total-bytes-write=52 payload-bytes-read=2865756/5242880 (54.66%)
+2019-01-31 11:31:45 1548934305.052509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2868225 total-bytes-write=52 payload-bytes-read=2868196/5242880 (54.71%)
+2019-01-31 11:31:45 1548934305.063261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2871711 total-bytes-write=52 payload-bytes-read=2871682/5242880 (54.77%)
+2019-01-31 11:31:45 1548934305.063998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2875695 total-bytes-write=52 payload-bytes-read=2875666/5242880 (54.85%)
+2019-01-31 11:31:45 1548934305.075212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2879181 total-bytes-write=52 payload-bytes-read=2879152/5242880 (54.92%)
+2019-01-31 11:31:45 1548934305.108165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2879679 total-bytes-write=52 payload-bytes-read=2879650/5242880 (54.92%)
+2019-01-31 11:31:45 1548934305.111948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2886103 total-bytes-write=52 payload-bytes-read=2886074/5242880 (55.05%)
+2019-01-31 11:31:45 1548934305.153475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2886601 total-bytes-write=52 payload-bytes-read=2886572/5242880 (55.06%)
+2019-01-31 11:31:45 1548934305.154708 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2890087 total-bytes-write=52 payload-bytes-read=2890058/5242880 (55.12%)
+2019-01-31 11:31:45 1548934305.188732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2893573 total-bytes-write=52 payload-bytes-read=2893544/5242880 (55.19%)
+2019-01-31 11:31:45 1548934305.319381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2897059 total-bytes-write=52 payload-bytes-read=2897030/5242880 (55.26%)
+2019-01-31 11:31:45 1548934305.360436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2913443 total-bytes-write=52 payload-bytes-read=2913414/5242880 (55.57%)
+2019-01-31 11:31:45 1548934305.404456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2940733 total-bytes-write=52 payload-bytes-read=2940704/5242880 (56.09%)
+2019-01-31 11:31:45 1548934305.448448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2950643 total-bytes-write=52 payload-bytes-read=2950614/5242880 (56.28%)
+2019-01-31 11:31:45 1548934305.529605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2954627 total-bytes-write=52 payload-bytes-read=2954598/5242880 (56.35%)
+2019-01-31 11:31:45 1548934305.655201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2958611 total-bytes-write=52 payload-bytes-read=2958582/5242880 (56.43%)
+2019-01-31 11:31:45 1548934305.696551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3006767 total-bytes-write=52 payload-bytes-read=3006738/5242880 (57.35%)
+2019-01-31 11:31:45 1548934305.747858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3010253 total-bytes-write=52 payload-bytes-read=3010224/5242880 (57.42%)
+2019-01-31 11:31:45 1548934305.755924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3014685 total-bytes-write=52 payload-bytes-read=3014656/5242880 (57.50%)
+2019-01-31 11:31:45 1548934305.756057 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3019167 total-bytes-write=52 payload-bytes-read=3019138/5242880 (57.59%)
+2019-01-31 11:31:45 1548934305.756215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3025143 total-bytes-write=52 payload-bytes-read=3025114/5242880 (57.70%)
+2019-01-31 11:31:45 1548934305.856315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3026139 total-bytes-write=52 payload-bytes-read=3026110/5242880 (57.72%)
+2019-01-31 11:31:45 1548934305.889666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3028131 total-bytes-write=52 payload-bytes-read=3028102/5242880 (57.76%)
+2019-01-31 11:31:45 1548934305.923568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3031567 total-bytes-write=52 payload-bytes-read=3031538/5242880 (57.82%)
+2019-01-31 11:31:45 1548934305.924063 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3034555 total-bytes-write=52 payload-bytes-read=3034526/5242880 (57.88%)
+2019-01-31 11:31:45 1548934305.935891 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3038041 total-bytes-write=52 payload-bytes-read=3038012/5242880 (57.95%)
+2019-01-31 11:31:45 1548934305.946706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3041527 total-bytes-write=52 payload-bytes-read=3041498/5242880 (58.01%)
+2019-01-31 11:31:45 1548934305.988417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3046507 total-bytes-write=52 payload-bytes-read=3046478/5242880 (58.11%)
+2019-01-31 11:31:46 1548934306.057965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3047005 total-bytes-write=52 payload-bytes-read=3046976/5242880 (58.12%)
+2019-01-31 11:31:46 1548934306.058890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3050441 total-bytes-write=52 payload-bytes-read=3050412/5242880 (58.18%)
+2019-01-31 11:31:46 1548934306.173981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:31:46 1548934306.174229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3063837 total-bytes-write=52 payload-bytes-read=3063808/5242880 (58.44%)
+2019-01-31 11:31:46 1548934306.174384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3068319 total-bytes-write=52 payload-bytes-read=3068290/5242880 (58.52%)
+2019-01-31 11:31:46 1548934306.174499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3070809 total-bytes-write=52 payload-bytes-read=3070780/5242880 (58.57%)
+2019-01-31 11:31:46 1548934306.404077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3074295 total-bytes-write=52 payload-bytes-read=3074266/5242880 (58.64%)
+2019-01-31 11:31:46 1548934306.493456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3074793 total-bytes-write=52 payload-bytes-read=3074764/5242880 (58.65%)
+2019-01-31 11:31:46 1548934306.862388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3077781 total-bytes-write=52 payload-bytes-read=3077752/5242880 (58.70%)
+2019-01-31 11:31:46 1548934306.954784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3081217 total-bytes-write=52 payload-bytes-read=3081188/5242880 (58.77%)
+2019-01-31 11:31:47 1548934307.040575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3084703 total-bytes-write=52 payload-bytes-read=3084674/5242880 (58.84%)
+2019-01-31 11:31:47 1548934307.041956 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3090181 total-bytes-write=52 payload-bytes-read=3090152/5242880 (58.94%)
+2019-01-31 11:31:47 1548934307.130581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3093667 total-bytes-write=52 payload-bytes-read=3093638/5242880 (59.01%)
+2019-01-31 11:31:47 1548934307.132021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3101585 total-bytes-write=52 payload-bytes-read=3101556/5242880 (59.16%)
+2019-01-31 11:31:47 1548934307.132207 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3105569 total-bytes-write=52 payload-bytes-read=3105540/5242880 (59.23%)
+2019-01-31 11:31:47 1548934307.218095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3112989 total-bytes-write=52 payload-bytes-read=3112960/5242880 (59.38%)
+2019-01-31 11:31:47 1548934307.218197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3116475 total-bytes-write=52 payload-bytes-read=3116446/5242880 (59.44%)
+2019-01-31 11:31:47 1548934307.221478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3120957 total-bytes-write=52 payload-bytes-read=3120928/5242880 (59.53%)
+2019-01-31 11:31:47 1548934307.221748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3127929 total-bytes-write=52 payload-bytes-read=3127900/5242880 (59.66%)
+2019-01-31 11:31:47 1548934307.306777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3131863 total-bytes-write=52 payload-bytes-read=3131834/5242880 (59.73%)
+2019-01-31 11:31:47 1548934307.307473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3135847 total-bytes-write=52 payload-bytes-read=3135818/5242880 (59.81%)
+2019-01-31 11:31:47 1548934307.311017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3141823 total-bytes-write=52 payload-bytes-read=3141794/5242880 (59.92%)
+2019-01-31 11:31:47 1548934307.311551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3146753 total-bytes-write=52 payload-bytes-read=3146724/5242880 (60.02%)
+2019-01-31 11:31:47 1548934307.311692 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3150239 total-bytes-write=52 payload-bytes-read=3150210/5242880 (60.09%)
+2019-01-31 11:31:47 1548934307.315454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3153725 total-bytes-write=52 payload-bytes-read=3153696/5242880 (60.15%)
+2019-01-31 11:31:47 1548934307.400103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3157709 total-bytes-write=52 payload-bytes-read=3157680/5242880 (60.23%)
+2019-01-31 11:31:47 1548934307.440442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3182011 total-bytes-write=52 payload-bytes-read=3181982/5242880 (60.69%)
+2019-01-31 11:31:47 1548934307.492986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3189481 total-bytes-write=52 payload-bytes-read=3189452/5242880 (60.83%)
+2019-01-31 11:31:47 1548934307.493237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3195407 total-bytes-write=52 payload-bytes-read=3195378/5242880 (60.95%)
+2019-01-31 11:31:47 1548934307.493379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3200885 total-bytes-write=52 payload-bytes-read=3200856/5242880 (61.05%)
+2019-01-31 11:31:47 1548934307.493615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3206363 total-bytes-write=52 payload-bytes-read=3206334/5242880 (61.16%)
+2019-01-31 11:31:47 1548934307.493899 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3211791 total-bytes-write=52 payload-bytes-read=3211762/5242880 (61.26%)
+2019-01-31 11:31:47 1548934307.493963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3213285 total-bytes-write=52 payload-bytes-read=3213256/5242880 (61.29%)
+2019-01-31 11:31:47 1548934307.581382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3216273 total-bytes-write=52 payload-bytes-read=3216244/5242880 (61.34%)
+2019-01-31 11:31:47 1548934307.582458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3223245 total-bytes-write=52 payload-bytes-read=3223216/5242880 (61.48%)
+2019-01-31 11:31:47 1548934307.582534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3224739 total-bytes-write=52 payload-bytes-read=3224710/5242880 (61.51%)
+2019-01-31 11:31:47 1548934307.583587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3232159 total-bytes-write=52 payload-bytes-read=3232130/5242880 (61.65%)
+2019-01-31 11:31:47 1548934307.583648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3232657 total-bytes-write=52 payload-bytes-read=3232628/5242880 (61.66%)
+2019-01-31 11:31:47 1548934307.586488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3236143 total-bytes-write=52 payload-bytes-read=3236114/5242880 (61.72%)
+2019-01-31 11:31:47 1548934307.588892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3240127 total-bytes-write=52 payload-bytes-read=3240098/5242880 (61.80%)
+2019-01-31 11:31:47 1548934307.670923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3244061 total-bytes-write=52 payload-bytes-read=3244032/5242880 (61.88%)
+2019-01-31 11:31:47 1548934307.671483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3248543 total-bytes-write=52 payload-bytes-read=3248514/5242880 (61.96%)
+2019-01-31 11:31:47 1548934307.672111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3251531 total-bytes-write=52 payload-bytes-read=3251502/5242880 (62.02%)
+2019-01-31 11:31:47 1548934307.674071 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3259001 total-bytes-write=52 payload-bytes-read=3258972/5242880 (62.16%)
+2019-01-31 11:31:47 1548934307.674230 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3263433 total-bytes-write=52 payload-bytes-read=3263404/5242880 (62.24%)
+2019-01-31 11:31:47 1548934307.674551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3267417 total-bytes-write=52 payload-bytes-read=3267388/5242880 (62.32%)
+2019-01-31 11:31:47 1548934307.677748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3271401 total-bytes-write=52 payload-bytes-read=3271372/5242880 (62.40%)
+2019-01-31 11:31:47 1548934307.761078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3275385 total-bytes-write=52 payload-bytes-read=3275356/5242880 (62.47%)
+2019-01-31 11:31:47 1548934307.804468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3304667 total-bytes-write=52 payload-bytes-read=3304638/5242880 (63.03%)
+2019-01-31 11:31:47 1548934307.850963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3308153 total-bytes-write=52 payload-bytes-read=3308124/5242880 (63.10%)
+2019-01-31 11:31:47 1548934307.852487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3313083 total-bytes-write=52 payload-bytes-read=3313054/5242880 (63.19%)
+2019-01-31 11:31:47 1548934307.856794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3317067 total-bytes-write=52 payload-bytes-read=3317038/5242880 (63.27%)
+2019-01-31 11:31:47 1548934307.858132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3320553 total-bytes-write=52 payload-bytes-read=3320524/5242880 (63.33%)
+2019-01-31 11:31:47 1548934307.859001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3324537 total-bytes-write=52 payload-bytes-read=3324508/5242880 (63.41%)
+2019-01-31 11:31:47 1548934307.859274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3329467 total-bytes-write=52 payload-bytes-read=3329438/5242880 (63.50%)
+2019-01-31 11:31:47 1548934307.860414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3336937 total-bytes-write=52 payload-bytes-read=3336908/5242880 (63.65%)
+2019-01-31 11:31:47 1548934307.967928 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3340921 total-bytes-write=52 payload-bytes-read=3340892/5242880 (63.72%)
+2019-01-31 11:31:47 1548934307.974740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3345851 total-bytes-write=52 payload-bytes-read=3345822/5242880 (63.82%)
+2019-01-31 11:31:47 1548934307.974857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3349337 total-bytes-write=52 payload-bytes-read=3349308/5242880 (63.88%)
+2019-01-31 11:31:47 1548934307.987830 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3350831 total-bytes-write=52 payload-bytes-read=3350802/5242880 (63.91%)
+2019-01-31 11:31:48 1548934308.325004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3353819 total-bytes-write=52 payload-bytes-read=3353790/5242880 (63.97%)
+2019-01-31 11:31:48 1548934308.390474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3354317 total-bytes-write=52 payload-bytes-read=3354288/5242880 (63.98%)
+2019-01-31 11:31:48 1548934308.392412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3361737 total-bytes-write=52 payload-bytes-read=3361708/5242880 (64.12%)
+2019-01-31 11:31:48 1548934308.402103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3362235 total-bytes-write=52 payload-bytes-read=3362206/5242880 (64.13%)
+2019-01-31 11:31:48 1548934308.403123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3365721 total-bytes-write=52 payload-bytes-read=3365692/5242880 (64.20%)
+2019-01-31 11:31:48 1548934308.404309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3369769 total-bytes-write=52 payload-bytes-read=3369740/5242880 (64.27%)
+2019-01-31 11:31:48 1548934308.404371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3373191 total-bytes-write=52 payload-bytes-read=3373162/5242880 (64.34%)
+2019-01-31 11:31:48 1548934308.413460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3376627 total-bytes-write=52 payload-bytes-read=3376598/5242880 (64.40%)
+2019-01-31 11:31:48 1548934308.415096 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3384595 total-bytes-write=52 payload-bytes-read=3384566/5242880 (64.56%)
+2019-01-31 11:31:48 1548934308.415479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3387583 total-bytes-write=52 payload-bytes-read=3387554/5242880 (64.61%)
+2019-01-31 11:31:48 1548934308.477386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3391069 total-bytes-write=52 payload-bytes-read=3391040/5242880 (64.68%)
+2019-01-31 11:31:48 1548934308.478355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3395501 total-bytes-write=52 payload-bytes-read=3395472/5242880 (64.76%)
+2019-01-31 11:31:48 1548934308.510341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3401975 total-bytes-write=52 payload-bytes-read=3401946/5242880 (64.89%)
+2019-01-31 11:31:48 1548934308.510659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3409395 total-bytes-write=52 payload-bytes-read=3409366/5242880 (65.03%)
+2019-01-31 11:31:48 1548934308.510795 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3413379 total-bytes-write=52 payload-bytes-read=3413350/5242880 (65.10%)
+2019-01-31 11:31:48 1548934308.518180 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3418359 total-bytes-write=52 payload-bytes-read=3418330/5242880 (65.20%)
+2019-01-31 11:31:48 1548934308.518353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3421845 total-bytes-write=52 payload-bytes-read=3421816/5242880 (65.27%)
+2019-01-31 11:31:48 1548934308.571439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3425281 total-bytes-write=52 payload-bytes-read=3425252/5242880 (65.33%)
+2019-01-31 11:31:48 1548934308.572888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3430759 total-bytes-write=52 payload-bytes-read=3430730/5242880 (65.44%)
+2019-01-31 11:31:48 1548934308.617017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3434245 total-bytes-write=52 payload-bytes-read=3434216/5242880 (65.50%)
+2019-01-31 11:31:48 1548934308.719539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3439723 total-bytes-write=52 payload-bytes-read=3439694/5242880 (65.61%)
+2019-01-31 11:31:48 1548934308.719779 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3446147 total-bytes-write=52 payload-bytes-read=3446118/5242880 (65.73%)
+2019-01-31 11:31:48 1548934308.719896 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3449633 total-bytes-write=52 payload-bytes-read=3449604/5242880 (65.80%)
+2019-01-31 11:31:48 1548934308.747529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3454115 total-bytes-write=52 payload-bytes-read=3454086/5242880 (65.88%)
+2019-01-31 11:31:48 1548934308.747623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3456605 total-bytes-write=52 payload-bytes-read=3456576/5242880 (65.93%)
+2019-01-31 11:31:48 1548934308.747876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3464025 total-bytes-write=52 payload-bytes-read=3463996/5242880 (66.07%)
+2019-01-31 11:31:48 1548934308.748041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3468009 total-bytes-write=52 payload-bytes-read=3467980/5242880 (66.15%)
+2019-01-31 11:31:48 1548934308.748368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3475429 total-bytes-write=52 payload-bytes-read=3475400/5242880 (66.29%)
+2019-01-31 11:31:48 1548934308.748433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3475927 total-bytes-write=52 payload-bytes-read=3475898/5242880 (66.30%)
+2019-01-31 11:31:48 1548934308.798073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3479413 total-bytes-write=52 payload-bytes-read=3479384/5242880 (66.36%)
+2019-01-31 11:31:48 1548934308.811749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:31:48 1548934308.888989 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3485389 total-bytes-write=52 payload-bytes-read=3485360/5242880 (66.48%)
+2019-01-31 11:31:48 1548934308.902074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3489373 total-bytes-write=52 payload-bytes-read=3489344/5242880 (66.55%)
+2019-01-31 11:31:48 1548934308.902799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3492809 total-bytes-write=52 payload-bytes-read=3492780/5242880 (66.62%)
+2019-01-31 11:31:48 1548934308.978471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3497789 total-bytes-write=52 payload-bytes-read=3497760/5242880 (66.71%)
+2019-01-31 11:31:48 1548934308.978550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3498785 total-bytes-write=52 payload-bytes-read=3498756/5242880 (66.73%)
+2019-01-31 11:31:48 1548934308.979041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3501275 total-bytes-write=52 payload-bytes-read=3501246/5242880 (66.78%)
+2019-01-31 11:31:48 1548934308.994604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3508197 total-bytes-write=52 payload-bytes-read=3508168/5242880 (66.91%)
+2019-01-31 11:31:48 1548934308.995513 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3511683 total-bytes-write=52 payload-bytes-read=3511654/5242880 (66.98%)
+2019-01-31 11:31:49 1548934309.069401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3516165 total-bytes-write=52 payload-bytes-read=3516136/5242880 (67.06%)
+2019-01-31 11:31:49 1548934309.069480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3517659 total-bytes-write=52 payload-bytes-read=3517630/5242880 (67.09%)
+2019-01-31 11:31:49 1548934309.070420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3523087 total-bytes-write=52 payload-bytes-read=3523058/5242880 (67.20%)
+2019-01-31 11:31:49 1548934309.084687 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3526573 total-bytes-write=52 payload-bytes-read=3526544/5242880 (67.26%)
+2019-01-31 11:31:49 1548934309.085324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3531553 total-bytes-write=52 payload-bytes-read=3531524/5242880 (67.36%)
+2019-01-31 11:31:49 1548934309.157147 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3535039 total-bytes-write=52 payload-bytes-read=3535010/5242880 (67.42%)
+2019-01-31 11:31:49 1548934309.159551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3542957 total-bytes-write=52 payload-bytes-read=3542928/5242880 (67.58%)
+2019-01-31 11:31:49 1548934309.168428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3544949 total-bytes-write=52 payload-bytes-read=3544920/5242880 (67.61%)
+2019-01-31 11:31:49 1548934309.168851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3547439 total-bytes-write=52 payload-bytes-read=3547410/5242880 (67.66%)
+2019-01-31 11:31:49 1548934309.177860 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3550925 total-bytes-write=52 payload-bytes-read=3550896/5242880 (67.73%)
+2019-01-31 11:31:49 1548934309.245296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3554411 total-bytes-write=52 payload-bytes-read=3554382/5242880 (67.79%)
+2019-01-31 11:31:49 1548934309.288443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3576223 total-bytes-write=52 payload-bytes-read=3576194/5242880 (68.21%)
+2019-01-31 11:31:49 1548934309.338674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3583693 total-bytes-write=52 payload-bytes-read=3583664/5242880 (68.35%)
+2019-01-31 11:31:49 1548934309.338789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3587677 total-bytes-write=52 payload-bytes-read=3587648/5242880 (68.43%)
+2019-01-31 11:31:49 1548934309.348004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3591113 total-bytes-write=52 payload-bytes-read=3591084/5242880 (68.49%)
+2019-01-31 11:31:49 1548934309.355055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3592109 total-bytes-write=52 payload-bytes-read=3592080/5242880 (68.51%)
+2019-01-31 11:31:49 1548934309.356500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3597089 total-bytes-write=52 payload-bytes-read=3597060/5242880 (68.61%)
+2019-01-31 11:31:49 1548934309.374827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3599081 total-bytes-write=52 payload-bytes-read=3599052/5242880 (68.65%)
+2019-01-31 11:31:49 1548934309.489554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3604509 total-bytes-write=52 payload-bytes-read=3604480/5242880 (68.75%)
+2019-01-31 11:31:49 1548934309.489655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3607995 total-bytes-write=52 payload-bytes-read=3607966/5242880 (68.82%)
+2019-01-31 11:31:49 1548934309.545392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3611481 total-bytes-write=52 payload-bytes-read=3611452/5242880 (68.88%)
+2019-01-31 11:31:49 1548934309.588427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3626869 total-bytes-write=52 payload-bytes-read=3626840/5242880 (69.18%)
+2019-01-31 11:31:49 1548934309.632429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3630853 total-bytes-write=52 payload-bytes-read=3630824/5242880 (69.25%)
+2019-01-31 11:31:49 1548934309.638655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3634837 total-bytes-write=52 payload-bytes-read=3634808/5242880 (69.33%)
+2019-01-31 11:31:49 1548934309.680436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3650723 total-bytes-write=52 payload-bytes-read=3650694/5242880 (69.63%)
+2019-01-31 11:31:49 1548934309.724410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3656151 total-bytes-write=52 payload-bytes-read=3656122/5242880 (69.73%)
+2019-01-31 11:31:49 1548934309.730220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3659637 total-bytes-write=52 payload-bytes-read=3659608/5242880 (69.80%)
+2019-01-31 11:31:49 1548934309.742994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3664617 total-bytes-write=52 payload-bytes-read=3664588/5242880 (69.90%)
+2019-01-31 11:31:49 1548934309.835624 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3669099 total-bytes-write=52 payload-bytes-read=3669070/5242880 (69.98%)
+2019-01-31 11:31:49 1548934309.847247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3672535 total-bytes-write=52 payload-bytes-read=3672506/5242880 (70.05%)
+2019-01-31 11:31:49 1548934309.869496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3676021 total-bytes-write=52 payload-bytes-read=3675992/5242880 (70.11%)
+2019-01-31 11:31:49 1548934309.869936 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3680005 total-bytes-write=52 payload-bytes-read=3679976/5242880 (70.19%)
+2019-01-31 11:31:49 1548934309.885795 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3680503 total-bytes-write=52 payload-bytes-read=3680474/5242880 (70.20%)
+2019-01-31 11:31:49 1548934309.886856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3683989 total-bytes-write=52 payload-bytes-read=3683960/5242880 (70.27%)
+2019-01-31 11:31:49 1548934309.887342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3686429 total-bytes-write=52 payload-bytes-read=3686400/5242880 (70.31%)
+2019-01-31 11:31:49 1548934309.902840 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3689915 total-bytes-write=52 payload-bytes-read=3689886/5242880 (70.38%)
+2019-01-31 11:31:49 1548934309.903666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3693899 total-bytes-write=52 payload-bytes-read=3693870/5242880 (70.45%)
+2019-01-31 11:31:49 1548934309.936630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3697883 total-bytes-write=52 payload-bytes-read=3697854/5242880 (70.53%)
+2019-01-31 11:31:49 1548934309.980427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3707793 total-bytes-write=52 payload-bytes-read=3707764/5242880 (70.72%)
+2019-01-31 11:31:50 1548934310.093170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3711777 total-bytes-write=52 payload-bytes-read=3711748/5242880 (70.80%)
+2019-01-31 11:31:50 1548934310.094694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3717753 total-bytes-write=52 payload-bytes-read=3717724/5242880 (70.91%)
+2019-01-31 11:31:50 1548934310.094756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3718749 total-bytes-write=52 payload-bytes-read=3718720/5242880 (70.93%)
+2019-01-31 11:31:50 1548934310.097461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3726169 total-bytes-write=52 payload-bytes-read=3726140/5242880 (71.07%)
+2019-01-31 11:31:50 1548934310.097698 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3730651 total-bytes-write=52 payload-bytes-read=3730622/5242880 (71.16%)
+2019-01-31 11:31:50 1548934310.097843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3734137 total-bytes-write=52 payload-bytes-read=3734108/5242880 (71.22%)
+2019-01-31 11:31:50 1548934310.187490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3737573 total-bytes-write=52 payload-bytes-read=3737544/5242880 (71.29%)
+2019-01-31 11:31:50 1548934310.189412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3745541 total-bytes-write=52 payload-bytes-read=3745512/5242880 (71.44%)
+2019-01-31 11:31:50 1548934310.189475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3746039 total-bytes-write=52 payload-bytes-read=3746010/5242880 (71.45%)
+2019-01-31 11:31:50 1548934310.191781 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3750521 total-bytes-write=52 payload-bytes-read=3750492/5242880 (71.53%)
+2019-01-31 11:31:50 1548934310.192003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3756447 total-bytes-write=52 payload-bytes-read=3756418/5242880 (71.65%)
+2019-01-31 11:31:50 1548934310.193137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3763419 total-bytes-write=52 payload-bytes-read=3763390/5242880 (71.78%)
+2019-01-31 11:31:50 1548934310.241138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3766905 total-bytes-write=52 payload-bytes-read=3766876/5242880 (71.85%)
+2019-01-31 11:31:50 1548934310.317005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3767901 total-bytes-write=52 payload-bytes-read=3767872/5242880 (71.87%)
+2019-01-31 11:31:50 1548934310.318383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3771337 total-bytes-write=52 payload-bytes-read=3771308/5242880 (71.93%)
+2019-01-31 11:31:50 1548934310.328808 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3772831 total-bytes-write=52 payload-bytes-read=3772802/5242880 (71.96%)
+2019-01-31 11:31:50 1548934310.344335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3776317 total-bytes-write=52 payload-bytes-read=3776288/5242880 (72.03%)
+2019-01-31 11:31:50 1548934310.352557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3779803 total-bytes-write=52 payload-bytes-read=3779774/5242880 (72.09%)
+2019-01-31 11:31:50 1548934310.396417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3783787 total-bytes-write=52 payload-bytes-read=3783758/5242880 (72.17%)
+2019-01-31 11:31:50 1548934310.440404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3791705 total-bytes-write=52 payload-bytes-read=3791676/5242880 (72.32%)
+2019-01-31 11:31:50 1548934310.484417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3808587 total-bytes-write=52 payload-bytes-read=3808558/5242880 (72.64%)
+2019-01-31 11:31:50 1548934310.528409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3815559 total-bytes-write=52 payload-bytes-read=3815530/5242880 (72.78%)
+2019-01-31 11:31:50 1548934310.575870 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3816057 total-bytes-write=52 payload-bytes-read=3816028/5242880 (72.78%)
+2019-01-31 11:31:50 1548934310.576506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3819493 total-bytes-write=52 payload-bytes-read=3819464/5242880 (72.85%)
+2019-01-31 11:31:50 1548934310.619776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3819991 total-bytes-write=52 payload-bytes-read=3819962/5242880 (72.86%)
+2019-01-31 11:31:50 1548934310.620492 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3822481 total-bytes-write=52 payload-bytes-read=3822452/5242880 (72.91%)
+2019-01-31 11:31:50 1548934310.667688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3825967 total-bytes-write=52 payload-bytes-read=3825938/5242880 (72.97%)
+2019-01-31 11:31:50 1548934310.699106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3829453 total-bytes-write=52 payload-bytes-read=3829424/5242880 (73.04%)
+2019-01-31 11:31:50 1548934310.740429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3845339 total-bytes-write=52 payload-bytes-read=3845310/5242880 (73.34%)
+2019-01-31 11:31:50 1548934310.784409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3855747 total-bytes-write=52 payload-bytes-read=3855718/5242880 (73.54%)
+2019-01-31 11:31:50 1548934310.818377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3857241 total-bytes-write=52 payload-bytes-read=3857212/5242880 (73.57%)
+2019-01-31 11:31:50 1548934310.819402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3860727 total-bytes-write=52 payload-bytes-read=3860698/5242880 (73.64%)
+2019-01-31 11:31:50 1548934310.905860 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3861723 total-bytes-write=52 payload-bytes-read=3861694/5242880 (73.66%)
+2019-01-31 11:31:50 1548934310.986913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3865209 total-bytes-write=52 payload-bytes-read=3865180/5242880 (73.72%)
+2019-01-31 11:31:51 1548934311.001078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3868645 total-bytes-write=52 payload-bytes-read=3868616/5242880 (73.79%)
+2019-01-31 11:31:51 1548934311.023206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3875617 total-bytes-write=52 payload-bytes-read=3875588/5242880 (73.92%)
+2019-01-31 11:31:51 1548934311.061065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3879103 total-bytes-write=52 payload-bytes-read=3879074/5242880 (73.99%)
+2019-01-31 11:31:51 1548934311.063657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3887021 total-bytes-write=52 payload-bytes-read=3886992/5242880 (74.14%)
+2019-01-31 11:31:51 1548934311.064775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3891005 total-bytes-write=52 payload-bytes-read=3890976/5242880 (74.21%)
+2019-01-31 11:31:51 1548934311.068083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3893993 total-bytes-write=52 payload-bytes-read=3893964/5242880 (74.27%)
+2019-01-31 11:31:51 1548934311.076029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3898973 total-bytes-write=52 payload-bytes-read=3898944/5242880 (74.37%)
+2019-01-31 11:31:51 1548934311.145003 [message] [shd-tgen-driver.c:107] [_tgendriver_onHeartbeat] [driver-heartbeat] bytes-read=14384901 bytes-written=372 current-transfers-succeeded=2 current-transfers-failed=1 total-transfers-succeeded=4 total-transfers-failed=1
+2019-01-31 11:31:51 1548934311.145058 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE moving from state PAYLOAD to state ERROR
+2019-01-31 11:31:51 1548934311.145089 [info] [shd-tgen-transfer.c:371] [_tgentransfer_changeError] transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=ERROR,error=NONE moving from error NONE to error TIMEOUT
+2019-01-31 11:31:51 1548934311.145127 [message] [shd-tgen-transfer.c:1504] [_tgentransfer_log] [transfer-error] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=ERROR,error=TIMEOUT total-bytes-read=3898973 total-bytes-write=52 payload-bytes-read=3898944/5242880 (74.37%) usecs-to-socket-create=15 usecs-to-socket-connect=210 usecs-to-proxy-init=276 usecs-to-proxy-choice=332 usecs-to-proxy-request=391 usecs-to-proxy-response=-1 usecs-to-command=733364 usecs-to-response=1248161 usecs-to-first-byte=1365094 usecs-to-last-byte=-1 usecs-to-checksum=-1
+2019-01-31 11:31:51 1548934311.145240 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:31:51 1548934311.145299 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 12
+2019-01-31 11:31:51 1548934311.145365 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:31:51 1548934311.145427 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:31:51 1548934311.145661 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:31:51 1548934311.145769 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:32:04 1548934324.997178 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:32:04 1548934324.997267 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:32:04 1548934324.997332 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36448 through socks proxy localhost:127.0.0.1:29280 to 4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080 successful
+2019-01-31 11:32:04 1548934324.997419 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:32:04 1548934324.997547 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,7,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:32:05 1548934325.599684 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:32:05 1548934325.599766 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:32:05 1548934325.738548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:32:05 1548934325.823210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=7001 total-bytes-write=52 payload-bytes-read=6972/5242880 (0.13%)
+2019-01-31 11:32:05 1548934325.823985 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=7499 total-bytes-write=52 payload-bytes-read=7470/5242880 (0.14%)
+2019-01-31 11:32:05 1548934325.853941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=10985 total-bytes-write=52 payload-bytes-read=10956/5242880 (0.21%)
+2019-01-31 11:32:05 1548934325.859889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=14969 total-bytes-write=52 payload-bytes-read=14940/5242880 (0.28%)
+2019-01-31 11:32:05 1548934325.862885 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=18903 total-bytes-write=52 payload-bytes-read=18874/5242880 (0.36%)
+2019-01-31 11:32:05 1548934325.913252 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:32:05 1548934325.949431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=22887 total-bytes-write=52 payload-bytes-read=22858/5242880 (0.44%)
+2019-01-31 11:32:05 1548934325.995648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=26373 total-bytes-write=52 payload-bytes-read=26344/5242880 (0.50%)
+2019-01-31 11:32:05 1548934325.997641 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=29859 total-bytes-write=52 payload-bytes-read=29830/5242880 (0.57%)
+2019-01-31 11:32:06 1548934326.020009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=33793 total-bytes-write=52 payload-bytes-read=33764/5242880 (0.64%)
+2019-01-31 11:32:06 1548934326.021212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=37777 total-bytes-write=52 payload-bytes-read=37748/5242880 (0.72%)
+2019-01-31 11:32:06 1548934326.021560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=41761 total-bytes-write=52 payload-bytes-read=41732/5242880 (0.80%)
+2019-01-31 11:32:06 1548934326.033964 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=42259 total-bytes-write=52 payload-bytes-read=42230/5242880 (0.81%)
+2019-01-31 11:32:06 1548934326.081088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=46741 total-bytes-write=52 payload-bytes-read=46712/5242880 (0.89%)
+2019-01-31 11:32:06 1548934326.081168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=47239 total-bytes-write=52 payload-bytes-read=47210/5242880 (0.90%)
+2019-01-31 11:32:06 1548934326.115699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=48733 total-bytes-write=52 payload-bytes-read=48704/5242880 (0.93%)
+2019-01-31 11:32:06 1548934326.153471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=52169 total-bytes-write=52 payload-bytes-read=52140/5242880 (0.99%)
+2019-01-31 11:32:06 1548934326.154317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=55655 total-bytes-write=52 payload-bytes-read=55626/5242880 (1.06%)
+2019-01-31 11:32:06 1548934326.155736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=56651 total-bytes-write=52 payload-bytes-read=56622/5242880 (1.08%)
+2019-01-31 11:32:06 1548934326.170448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=60137 total-bytes-write=52 payload-bytes-read=60108/5242880 (1.15%)
+2019-01-31 11:32:06 1548934326.189337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=64121 total-bytes-write=52 payload-bytes-read=64092/5242880 (1.22%)
+2019-01-31 11:32:06 1548934326.192337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=68055 total-bytes-write=52 payload-bytes-read=68026/5242880 (1.30%)
+2019-01-31 11:32:06 1548934326.242200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=71541 total-bytes-write=52 payload-bytes-read=71512/5242880 (1.36%)
+2019-01-31 11:32:06 1548934326.247951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=72537 total-bytes-write=52 payload-bytes-read=72508/5242880 (1.38%)
+2019-01-31 11:32:06 1548934326.248019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=73035 total-bytes-write=52 payload-bytes-read=73006/5242880 (1.39%)
+2019-01-31 11:32:06 1548934326.254075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=76023 total-bytes-write=52 payload-bytes-read=75994/5242880 (1.45%)
+2019-01-31 11:32:06 1548934326.258966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=79509 total-bytes-write=52 payload-bytes-read=79480/5242880 (1.52%)
+2019-01-31 11:32:06 1548934326.260705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=82945 total-bytes-write=52 payload-bytes-read=82916/5242880 (1.58%)
+2019-01-31 11:32:06 1548934326.270441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=86929 total-bytes-write=52 payload-bytes-read=86900/5242880 (1.66%)
+2019-01-31 11:32:06 1548934326.273761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=90415 total-bytes-write=52 payload-bytes-read=90386/5242880 (1.72%)
+2019-01-31 11:32:06 1548934326.305955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=90913 total-bytes-write=52 payload-bytes-read=90884/5242880 (1.73%)
+2019-01-31 11:32:06 1548934326.312542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=94399 total-bytes-write=52 payload-bytes-read=94370/5242880 (1.80%)
+2019-01-31 11:32:06 1548934326.347371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=95395 total-bytes-write=52 payload-bytes-read=95366/5242880 (1.82%)
+2019-01-31 11:32:06 1548934326.384120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=98333 total-bytes-write=52 payload-bytes-read=98304/5242880 (1.88%)
+2019-01-31 11:32:06 1548934326.415835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=100823 total-bytes-write=52 payload-bytes-read=100794/5242880 (1.92%)
+2019-01-31 11:32:06 1548934326.419344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=104309 total-bytes-write=52 payload-bytes-read=104280/5242880 (1.99%)
+2019-01-31 11:32:06 1548934326.422468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=108293 total-bytes-write=52 payload-bytes-read=108264/5242880 (2.06%)
+2019-01-31 11:32:06 1548934326.425353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=112277 total-bytes-write=52 payload-bytes-read=112248/5242880 (2.14%)
+2019-01-31 11:32:06 1548934326.468451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=123183 total-bytes-write=52 payload-bytes-read=123154/5242880 (2.35%)
+2019-01-31 11:32:06 1548934326.548316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=125673 total-bytes-write=52 payload-bytes-read=125644/5242880 (2.40%)
+2019-01-31 11:32:06 1548934326.549827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=129159 total-bytes-write=52 payload-bytes-read=129130/5242880 (2.46%)
+2019-01-31 11:32:06 1548934326.550219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=130155 total-bytes-write=52 payload-bytes-read=130126/5242880 (2.48%)
+2019-01-31 11:32:06 1548934326.551880 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=133591 total-bytes-write=52 payload-bytes-read=133562/5242880 (2.55%)
+2019-01-31 11:32:06 1548934326.552824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=137575 total-bytes-write=52 payload-bytes-read=137546/5242880 (2.62%)
+2019-01-31 11:32:06 1548934326.552918 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=141559 total-bytes-write=52 payload-bytes-read=141530/5242880 (2.70%)
+2019-01-31 11:32:06 1548934326.596411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=146041 total-bytes-write=52 payload-bytes-read=146012/5242880 (2.78%)
+2019-01-31 11:32:06 1548934326.642100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=147983 total-bytes-write=52 payload-bytes-read=147954/5242880 (2.82%)
+2019-01-31 11:32:06 1548934326.671577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=151469 total-bytes-write=52 payload-bytes-read=151440/5242880 (2.89%)
+2019-01-31 11:32:06 1548934326.678598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=154955 total-bytes-write=52 payload-bytes-read=154926/5242880 (2.95%)
+2019-01-31 11:32:06 1548934326.720414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=172833 total-bytes-write=52 payload-bytes-read=172804/5242880 (3.30%)
+2019-01-31 11:32:06 1548934326.814062 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=175323 total-bytes-write=52 payload-bytes-read=175294/5242880 (3.34%)
+2019-01-31 11:32:06 1548934326.816948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=178809 total-bytes-write=52 payload-bytes-read=178780/5242880 (3.41%)
+2019-01-31 11:32:06 1548934326.817486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=180751 total-bytes-write=52 payload-bytes-read=180722/5242880 (3.45%)
+2019-01-31 11:32:06 1548934326.818948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=184237 total-bytes-write=52 payload-bytes-read=184208/5242880 (3.51%)
+2019-01-31 11:32:06 1548934326.819678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=188221 total-bytes-write=52 payload-bytes-read=188192/5242880 (3.59%)
+2019-01-31 11:32:06 1548934326.820000 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=192205 total-bytes-write=52 payload-bytes-read=192176/5242880 (3.67%)
+2019-01-31 11:32:06 1548934326.860384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=196637 total-bytes-write=52 payload-bytes-read=196608/5242880 (3.75%)
+2019-01-31 11:32:06 1548934326.904381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=200621 total-bytes-write=52 payload-bytes-read=200592/5242880 (3.83%)
+2019-01-31 11:32:06 1548934326.939684 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=204107 total-bytes-write=52 payload-bytes-read=204078/5242880 (3.89%)
+2019-01-31 11:32:06 1548934326.946510 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=204605 total-bytes-write=52 payload-bytes-read=204576/5242880 (3.90%)
+2019-01-31 11:32:06 1548934326.947068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=208091 total-bytes-write=52 payload-bytes-read=208062/5242880 (3.97%)
+2019-01-31 11:32:06 1548934326.949310 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=215013 total-bytes-write=52 payload-bytes-read=214984/5242880 (4.10%)
+2019-01-31 11:32:06 1548934326.949374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=215511 total-bytes-write=52 payload-bytes-read=215482/5242880 (4.11%)
+2019-01-31 11:32:06 1548934326.962039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=219495 total-bytes-write=52 payload-bytes-read=219466/5242880 (4.19%)
+2019-01-31 11:32:06 1548934326.962303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=221487 total-bytes-write=52 payload-bytes-read=221458/5242880 (4.22%)
+2019-01-31 11:32:06 1548934326.964914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=228459 total-bytes-write=52 payload-bytes-read=228430/5242880 (4.36%)
+2019-01-31 11:32:06 1548934326.964977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=228957 total-bytes-write=52 payload-bytes-read=228928/5242880 (4.37%)
+2019-01-31 11:32:06 1548934326.978814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=232891 total-bytes-write=52 payload-bytes-read=232862/5242880 (4.44%)
+2019-01-31 11:32:06 1548934326.987181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=234883 total-bytes-write=52 payload-bytes-read=234854/5242880 (4.48%)
+2019-01-31 11:32:07 1548934327.080614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=238369 total-bytes-write=52 payload-bytes-read=238340/5242880 (4.55%)
+2019-01-31 11:32:07 1548934327.096113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=239365 total-bytes-write=52 payload-bytes-read=239336/5242880 (4.56%)
+2019-01-31 11:32:07 1548934327.097139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=243847 total-bytes-write=52 payload-bytes-read=243818/5242880 (4.65%)
+2019-01-31 11:32:07 1548934327.098329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=250769 total-bytes-write=52 payload-bytes-read=250740/5242880 (4.78%)
+2019-01-31 11:32:07 1548934327.098396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:32:07 1548934327.099324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=255251 total-bytes-write=52 payload-bytes-read=255222/5242880 (4.87%)
+2019-01-31 11:32:07 1548934327.099410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=259235 total-bytes-write=52 payload-bytes-read=259206/5242880 (4.94%)
+2019-01-31 11:32:07 1548934327.140389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=267153 total-bytes-write=52 payload-bytes-read=267124/5242880 (5.09%)
+2019-01-31 11:32:07 1548934327.204222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=269145 total-bytes-write=52 payload-bytes-read=269116/5242880 (5.13%)
+2019-01-31 11:32:07 1548934327.242656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=272631 total-bytes-write=52 payload-bytes-read=272602/5242880 (5.20%)
+2019-01-31 11:32:07 1548934327.248543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=276615 total-bytes-write=52 payload-bytes-read=276586/5242880 (5.28%)
+2019-01-31 11:32:07 1548934327.248690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=283537 total-bytes-write=52 payload-bytes-read=283508/5242880 (5.41%)
+2019-01-31 11:32:07 1548934327.248761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=287521 total-bytes-write=52 payload-bytes-read=287492/5242880 (5.48%)
+2019-01-31 11:32:07 1548934327.248822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=288019 total-bytes-write=52 payload-bytes-read=287990/5242880 (5.49%)
+2019-01-31 11:32:07 1548934327.249670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:32:07 1548934327.249758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=295937 total-bytes-write=52 payload-bytes-read=295908/5242880 (5.64%)
+2019-01-31 11:32:07 1548934327.249869 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=299423 total-bytes-write=52 payload-bytes-read=299394/5242880 (5.71%)
+2019-01-31 11:32:07 1548934327.250536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=299921 total-bytes-write=52 payload-bytes-read=299892/5242880 (5.72%)
+2019-01-31 11:32:07 1548934327.292015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=303905 total-bytes-write=52 payload-bytes-read=303876/5242880 (5.80%)
+2019-01-31 11:32:07 1548934327.362274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=306395 total-bytes-write=52 payload-bytes-read=306366/5242880 (5.84%)
+2019-01-31 11:32:07 1548934327.363445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=309881 total-bytes-write=52 payload-bytes-read=309852/5242880 (5.91%)
+2019-01-31 11:32:07 1548934327.370166 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=313815 total-bytes-write=52 payload-bytes-read=313786/5242880 (5.98%)
+2019-01-31 11:32:07 1548934327.375505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=314811 total-bytes-write=52 payload-bytes-read=314782/5242880 (6.00%)
+2019-01-31 11:32:07 1548934327.377082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=321783 total-bytes-write=52 payload-bytes-read=321754/5242880 (6.14%)
+2019-01-31 11:32:07 1548934327.377170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=322281 total-bytes-write=52 payload-bytes-read=322252/5242880 (6.15%)
+2019-01-31 11:32:07 1548934327.392820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=326265 total-bytes-write=52 payload-bytes-read=326236/5242880 (6.22%)
+2019-01-31 11:32:07 1548934327.393341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=330199 total-bytes-write=52 payload-bytes-read=330170/5242880 (6.30%)
+2019-01-31 11:32:07 1548934327.393426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=330697 total-bytes-write=52 payload-bytes-read=330668/5242880 (6.31%)
+2019-01-31 11:32:07 1548934327.405706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=331195 total-bytes-write=52 payload-bytes-read=331166/5242880 (6.32%)
+2019-01-31 11:32:07 1548934327.407385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=334681 total-bytes-write=52 payload-bytes-read=334652/5242880 (6.38%)
+2019-01-31 11:32:07 1548934327.407642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=338167 total-bytes-write=52 payload-bytes-read=338138/5242880 (6.45%)
+2019-01-31 11:32:07 1548934327.448392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=342649 total-bytes-write=52 payload-bytes-read=342620/5242880 (6.53%)
+2019-01-31 11:32:07 1548934327.492397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=346085 total-bytes-write=52 payload-bytes-read=346056/5242880 (6.60%)
+2019-01-31 11:32:07 1548934327.534885 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=350069 total-bytes-write=52 payload-bytes-read=350040/5242880 (6.68%)
+2019-01-31 11:32:07 1548934327.535442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=353555 total-bytes-write=52 payload-bytes-read=353526/5242880 (6.74%)
+2019-01-31 11:32:07 1548934327.554205 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=357041 total-bytes-write=52 payload-bytes-read=357012/5242880 (6.81%)
+2019-01-31 11:32:07 1548934327.596431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=371931 total-bytes-write=52 payload-bytes-read=371902/5242880 (7.09%)
+2019-01-31 11:32:07 1548934327.640433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=388315 total-bytes-write=52 payload-bytes-read=388286/5242880 (7.41%)
+2019-01-31 11:32:07 1548934327.684385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=389311 total-bytes-write=52 payload-bytes-read=389282/5242880 (7.42%)
+2019-01-31 11:32:07 1548934327.719575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=391801 total-bytes-write=52 payload-bytes-read=391772/5242880 (7.47%)
+2019-01-31 11:32:07 1548934327.741361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=395237 total-bytes-write=52 payload-bytes-read=395208/5242880 (7.54%)
+2019-01-31 11:32:07 1548934327.780536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=396731 total-bytes-write=52 payload-bytes-read=396702/5242880 (7.57%)
+2019-01-31 11:32:07 1548934327.785123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=400217 total-bytes-write=52 payload-bytes-read=400188/5242880 (7.63%)
+2019-01-31 11:32:07 1548934327.787807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=403703 total-bytes-write=52 payload-bytes-read=403674/5242880 (7.70%)
+2019-01-31 11:32:07 1548934327.828459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=432487 total-bytes-write=52 payload-bytes-read=432458/5242880 (8.25%)
+2019-01-31 11:32:07 1548934327.872406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=440953 total-bytes-write=52 payload-bytes-read=440924/5242880 (8.41%)
+2019-01-31 11:32:07 1548934327.902326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=444389 total-bytes-write=52 payload-bytes-read=444360/5242880 (8.48%)
+2019-01-31 11:32:07 1548934327.915431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=445385 total-bytes-write=52 payload-bytes-read=445356/5242880 (8.49%)
+2019-01-31 11:32:07 1548934327.930257 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=449369 total-bytes-write=52 payload-bytes-read=449340/5242880 (8.57%)
+2019-01-31 11:32:07 1548934327.930382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=456839 total-bytes-write=52 payload-bytes-read=456810/5242880 (8.71%)
+2019-01-31 11:32:07 1548934327.950300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=460773 total-bytes-write=52 payload-bytes-read=460744/5242880 (8.79%)
+2019-01-31 11:32:07 1548934327.950369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=462267 total-bytes-write=52 payload-bytes-read=462238/5242880 (8.82%)
+2019-01-31 11:32:07 1548934327.956969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=465753 total-bytes-write=52 payload-bytes-read=465724/5242880 (8.88%)
+2019-01-31 11:32:07 1548934327.961736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=469737 total-bytes-write=52 payload-bytes-read=469708/5242880 (8.96%)
+2019-01-31 11:32:07 1548934327.963710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=473223 total-bytes-write=52 payload-bytes-read=473194/5242880 (9.03%)
+2019-01-31 11:32:08 1548934328.000384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=477157 total-bytes-write=52 payload-bytes-read=477128/5242880 (9.10%)
+2019-01-31 11:32:08 1548934328.005065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=480643 total-bytes-write=52 payload-bytes-read=480614/5242880 (9.17%)
+2019-01-31 11:32:08 1548934328.005448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=481141 total-bytes-write=52 payload-bytes-read=481112/5242880 (9.18%)
+2019-01-31 11:32:08 1548934328.015960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=482635 total-bytes-write=52 payload-bytes-read=482606/5242880 (9.20%)
+2019-01-31 11:32:08 1548934328.025218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=486121 total-bytes-write=52 payload-bytes-read=486092/5242880 (9.27%)
+2019-01-31 11:32:08 1548934328.028065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=489607 total-bytes-write=52 payload-bytes-read=489578/5242880 (9.34%)
+2019-01-31 11:32:08 1548934328.068402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=499517 total-bytes-write=52 payload-bytes-read=499488/5242880 (9.53%)
+2019-01-31 11:32:08 1548934328.112400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=511419 total-bytes-write=52 payload-bytes-read=511390/5242880 (9.75%)
+2019-01-31 11:32:08 1548934328.156373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=514905 total-bytes-write=52 payload-bytes-read=514876/5242880 (9.82%)
+2019-01-31 11:32:08 1548934328.206580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=518889 total-bytes-write=52 payload-bytes-read=518860/5242880 (9.90%)
+2019-01-31 11:32:08 1548934328.206724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=525313 total-bytes-write=52 payload-bytes-read=525284/5242880 (10.02%)
+2019-01-31 11:32:08 1548934328.206848 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=532285 total-bytes-write=52 payload-bytes-read=532256/5242880 (10.15%)
+2019-01-31 11:32:08 1548934328.206914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=535771 total-bytes-write=52 payload-bytes-read=535742/5242880 (10.22%)
+2019-01-31 11:32:08 1548934328.246773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=536767 total-bytes-write=52 payload-bytes-read=536738/5242880 (10.24%)
+2019-01-31 11:32:08 1548934328.332546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=540253 total-bytes-write=52 payload-bytes-read=540224/5242880 (10.30%)
+2019-01-31 11:32:08 1548934328.420262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=543689 total-bytes-write=52 payload-bytes-read=543660/5242880 (10.37%)
+2019-01-31 11:32:08 1548934328.441724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=545681 total-bytes-write=52 payload-bytes-read=545652/5242880 (10.41%)
+2019-01-31 11:32:08 1548934328.443825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=552653 total-bytes-write=52 payload-bytes-read=552624/5242880 (10.54%)
+2019-01-31 11:32:08 1548934328.453360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=556637 total-bytes-write=52 payload-bytes-read=556608/5242880 (10.62%)
+2019-01-31 11:32:08 1548934328.455364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=560571 total-bytes-write=52 payload-bytes-read=560542/5242880 (10.69%)
+2019-01-31 11:32:08 1548934328.455862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=564057 total-bytes-write=52 payload-bytes-read=564028/5242880 (10.76%)
+2019-01-31 11:32:08 1548934328.458612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=568041 total-bytes-write=52 payload-bytes-read=568012/5242880 (10.83%)
+2019-01-31 11:32:08 1548934328.477616 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=572025 total-bytes-write=52 payload-bytes-read=571996/5242880 (10.91%)
+2019-01-31 11:32:08 1548934328.520430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=591845 total-bytes-write=52 payload-bytes-read=591816/5242880 (11.29%)
+2019-01-31 11:32:08 1548934328.564391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=595829 total-bytes-write=52 payload-bytes-read=595800/5242880 (11.36%)
+2019-01-31 11:32:08 1548934328.576605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=596825 total-bytes-write=52 payload-bytes-read=596796/5242880 (11.38%)
+2019-01-31 11:32:08 1548934328.578825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=600311 total-bytes-write=52 payload-bytes-read=600282/5242880 (11.45%)
+2019-01-31 11:32:08 1548934328.582372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=604295 total-bytes-write=52 payload-bytes-read=604266/5242880 (11.53%)
+2019-01-31 11:32:08 1548934328.584105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=606237 total-bytes-write=52 payload-bytes-read=606208/5242880 (11.56%)
+2019-01-31 11:32:08 1548934328.584864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=609723 total-bytes-write=52 payload-bytes-read=609694/5242880 (11.63%)
+2019-01-31 11:32:08 1548934328.586070 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=610719 total-bytes-write=52 payload-bytes-read=610690/5242880 (11.65%)
+2019-01-31 11:32:08 1548934328.608754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=614205 total-bytes-write=52 payload-bytes-read=614176/5242880 (11.71%)
+2019-01-31 11:32:08 1548934328.622077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=620679 total-bytes-write=52 payload-bytes-read=620650/5242880 (11.84%)
+2019-01-31 11:32:08 1548934328.642188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=621177 total-bytes-write=52 payload-bytes-read=621148/5242880 (11.85%)
+2019-01-31 11:32:08 1548934328.644265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=624613 total-bytes-write=52 payload-bytes-read=624584/5242880 (11.91%)
+2019-01-31 11:32:08 1548934328.683002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=626107 total-bytes-write=52 payload-bytes-read=626078/5242880 (11.94%)
+2019-01-31 11:32:08 1548934328.683407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=629593 total-bytes-write=52 payload-bytes-read=629564/5242880 (12.01%)
+2019-01-31 11:32:08 1548934328.683652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=630091 total-bytes-write=52 payload-bytes-read=630062/5242880 (12.02%)
+2019-01-31 11:32:08 1548934328.701639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=633577 total-bytes-write=52 payload-bytes-read=633548/5242880 (12.08%)
+2019-01-31 11:32:08 1548934328.723819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=637063 total-bytes-write=52 payload-bytes-read=637034/5242880 (12.15%)
+2019-01-31 11:32:08 1548934328.768389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=638557 total-bytes-write=52 payload-bytes-read=638528/5242880 (12.18%)
+2019-01-31 11:32:08 1548934328.772507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=641993 total-bytes-write=52 payload-bytes-read=641964/5242880 (12.24%)
+2019-01-31 11:32:08 1548934328.778347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=645479 total-bytes-write=52 payload-bytes-read=645450/5242880 (12.31%)
+2019-01-31 11:32:08 1548934328.820424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=670329 total-bytes-write=52 payload-bytes-read=670300/5242880 (12.78%)
+2019-01-31 11:32:08 1548934328.864412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=690647 total-bytes-write=52 payload-bytes-read=690618/5242880 (13.17%)
+2019-01-31 11:32:08 1548934328.894263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=694631 total-bytes-write=52 payload-bytes-read=694602/5242880 (13.25%)
+2019-01-31 11:32:08 1548934328.895716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=698615 total-bytes-write=52 payload-bytes-read=698586/5242880 (13.32%)
+2019-01-31 11:32:08 1548934328.936409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=714003 total-bytes-write=52 payload-bytes-read=713974/5242880 (13.62%)
+2019-01-31 11:32:08 1548934328.980430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=735865 total-bytes-write=52 payload-bytes-read=735836/5242880 (14.03%)
+2019-01-31 11:32:09 1548934329.024430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=755187 total-bytes-write=52 payload-bytes-read=755158/5242880 (14.40%)
+2019-01-31 11:32:09 1548934329.057934 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=758673 total-bytes-write=52 payload-bytes-read=758644/5242880 (14.47%)
+2019-01-31 11:32:09 1548934329.060775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=760665 total-bytes-write=52 payload-bytes-read=760636/5242880 (14.51%)
+2019-01-31 11:32:09 1548934329.112617 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=764151 total-bytes-write=52 payload-bytes-read=764122/5242880 (14.57%)
+2019-01-31 11:32:09 1548934329.122237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=765147 total-bytes-write=52 payload-bytes-read=765118/5242880 (14.59%)
+2019-01-31 11:32:09 1548934329.138398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=769131 total-bytes-write=52 payload-bytes-read=769102/5242880 (14.67%)
+2019-01-31 11:32:09 1548934329.138465 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=770077 total-bytes-write=52 payload-bytes-read=770048/5242880 (14.69%)
+2019-01-31 11:32:09 1548934329.145223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=773563 total-bytes-write=52 payload-bytes-read=773534/5242880 (14.75%)
+2019-01-31 11:32:09 1548934329.148679 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=777547 total-bytes-write=52 payload-bytes-read=777518/5242880 (14.83%)
+2019-01-31 11:32:09 1548934329.148737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=778045 total-bytes-write=52 payload-bytes-read=778016/5242880 (14.84%)
+2019-01-31 11:32:09 1548934329.152337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=781531 total-bytes-write=52 payload-bytes-read=781502/5242880 (14.91%)
+2019-01-31 11:32:09 1548934329.156038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=782527 total-bytes-write=52 payload-bytes-read=782498/5242880 (14.92%)
+2019-01-31 11:32:09 1548934329.164404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=786013 total-bytes-write=52 payload-bytes-read=785984/5242880 (14.99%)
+2019-01-31 11:32:09 1548934329.177146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=788453 total-bytes-write=52 payload-bytes-read=788424/5242880 (15.04%)
+2019-01-31 11:32:09 1548934329.178034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=791939 total-bytes-write=52 payload-bytes-read=791910/5242880 (15.10%)
+2019-01-31 11:32:09 1548934329.194060 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=792437 total-bytes-write=52 payload-bytes-read=792408/5242880 (15.11%)
+2019-01-31 11:32:09 1548934329.342844 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=792935 total-bytes-write=52 payload-bytes-read=792906/5242880 (15.12%)
+2019-01-31 11:32:09 1548934329.399535 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=793931 total-bytes-write=52 payload-bytes-read=793902/5242880 (15.14%)
+2019-01-31 11:32:09 1548934329.408739 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=797417 total-bytes-write=52 payload-bytes-read=797388/5242880 (15.21%)
+2019-01-31 11:32:09 1548934329.409933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=800903 total-bytes-write=52 payload-bytes-read=800874/5242880 (15.28%)
+2019-01-31 11:32:09 1548934329.452480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=814299 total-bytes-write=52 payload-bytes-read=814270/5242880 (15.53%)
+2019-01-31 11:32:09 1548934329.496408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=836609 total-bytes-write=52 payload-bytes-read=836580/5242880 (15.96%)
+2019-01-31 11:32:09 1548934329.540374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=837605 total-bytes-write=52 payload-bytes-read=837576/5242880 (15.98%)
+2019-01-31 11:32:09 1548934329.544067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=841091 total-bytes-write=52 payload-bytes-read=841062/5242880 (16.04%)
+2019-01-31 11:32:09 1548934329.558277 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=844577 total-bytes-write=52 payload-bytes-read=844548/5242880 (16.11%)
+2019-01-31 11:32:09 1548934329.600428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=871867 total-bytes-write=52 payload-bytes-read=871838/5242880 (16.63%)
+2019-01-31 11:32:09 1548934329.644437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=879337 total-bytes-write=52 payload-bytes-read=879308/5242880 (16.77%)
+2019-01-31 11:32:09 1548934329.661160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=879835 total-bytes-write=52 payload-bytes-read=879806/5242880 (16.78%)
+2019-01-31 11:32:09 1548934329.719894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=883321 total-bytes-write=52 payload-bytes-read=883292/5242880 (16.85%)
+2019-01-31 11:32:09 1548934329.743900 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=884765 total-bytes-write=52 payload-bytes-read=884736/5242880 (16.88%)
+2019-01-31 11:32:09 1548934329.806544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=888251 total-bytes-write=52 payload-bytes-read=888222/5242880 (16.94%)
+2019-01-31 11:32:09 1548934329.826064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=891737 total-bytes-write=52 payload-bytes-read=891708/5242880 (17.01%)
+2019-01-31 11:32:09 1548934329.868432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=907623 total-bytes-write=52 payload-bytes-read=907594/5242880 (17.31%)
+2019-01-31 11:32:09 1548934329.912413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=916587 total-bytes-write=52 payload-bytes-read=916558/5242880 (17.48%)
+2019-01-31 11:32:09 1548934329.917468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=920023 total-bytes-write=52 payload-bytes-read=919994/5242880 (17.55%)
+2019-01-31 11:32:09 1548934329.918139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=921517 total-bytes-write=52 payload-bytes-read=921488/5242880 (17.58%)
+2019-01-31 11:32:09 1548934329.935662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=925003 total-bytes-write=52 payload-bytes-read=924974/5242880 (17.64%)
+2019-01-31 11:32:09 1548934329.942786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=928987 total-bytes-write=52 payload-bytes-read=928958/5242880 (17.72%)
+2019-01-31 11:32:09 1548934329.942890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=932473 total-bytes-write=52 payload-bytes-read=932444/5242880 (17.78%)
+2019-01-31 11:32:10 1548934330.015159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=935909 total-bytes-write=52 payload-bytes-read=935880/5242880 (17.85%)
+2019-01-31 11:32:10 1548934330.015596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=939893 total-bytes-write=52 payload-bytes-read=939864/5242880 (17.93%)
+2019-01-31 11:32:10 1548934330.015669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=941387 total-bytes-write=52 payload-bytes-read=941358/5242880 (17.95%)
+2019-01-31 11:32:10 1548934330.015915 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=948359 total-bytes-write=52 payload-bytes-read=948330/5242880 (18.09%)
+2019-01-31 11:32:10 1548934330.015984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=949853 total-bytes-write=52 payload-bytes-read=949824/5242880 (18.12%)
+2019-01-31 11:32:10 1548934330.022549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=953289 total-bytes-write=52 payload-bytes-read=953260/5242880 (18.18%)
+2019-01-31 11:32:10 1548934330.036707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=956775 total-bytes-write=52 payload-bytes-read=956746/5242880 (18.25%)
+2019-01-31 11:32:10 1548934330.049184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=960261 total-bytes-write=52 payload-bytes-read=960232/5242880 (18.31%)
+2019-01-31 11:32:10 1548934330.096415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=974653 total-bytes-write=52 payload-bytes-read=974624/5242880 (18.59%)
+2019-01-31 11:32:10 1548934330.140407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=988049 total-bytes-write=52 payload-bytes-read=988020/5242880 (18.84%)
+2019-01-31 11:32:10 1548934330.143193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=992033 total-bytes-write=52 payload-bytes-read=992004/5242880 (18.92%)
+2019-01-31 11:32:10 1548934330.169741 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=993029 total-bytes-write=52 payload-bytes-read=993000/5242880 (18.94%)
+2019-01-31 11:32:10 1548934330.210272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=996017 total-bytes-write=52 payload-bytes-read=995988/5242880 (19.00%)
+2019-01-31 11:32:10 1548934330.283042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=999453 total-bytes-write=52 payload-bytes-read=999424/5242880 (19.06%)
+2019-01-31 11:32:10 1548934330.350679 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1002939 total-bytes-write=52 payload-bytes-read=1002910/5242880 (19.13%)
+2019-01-31 11:32:10 1548934330.362738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1006425 total-bytes-write=52 payload-bytes-read=1006396/5242880 (19.20%)
+2019-01-31 11:32:10 1548934330.404448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1026793 total-bytes-write=52 payload-bytes-read=1026764/5242880 (19.58%)
+2019-01-31 11:32:10 1548934330.448454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1052091 total-bytes-write=52 payload-bytes-read=1052062/5242880 (20.07%)
+2019-01-31 11:32:10 1548934330.492431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1080925 total-bytes-write=52 payload-bytes-read=1080896/5242880 (20.62%)
+2019-01-31 11:32:10 1548934330.536413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1092329 total-bytes-write=52 payload-bytes-read=1092300/5242880 (20.83%)
+2019-01-31 11:32:10 1548934330.551240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1093325 total-bytes-write=52 payload-bytes-read=1093296/5242880 (20.85%)
+2019-01-31 11:32:10 1548934330.552649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1095317 total-bytes-write=52 payload-bytes-read=1095288/5242880 (20.89%)
+2019-01-31 11:32:10 1548934330.561714 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1098753 total-bytes-write=52 payload-bytes-read=1098724/5242880 (20.96%)
+2019-01-31 11:32:10 1548934330.566098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1101243 total-bytes-write=52 payload-bytes-read=1101214/5242880 (21.00%)
+2019-01-31 11:32:10 1548934330.580351 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1104729 total-bytes-write=52 payload-bytes-read=1104700/5242880 (21.07%)
+2019-01-31 11:32:10 1548934330.583504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1108215 total-bytes-write=52 payload-bytes-read=1108186/5242880 (21.14%)
+2019-01-31 11:32:10 1548934330.624440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1120117 total-bytes-write=52 payload-bytes-read=1120088/5242880 (21.36%)
+2019-01-31 11:32:10 1548934330.668407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1127089 total-bytes-write=52 payload-bytes-read=1127060/5242880 (21.50%)
+2019-01-31 11:32:10 1548934330.672763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1127587 total-bytes-write=52 payload-bytes-read=1127558/5242880 (21.51%)
+2019-01-31 11:32:10 1548934330.681859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1130525 total-bytes-write=52 payload-bytes-read=1130496/5242880 (21.56%)
+2019-01-31 11:32:10 1548934330.697203 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1134011 total-bytes-write=52 payload-bytes-read=1133982/5242880 (21.63%)
+2019-01-31 11:32:10 1548934330.716361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1137497 total-bytes-write=52 payload-bytes-read=1137468/5242880 (21.70%)
+2019-01-31 11:32:10 1548934330.760390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1141481 total-bytes-write=52 payload-bytes-read=1141452/5242880 (21.77%)
+2019-01-31 11:32:10 1548934330.804440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1157367 total-bytes-write=52 payload-bytes-read=1157338/5242880 (22.07%)
+2019-01-31 11:32:10 1548934330.848431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1166281 total-bytes-write=52 payload-bytes-read=1166252/5242880 (22.24%)
+2019-01-31 11:32:10 1548934330.851576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1169767 total-bytes-write=52 payload-bytes-read=1169738/5242880 (22.31%)
+2019-01-31 11:32:10 1548934330.861737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1173253 total-bytes-write=52 payload-bytes-read=1173224/5242880 (22.38%)
+2019-01-31 11:32:10 1548934330.904407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1185155 total-bytes-write=52 payload-bytes-read=1185126/5242880 (22.60%)
+2019-01-31 11:32:10 1548934330.948424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1191131 total-bytes-write=52 payload-bytes-read=1191102/5242880 (22.72%)
+2019-01-31 11:32:10 1548934330.948814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1194617 total-bytes-write=52 payload-bytes-read=1194588/5242880 (22.78%)
+2019-01-31 11:32:10 1548934330.972330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1198053 total-bytes-write=52 payload-bytes-read=1198024/5242880 (22.85%)
+2019-01-31 11:32:10 1548934330.973968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1199547 total-bytes-write=52 payload-bytes-read=1199518/5242880 (22.88%)
+2019-01-31 11:32:10 1548934330.975527 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1203033 total-bytes-write=52 payload-bytes-read=1203004/5242880 (22.95%)
+2019-01-31 11:32:10 1548934330.984703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1207017 total-bytes-write=52 payload-bytes-read=1206988/5242880 (23.02%)
+2019-01-31 11:32:11 1548934331.033636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1208013 total-bytes-write=52 payload-bytes-read=1207984/5242880 (23.04%)
+2019-01-31 11:32:11 1548934331.038055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1211997 total-bytes-write=52 payload-bytes-read=1211968/5242880 (23.12%)
+2019-01-31 11:32:11 1548934331.038131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1215433 total-bytes-write=52 payload-bytes-read=1215404/5242880 (23.18%)
+2019-01-31 11:32:11 1548934331.042001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1219417 total-bytes-write=52 payload-bytes-read=1219388/5242880 (23.26%)
+2019-01-31 11:32:11 1548934331.058183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1223401 total-bytes-write=52 payload-bytes-read=1223372/5242880 (23.33%)
+2019-01-31 11:32:11 1548934331.100433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1230323 total-bytes-write=52 payload-bytes-read=1230294/5242880 (23.47%)
+2019-01-31 11:32:11 1548934331.144470 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1240781 total-bytes-write=52 payload-bytes-read=1240752/5242880 (23.67%)
+2019-01-31 11:32:11 1548934331.188426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1252683 total-bytes-write=52 payload-bytes-read=1252654/5242880 (23.89%)
+2019-01-31 11:32:11 1548934331.232395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1256667 total-bytes-write=52 payload-bytes-read=1256638/5242880 (23.97%)
+2019-01-31 11:32:11 1548934331.253748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1257663 total-bytes-write=52 payload-bytes-read=1257634/5242880 (23.99%)
+2019-01-31 11:32:11 1548934331.298621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1260153 total-bytes-write=52 payload-bytes-read=1260124/5242880 (24.03%)
+2019-01-31 11:32:11 1548934331.349111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1261149 total-bytes-write=52 payload-bytes-read=1261120/5242880 (24.05%)
+2019-01-31 11:32:11 1548934331.349943 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1264585 total-bytes-write=52 payload-bytes-read=1264556/5242880 (24.12%)
+2019-01-31 11:32:11 1548934331.352115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1268569 total-bytes-write=52 payload-bytes-read=1268540/5242880 (24.20%)
+2019-01-31 11:32:11 1548934331.352201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1272553 total-bytes-write=52 payload-bytes-read=1272524/5242880 (24.27%)
+2019-01-31 11:32:11 1548934331.392472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1285451 total-bytes-write=52 payload-bytes-read=1285422/5242880 (24.52%)
+2019-01-31 11:32:11 1548934331.436447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1307811 total-bytes-write=52 payload-bytes-read=1307782/5242880 (24.94%)
+2019-01-31 11:32:11 1548934331.480450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1327631 total-bytes-write=52 payload-bytes-read=1327602/5242880 (25.32%)
+2019-01-31 11:32:11 1548934331.487167 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1328627 total-bytes-write=52 payload-bytes-read=1328598/5242880 (25.34%)
+2019-01-31 11:32:11 1548934331.488749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:32:11 1548934331.501328 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1333607 total-bytes-write=52 payload-bytes-read=1333578/5242880 (25.44%)
+2019-01-31 11:32:11 1548934331.502589 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1337591 total-bytes-write=52 payload-bytes-read=1337562/5242880 (25.51%)
+2019-01-31 11:32:11 1548934331.502659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1338089 total-bytes-write=52 payload-bytes-read=1338060/5242880 (25.52%)
+2019-01-31 11:32:11 1548934331.536128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1341575 total-bytes-write=52 payload-bytes-read=1341546/5242880 (25.59%)
+2019-01-31 11:32:11 1548934331.558444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1343069 total-bytes-write=52 payload-bytes-read=1343040/5242880 (25.62%)
+2019-01-31 11:32:11 1548934331.560464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1346505 total-bytes-write=52 payload-bytes-read=1346476/5242880 (25.68%)
+2019-01-31 11:32:11 1548934331.562780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1349991 total-bytes-write=52 payload-bytes-read=1349962/5242880 (25.75%)
+2019-01-31 11:32:11 1548934331.570865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1354473 total-bytes-write=52 payload-bytes-read=1354444/5242880 (25.83%)
+2019-01-31 11:32:11 1548934331.577813 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1357959 total-bytes-write=52 payload-bytes-read=1357930/5242880 (25.90%)
+2019-01-31 11:32:11 1548934331.589919 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1361395 total-bytes-write=52 payload-bytes-read=1361366/5242880 (25.97%)
+2019-01-31 11:32:11 1548934331.613136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1361893 total-bytes-write=52 payload-bytes-read=1361864/5242880 (25.98%)
+2019-01-31 11:32:11 1548934331.620178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1362391 total-bytes-write=52 payload-bytes-read=1362362/5242880 (25.98%)
+2019-01-31 11:32:11 1548934331.621136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1365877 total-bytes-write=52 payload-bytes-read=1365848/5242880 (26.05%)
+2019-01-31 11:32:11 1548934331.626264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1369861 total-bytes-write=52 payload-bytes-read=1369832/5242880 (26.13%)
+2019-01-31 11:32:11 1548934331.637182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1372849 total-bytes-write=52 payload-bytes-read=1372820/5242880 (26.18%)
+2019-01-31 11:32:11 1548934331.657016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1373845 total-bytes-write=52 payload-bytes-read=1373816/5242880 (26.20%)
+2019-01-31 11:32:11 1548934331.657872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1375837 total-bytes-write=52 payload-bytes-read=1375808/5242880 (26.24%)
+2019-01-31 11:32:11 1548934331.670451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1379273 total-bytes-write=52 payload-bytes-read=1379244/5242880 (26.31%)
+2019-01-31 11:32:11 1548934331.712638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1379771 total-bytes-write=52 payload-bytes-read=1379742/5242880 (26.32%)
+2019-01-31 11:32:11 1548934331.758790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1383257 total-bytes-write=52 payload-bytes-read=1383228/5242880 (26.38%)
+2019-01-31 11:32:11 1548934331.786739 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1383755 total-bytes-write=52 payload-bytes-read=1383726/5242880 (26.39%)
+2019-01-31 11:32:11 1548934331.800920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1387241 total-bytes-write=52 payload-bytes-read=1387212/5242880 (26.46%)
+2019-01-31 11:32:11 1548934331.811464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1391225 total-bytes-write=52 payload-bytes-read=1391196/5242880 (26.53%)
+2019-01-31 11:32:11 1548934331.811539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1394661 total-bytes-write=52 payload-bytes-read=1394632/5242880 (26.60%)
+2019-01-31 11:32:11 1548934331.832261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1398645 total-bytes-write=52 payload-bytes-read=1398616/5242880 (26.68%)
+2019-01-31 11:32:11 1548934331.833632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1402131 total-bytes-write=52 payload-bytes-read=1402102/5242880 (26.74%)
+2019-01-31 11:32:11 1548934331.837195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1403127 total-bytes-write=52 payload-bytes-read=1403098/5242880 (26.76%)
+2019-01-31 11:32:11 1548934331.838277 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1406613 total-bytes-write=52 payload-bytes-read=1406584/5242880 (26.83%)
+2019-01-31 11:32:11 1548934331.839657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1410547 total-bytes-write=52 payload-bytes-read=1410518/5242880 (26.90%)
+2019-01-31 11:32:11 1548934331.844046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1414531 total-bytes-write=52 payload-bytes-read=1414502/5242880 (26.98%)
+2019-01-31 11:32:11 1548934331.851678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1418515 total-bytes-write=52 payload-bytes-read=1418486/5242880 (27.06%)
+2019-01-31 11:32:11 1548934331.892420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1436393 total-bytes-write=52 payload-bytes-read=1436364/5242880 (27.40%)
+2019-01-31 11:32:11 1548934331.936436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1448793 total-bytes-write=52 payload-bytes-read=1448764/5242880 (27.63%)
+2019-01-31 11:32:11 1548934331.946304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1452279 total-bytes-write=52 payload-bytes-read=1452250/5242880 (27.70%)
+2019-01-31 11:32:11 1548934331.973876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1453275 total-bytes-write=52 payload-bytes-read=1453246/5242880 (27.72%)
+2019-01-31 11:32:11 1548934331.977188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1457757 total-bytes-write=52 payload-bytes-read=1457728/5242880 (27.80%)
+2019-01-31 11:32:11 1548934331.995149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1461193 total-bytes-write=52 payload-bytes-read=1461164/5242880 (27.87%)
+2019-01-31 11:32:12 1548934332.005648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1464679 total-bytes-write=52 payload-bytes-read=1464650/5242880 (27.94%)
+2019-01-31 11:32:12 1548934332.017784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1468663 total-bytes-write=52 payload-bytes-read=1468634/5242880 (28.01%)
+2019-01-31 11:32:12 1548934332.034203 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1471153 total-bytes-write=52 payload-bytes-read=1471124/5242880 (28.06%)
+2019-01-31 11:32:12 1548934332.035867 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1471651 total-bytes-write=52 payload-bytes-read=1471622/5242880 (28.07%)
+2019-01-31 11:32:12 1548934332.061510 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1475087 total-bytes-write=52 payload-bytes-read=1475058/5242880 (28.13%)
+2019-01-31 11:32:12 1548934332.064308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1479071 total-bytes-write=52 payload-bytes-read=1479042/5242880 (28.21%)
+2019-01-31 11:32:12 1548934332.074349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1482059 total-bytes-write=52 payload-bytes-read=1482030/5242880 (28.27%)
+2019-01-31 11:32:12 1548934332.078007 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1485545 total-bytes-write=52 payload-bytes-read=1485516/5242880 (28.33%)
+2019-01-31 11:32:12 1548934332.090232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1486043 total-bytes-write=52 payload-bytes-read=1486014/5242880 (28.34%)
+2019-01-31 11:32:12 1548934332.098161 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1489031 total-bytes-write=52 payload-bytes-read=1489002/5242880 (28.40%)
+2019-01-31 11:32:12 1548934332.116886 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1492467 total-bytes-write=52 payload-bytes-read=1492438/5242880 (28.47%)
+2019-01-31 11:32:12 1548934332.128590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1495455 total-bytes-write=52 payload-bytes-read=1495426/5242880 (28.52%)
+2019-01-31 11:32:12 1548934332.146293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1498443 total-bytes-write=52 payload-bytes-read=1498414/5242880 (28.58%)
+2019-01-31 11:32:12 1548934332.188415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1502427 total-bytes-write=52 payload-bytes-read=1502398/5242880 (28.66%)
+2019-01-31 11:32:12 1548934332.232410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1505913 total-bytes-write=52 payload-bytes-read=1505884/5242880 (28.72%)
+2019-01-31 11:32:12 1548934332.259051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1506909 total-bytes-write=52 payload-bytes-read=1506880/5242880 (28.74%)
+2019-01-31 11:32:12 1548934332.305850 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1510345 total-bytes-write=52 payload-bytes-read=1510316/5242880 (28.81%)
+2019-01-31 11:32:12 1548934332.333991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1513831 total-bytes-write=52 payload-bytes-read=1513802/5242880 (28.87%)
+2019-01-31 11:32:12 1548934332.355578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1517815 total-bytes-write=52 payload-bytes-read=1517786/5242880 (28.95%)
+2019-01-31 11:32:12 1548934332.396408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1524737 total-bytes-write=52 payload-bytes-read=1524708/5242880 (29.08%)
+2019-01-31 11:32:12 1548934332.440443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1539677 total-bytes-write=52 payload-bytes-read=1539648/5242880 (29.37%)
+2019-01-31 11:32:12 1548934332.484440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1551081 total-bytes-write=52 payload-bytes-read=1551052/5242880 (29.58%)
+2019-01-31 11:32:12 1548934332.488706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1555065 total-bytes-write=52 payload-bytes-read=1555036/5242880 (29.66%)
+2019-01-31 11:32:12 1548934332.491509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1558501 total-bytes-write=52 payload-bytes-read=1558472/5242880 (29.73%)
+2019-01-31 11:32:12 1548934332.492050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1558999 total-bytes-write=52 payload-bytes-read=1558970/5242880 (29.73%)
+2019-01-31 11:32:12 1548934332.501031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1562485 total-bytes-write=52 payload-bytes-read=1562456/5242880 (29.80%)
+2019-01-31 11:32:12 1548934332.502498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1566469 total-bytes-write=52 payload-bytes-read=1566440/5242880 (29.88%)
+2019-01-31 11:32:12 1548934332.511485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1569955 total-bytes-write=52 payload-bytes-read=1569926/5242880 (29.94%)
+2019-01-31 11:32:12 1548934332.511797 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1571947 total-bytes-write=52 payload-bytes-read=1571918/5242880 (29.98%)
+2019-01-31 11:32:12 1548934332.516971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1575383 total-bytes-write=52 payload-bytes-read=1575354/5242880 (30.05%)
+2019-01-31 11:32:12 1548934332.518955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1579367 total-bytes-write=52 payload-bytes-read=1579338/5242880 (30.12%)
+2019-01-31 11:32:12 1548934332.531952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1583351 total-bytes-write=52 payload-bytes-read=1583322/5242880 (30.20%)
+2019-01-31 11:32:12 1548934332.572397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1584347 total-bytes-write=52 payload-bytes-read=1584318/5242880 (30.22%)
+2019-01-31 11:32:12 1548934332.590929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1585343 total-bytes-write=52 payload-bytes-read=1585314/5242880 (30.24%)
+2019-01-31 11:32:12 1548934332.632395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1596249 total-bytes-write=52 payload-bytes-read=1596220/5242880 (30.45%)
+2019-01-31 11:32:12 1548934332.676423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1605213 total-bytes-write=52 payload-bytes-read=1605184/5242880 (30.62%)
+2019-01-31 11:32:12 1548934332.700325 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1608649 total-bytes-write=52 payload-bytes-read=1608620/5242880 (30.68%)
+2019-01-31 11:32:12 1548934332.701171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1612633 total-bytes-write=52 payload-bytes-read=1612604/5242880 (30.76%)
+2019-01-31 11:32:12 1548934332.729800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1616119 total-bytes-write=52 payload-bytes-read=1616090/5242880 (30.82%)
+2019-01-31 11:32:12 1548934332.759565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1619605 total-bytes-write=52 payload-bytes-read=1619576/5242880 (30.89%)
+2019-01-31 11:32:12 1548934332.800407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1627025 total-bytes-write=52 payload-bytes-read=1626996/5242880 (31.03%)
+2019-01-31 11:32:12 1548934332.844408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1627523 total-bytes-write=52 payload-bytes-read=1627494/5242880 (31.04%)
+2019-01-31 11:32:12 1548934332.847787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1631009 total-bytes-write=52 payload-bytes-read=1630980/5242880 (31.11%)
+2019-01-31 11:32:12 1548934332.849677 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1631507 total-bytes-write=52 payload-bytes-read=1631478/5242880 (31.12%)
+2019-01-31 11:32:12 1548934332.854799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1634993 total-bytes-write=52 payload-bytes-read=1634964/5242880 (31.18%)
+2019-01-31 11:32:12 1548934332.858956 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1638927 total-bytes-write=52 payload-bytes-read=1638898/5242880 (31.26%)
+2019-01-31 11:32:12 1548934332.866100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1642911 total-bytes-write=52 payload-bytes-read=1642882/5242880 (31.34%)
+2019-01-31 11:32:12 1548934332.876530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1644405 total-bytes-write=52 payload-bytes-read=1644376/5242880 (31.36%)
+2019-01-31 11:32:12 1548934332.876782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1645401 total-bytes-write=52 payload-bytes-read=1645372/5242880 (31.38%)
+2019-01-31 11:32:12 1548934332.877706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1648887 total-bytes-write=52 payload-bytes-read=1648858/5242880 (31.45%)
+2019-01-31 11:32:12 1548934332.879320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1652871 total-bytes-write=52 payload-bytes-read=1652842/5242880 (31.53%)
+2019-01-31 11:32:12 1548934332.898385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1656307 total-bytes-write=52 payload-bytes-read=1656278/5242880 (31.59%)
+2019-01-31 11:32:12 1548934332.899239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1660291 total-bytes-write=52 payload-bytes-read=1660262/5242880 (31.67%)
+2019-01-31 11:32:13 1548934333.004602 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1664275 total-bytes-write=52 payload-bytes-read=1664246/5242880 (31.74%)
+2019-01-31 11:32:13 1548934333.067761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1668259 total-bytes-write=52 payload-bytes-read=1668230/5242880 (31.82%)
+2019-01-31 11:32:13 1548934333.108460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1694553 total-bytes-write=52 payload-bytes-read=1694524/5242880 (32.32%)
+2019-01-31 11:32:13 1548934333.152469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1722839 total-bytes-write=52 payload-bytes-read=1722810/5242880 (32.86%)
+2019-01-31 11:32:13 1548934333.196442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1734791 total-bytes-write=52 payload-bytes-read=1734762/5242880 (33.09%)
+2019-01-31 11:32:13 1548934333.225789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1735787 total-bytes-write=52 payload-bytes-read=1735758/5242880 (33.11%)
+2019-01-31 11:32:13 1548934333.308969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1737231 total-bytes-write=52 payload-bytes-read=1737202/5242880 (33.13%)
+2019-01-31 11:32:13 1548934333.389200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1740717 total-bytes-write=52 payload-bytes-read=1740688/5242880 (33.20%)
+2019-01-31 11:32:13 1548934333.416921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1744203 total-bytes-write=52 payload-bytes-read=1744174/5242880 (33.27%)
+2019-01-31 11:32:13 1548934333.460409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1756603 total-bytes-write=52 payload-bytes-read=1756574/5242880 (33.50%)
+2019-01-31 11:32:13 1548934333.504395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1760089 total-bytes-write=52 payload-bytes-read=1760060/5242880 (33.57%)
+2019-01-31 11:32:13 1548934333.549533 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1765567 total-bytes-write=52 payload-bytes-read=1765538/5242880 (33.67%)
+2019-01-31 11:32:13 1548934333.550033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1769053 total-bytes-write=52 payload-bytes-read=1769024/5242880 (33.74%)
+2019-01-31 11:32:13 1548934333.551235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1772987 total-bytes-write=52 payload-bytes-read=1772958/5242880 (33.82%)
+2019-01-31 11:32:13 1548934333.559696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1776473 total-bytes-write=52 payload-bytes-read=1776444/5242880 (33.88%)
+2019-01-31 11:32:13 1548934333.579150 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1776971 total-bytes-write=52 payload-bytes-read=1776942/5242880 (33.89%)
+2019-01-31 11:32:13 1548934333.579557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1780457 total-bytes-write=52 payload-bytes-read=1780428/5242880 (33.96%)
+2019-01-31 11:32:13 1548934333.580294 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1780955 total-bytes-write=52 payload-bytes-read=1780926/5242880 (33.97%)
+2019-01-31 11:32:13 1548934333.590571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1784441 total-bytes-write=52 payload-bytes-read=1784412/5242880 (34.03%)
+2019-01-31 11:32:13 1548934333.595459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1787877 total-bytes-write=52 payload-bytes-read=1787848/5242880 (34.10%)
+2019-01-31 11:32:13 1548934333.614989 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1788873 total-bytes-write=52 payload-bytes-read=1788844/5242880 (34.12%)
+2019-01-31 11:32:13 1548934333.634609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1792359 total-bytes-write=52 payload-bytes-read=1792330/5242880 (34.19%)
+2019-01-31 11:32:13 1548934333.636693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1793853 total-bytes-write=52 payload-bytes-read=1793824/5242880 (34.21%)
+2019-01-31 11:32:13 1548934333.637804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1797339 total-bytes-write=52 payload-bytes-read=1797310/5242880 (34.28%)
+2019-01-31 11:32:13 1548934333.640889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1801323 total-bytes-write=52 payload-bytes-read=1801294/5242880 (34.36%)
+2019-01-31 11:32:13 1548934333.641849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1805257 total-bytes-write=52 payload-bytes-read=1805228/5242880 (34.43%)
+2019-01-31 11:32:13 1548934333.657161 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1810237 total-bytes-write=52 payload-bytes-read=1810208/5242880 (34.53%)
+2019-01-31 11:32:13 1548934333.657268 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1813723 total-bytes-write=52 payload-bytes-read=1813694/5242880 (34.59%)
+2019-01-31 11:32:13 1548934333.657596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1817707 total-bytes-write=52 payload-bytes-read=1817678/5242880 (34.67%)
+2019-01-31 11:32:13 1548934333.672120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1821641 total-bytes-write=52 payload-bytes-read=1821612/5242880 (34.74%)
+2019-01-31 11:32:13 1548934333.672717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1825625 total-bytes-write=52 payload-bytes-read=1825596/5242880 (34.82%)
+2019-01-31 11:32:13 1548934333.672787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1826123 total-bytes-write=52 payload-bytes-read=1826094/5242880 (34.83%)
+2019-01-31 11:32:13 1548934333.675165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1829609 total-bytes-write=52 payload-bytes-read=1829580/5242880 (34.90%)
+2019-01-31 11:32:13 1548934333.681573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1832597 total-bytes-write=52 payload-bytes-read=1832568/5242880 (34.95%)
+2019-01-31 11:32:13 1548934333.736196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1834589 total-bytes-write=52 payload-bytes-read=1834560/5242880 (34.99%)
+2019-01-31 11:32:13 1548934333.753687 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1838025 total-bytes-write=52 payload-bytes-read=1837996/5242880 (35.06%)
+2019-01-31 11:32:13 1548934333.762173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1840017 total-bytes-write=52 payload-bytes-read=1839988/5242880 (35.09%)
+2019-01-31 11:32:13 1548934333.763864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1843503 total-bytes-write=52 payload-bytes-read=1843474/5242880 (35.16%)
+2019-01-31 11:32:13 1548934333.822488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1846989 total-bytes-write=52 payload-bytes-read=1846960/5242880 (35.23%)
+2019-01-31 11:32:13 1548934333.864441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1858393 total-bytes-write=52 payload-bytes-read=1858364/5242880 (35.45%)
+2019-01-31 11:32:13 1548934333.908418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1877267 total-bytes-write=52 payload-bytes-read=1877238/5242880 (35.81%)
+2019-01-31 11:32:13 1548934333.952452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1907545 total-bytes-write=52 payload-bytes-read=1907516/5242880 (36.38%)
+2019-01-31 11:32:13 1548934333.996403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1917953 total-bytes-write=52 payload-bytes-read=1917924/5242880 (36.58%)
+2019-01-31 11:32:14 1548934334.002366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1921937 total-bytes-write=52 payload-bytes-read=1921908/5242880 (36.66%)
+2019-01-31 11:32:14 1548934334.002452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1922933 total-bytes-write=52 payload-bytes-read=1922904/5242880 (36.68%)
+2019-01-31 11:32:14 1548934334.013067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1926419 total-bytes-write=52 payload-bytes-read=1926390/5242880 (36.74%)
+2019-01-31 11:32:14 1548934334.052877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1932395 total-bytes-write=52 payload-bytes-read=1932366/5242880 (36.86%)
+2019-01-31 11:32:14 1548934334.063302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1935831 total-bytes-write=52 payload-bytes-read=1935802/5242880 (36.92%)
+2019-01-31 11:32:14 1548934334.085438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1939317 total-bytes-write=52 payload-bytes-read=1939288/5242880 (36.99%)
+2019-01-31 11:32:14 1548934334.096499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1942803 total-bytes-write=52 payload-bytes-read=1942774/5242880 (37.06%)
+2019-01-31 11:32:14 1548934334.140420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1953211 total-bytes-write=52 payload-bytes-read=1953182/5242880 (37.25%)
+2019-01-31 11:32:14 1548934334.184445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1972583 total-bytes-write=52 payload-bytes-read=1972554/5242880 (37.62%)
+2019-01-31 11:32:14 1548934334.255352 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1975073 total-bytes-write=52 payload-bytes-read=1975044/5242880 (37.67%)
+2019-01-31 11:32:14 1548934334.296938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1976567 total-bytes-write=52 payload-bytes-read=1976538/5242880 (37.70%)
+2019-01-31 11:32:14 1548934334.362123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1980053 total-bytes-write=52 payload-bytes-read=1980024/5242880 (37.77%)
+2019-01-31 11:32:14 1548934334.363526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1983489 total-bytes-write=52 payload-bytes-read=1983460/5242880 (37.83%)
+2019-01-31 11:32:14 1548934334.364643 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1987473 total-bytes-write=52 payload-bytes-read=1987444/5242880 (37.91%)
+2019-01-31 11:32:14 1548934334.371946 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1991457 total-bytes-write=52 payload-bytes-read=1991428/5242880 (37.98%)
+2019-01-31 11:32:14 1548934334.412429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2004355 total-bytes-write=52 payload-bytes-read=2004326/5242880 (38.23%)
+2019-01-31 11:32:14 1548934334.456468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2030201 total-bytes-write=52 payload-bytes-read=2030172/5242880 (38.72%)
+2019-01-31 11:32:14 1548934334.541727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2033637 total-bytes-write=52 payload-bytes-read=2033608/5242880 (38.79%)
+2019-01-31 11:32:14 1548934334.595960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2035131 total-bytes-write=52 payload-bytes-read=2035102/5242880 (38.82%)
+2019-01-31 11:32:14 1548934334.609724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2038617 total-bytes-write=52 payload-bytes-read=2038588/5242880 (38.88%)
+2019-01-31 11:32:14 1548934334.616898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2042103 total-bytes-write=52 payload-bytes-read=2042074/5242880 (38.95%)
+2019-01-31 11:32:14 1548934334.660424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2049523 total-bytes-write=52 payload-bytes-read=2049494/5242880 (39.09%)
+2019-01-31 11:32:14 1548934334.704414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2055499 total-bytes-write=52 payload-bytes-read=2055470/5242880 (39.20%)
+2019-01-31 11:32:14 1548934334.756141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2058985 total-bytes-write=52 payload-bytes-read=2058956/5242880 (39.27%)
+2019-01-31 11:32:14 1548934334.756703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2059981 total-bytes-write=52 payload-bytes-read=2059952/5242880 (39.29%)
+2019-01-31 11:32:14 1548934334.770450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2066903 total-bytes-write=52 payload-bytes-read=2066874/5242880 (39.42%)
+2019-01-31 11:32:14 1548934334.774335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2067899 total-bytes-write=52 payload-bytes-read=2067870/5242880 (39.44%)
+2019-01-31 11:32:14 1548934334.778600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2071385 total-bytes-write=52 payload-bytes-read=2071356/5242880 (39.51%)
+2019-01-31 11:32:14 1548934334.787629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2074871 total-bytes-write=52 payload-bytes-read=2074842/5242880 (39.57%)
+2019-01-31 11:32:14 1548934334.828444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2098675 total-bytes-write=52 payload-bytes-read=2098646/5242880 (40.03%)
+2019-01-31 11:32:14 1548934334.872405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2103157 total-bytes-write=52 payload-bytes-read=2103128/5242880 (40.11%)
+2019-01-31 11:32:14 1548934334.877018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2107141 total-bytes-write=52 payload-bytes-read=2107112/5242880 (40.19%)
+2019-01-31 11:32:14 1548934334.882974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2109133 total-bytes-write=52 payload-bytes-read=2109104/5242880 (40.23%)
+2019-01-31 11:32:14 1548934334.908089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2112619 total-bytes-write=52 payload-bytes-read=2112590/5242880 (40.29%)
+2019-01-31 11:32:14 1548934334.914968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2115557 total-bytes-write=52 payload-bytes-read=2115528/5242880 (40.35%)
+2019-01-31 11:32:14 1548934334.922089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2116553 total-bytes-write=52 payload-bytes-read=2116524/5242880 (40.37%)
+2019-01-31 11:32:14 1548934334.922728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2120039 total-bytes-write=52 payload-bytes-read=2120010/5242880 (40.44%)
+2019-01-31 11:32:14 1548934334.923306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2121035 total-bytes-write=52 payload-bytes-read=2121006/5242880 (40.45%)
+2019-01-31 11:32:14 1548934334.925432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2124521 total-bytes-write=52 payload-bytes-read=2124492/5242880 (40.52%)
+2019-01-31 11:32:14 1548934334.947953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2130945 total-bytes-write=52 payload-bytes-read=2130916/5242880 (40.64%)
+2019-01-31 11:32:14 1548934334.954294 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2131443 total-bytes-write=52 payload-bytes-read=2131414/5242880 (40.65%)
+2019-01-31 11:32:14 1548934334.969242 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2134929 total-bytes-write=52 payload-bytes-read=2134900/5242880 (40.72%)
+2019-01-31 11:32:14 1548934334.974182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2137419 total-bytes-write=52 payload-bytes-read=2137390/5242880 (40.77%)
+2019-01-31 11:32:14 1548934334.974895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2137917 total-bytes-write=52 payload-bytes-read=2137888/5242880 (40.78%)
+2019-01-31 11:32:14 1548934334.985146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2141403 total-bytes-write=52 payload-bytes-read=2141374/5242880 (40.84%)
+2019-01-31 11:32:14 1548934334.986954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2145387 total-bytes-write=52 payload-bytes-read=2145358/5242880 (40.92%)
+2019-01-31 11:32:14 1548934334.987689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2148823 total-bytes-write=52 payload-bytes-read=2148794/5242880 (40.98%)
+2019-01-31 11:32:15 1548934335.008501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2152807 total-bytes-write=52 payload-bytes-read=2152778/5242880 (41.06%)
+2019-01-31 11:32:15 1548934335.009426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2156293 total-bytes-write=52 payload-bytes-read=2156264/5242880 (41.13%)
+2019-01-31 11:32:15 1548934335.011935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2159779 total-bytes-write=52 payload-bytes-read=2159750/5242880 (41.19%)
+2019-01-31 11:32:15 1548934335.052395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2164709 total-bytes-write=52 payload-bytes-read=2164680/5242880 (41.29%)
+2019-01-31 11:32:15 1548934335.096415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2168693 total-bytes-write=52 payload-bytes-read=2168664/5242880 (41.36%)
+2019-01-31 11:32:15 1548934335.099143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2171183 total-bytes-write=52 payload-bytes-read=2171154/5242880 (41.41%)
+2019-01-31 11:32:15 1548934335.101686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2175167 total-bytes-write=52 payload-bytes-read=2175138/5242880 (41.49%)
+2019-01-31 11:32:15 1548934335.107407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2178653 total-bytes-write=52 payload-bytes-read=2178624/5242880 (41.55%)
+2019-01-31 11:32:15 1548934335.147778 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2181093 total-bytes-write=52 payload-bytes-read=2181064/5242880 (41.60%)
+2019-01-31 11:32:15 1548934335.151093 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2187567 total-bytes-write=52 payload-bytes-read=2187538/5242880 (41.72%)
+2019-01-31 11:32:15 1548934335.151493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2191551 total-bytes-write=52 payload-bytes-read=2191522/5242880 (41.80%)
+2019-01-31 11:32:15 1548934335.158577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2195037 total-bytes-write=52 payload-bytes-read=2195008/5242880 (41.87%)
+2019-01-31 11:32:15 1548934335.176429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2198473 total-bytes-write=52 payload-bytes-read=2198444/5242880 (41.93%)
+2019-01-31 11:32:15 1548934335.205018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2200963 total-bytes-write=52 payload-bytes-read=2200934/5242880 (41.98%)
+2019-01-31 11:32:15 1548934335.214342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2201959 total-bytes-write=52 payload-bytes-read=2201930/5242880 (42.00%)
+2019-01-31 11:32:15 1548934335.254601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2205445 total-bytes-write=52 payload-bytes-read=2205416/5242880 (42.06%)
+2019-01-31 11:32:15 1548934335.310787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2206939 total-bytes-write=52 payload-bytes-read=2206910/5242880 (42.09%)
+2019-01-31 11:32:15 1548934335.413167 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2210425 total-bytes-write=52 payload-bytes-read=2210396/5242880 (42.16%)
+2019-01-31 11:32:15 1548934335.421158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2211869 total-bytes-write=52 payload-bytes-read=2211840/5242880 (42.19%)
+2019-01-31 11:32:15 1548934335.421922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2215355 total-bytes-write=52 payload-bytes-read=2215326/5242880 (42.25%)
+2019-01-31 11:32:15 1548934335.455163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2218841 total-bytes-write=52 payload-bytes-read=2218812/5242880 (42.32%)
+2019-01-31 11:32:15 1548934335.496408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2230245 total-bytes-write=52 payload-bytes-read=2230216/5242880 (42.54%)
+2019-01-31 11:32:15 1548934335.540473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2263511 total-bytes-write=52 payload-bytes-read=2263482/5242880 (43.17%)
+2019-01-31 11:32:15 1548934335.584418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2279397 total-bytes-write=52 payload-bytes-read=2279368/5242880 (43.48%)
+2019-01-31 11:32:15 1548934335.603033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2280393 total-bytes-write=52 payload-bytes-read=2280364/5242880 (43.49%)
+2019-01-31 11:32:15 1548934335.630732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2283381 total-bytes-write=52 payload-bytes-read=2283352/5242880 (43.55%)
+2019-01-31 11:32:15 1548934335.649064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:32:15 1548934335.653727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2290353 total-bytes-write=52 payload-bytes-read=2290324/5242880 (43.68%)
+2019-01-31 11:32:15 1548934335.733354 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2293789 total-bytes-write=52 payload-bytes-read=2293760/5242880 (43.75%)
+2019-01-31 11:32:15 1548934335.742192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2297275 total-bytes-write=52 payload-bytes-read=2297246/5242880 (43.82%)
+2019-01-31 11:32:15 1548934335.784386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2304745 total-bytes-write=52 payload-bytes-read=2304716/5242880 (43.96%)
+2019-01-31 11:32:15 1548934335.828404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2317145 total-bytes-write=52 payload-bytes-read=2317116/5242880 (44.20%)
+2019-01-31 11:32:15 1548934335.872405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2329545 total-bytes-write=52 payload-bytes-read=2329516/5242880 (44.43%)
+2019-01-31 11:32:15 1548934335.916400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2333529 total-bytes-write=52 payload-bytes-read=2333500/5242880 (44.51%)
+2019-01-31 11:32:15 1548934335.938243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2336517 total-bytes-write=52 payload-bytes-read=2336488/5242880 (44.56%)
+2019-01-31 11:32:15 1548934335.947263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2340003 total-bytes-write=52 payload-bytes-read=2339974/5242880 (44.63%)
+2019-01-31 11:32:15 1548934335.981008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2343439 total-bytes-write=52 payload-bytes-read=2343410/5242880 (44.70%)
+2019-01-31 11:32:15 1548934335.998033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2346427 total-bytes-write=52 payload-bytes-read=2346398/5242880 (44.75%)
+2019-01-31 11:32:16 1548934336.002484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2350411 total-bytes-write=52 payload-bytes-read=2350382/5242880 (44.83%)
+2019-01-31 11:32:16 1548934336.012823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2353897 total-bytes-write=52 payload-bytes-read=2353868/5242880 (44.90%)
+2019-01-31 11:32:16 1548934336.023376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2357881 total-bytes-write=52 payload-bytes-read=2357852/5242880 (44.97%)
+2019-01-31 11:32:16 1548934336.024125 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2361317 total-bytes-write=52 payload-bytes-read=2361288/5242880 (45.04%)
+2019-01-31 11:32:16 1548934336.037601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2364803 total-bytes-write=52 payload-bytes-read=2364774/5242880 (45.10%)
+2019-01-31 11:32:16 1548934336.064313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2366297 total-bytes-write=52 payload-bytes-read=2366268/5242880 (45.13%)
+2019-01-31 11:32:16 1548934336.064791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2369783 total-bytes-write=52 payload-bytes-read=2369754/5242880 (45.20%)
+2019-01-31 11:32:16 1548934336.073766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2370779 total-bytes-write=52 payload-bytes-read=2370750/5242880 (45.22%)
+2019-01-31 11:32:16 1548934336.085222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2375261 total-bytes-write=52 payload-bytes-read=2375232/5242880 (45.30%)
+2019-01-31 11:32:16 1548934336.086206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2378697 total-bytes-write=52 payload-bytes-read=2378668/5242880 (45.37%)
+2019-01-31 11:32:16 1548934336.087597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2382183 total-bytes-write=52 payload-bytes-read=2382154/5242880 (45.44%)
+2019-01-31 11:32:16 1548934336.098254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2385669 total-bytes-write=52 payload-bytes-read=2385640/5242880 (45.50%)
+2019-01-31 11:32:16 1548934336.140407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2390151 total-bytes-write=52 payload-bytes-read=2390122/5242880 (45.59%)
+2019-01-31 11:32:16 1548934336.184398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2398069 total-bytes-write=52 payload-bytes-read=2398040/5242880 (45.74%)
+2019-01-31 11:32:16 1548934336.228406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2405041 total-bytes-write=52 payload-bytes-read=2405012/5242880 (45.87%)
+2019-01-31 11:32:16 1548934336.230309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2405539 total-bytes-write=52 payload-bytes-read=2405510/5242880 (45.88%)
+2019-01-31 11:32:16 1548934336.283646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2407531 total-bytes-write=52 payload-bytes-read=2407502/5242880 (45.92%)
+2019-01-31 11:32:16 1548934336.322649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2408477 total-bytes-write=52 payload-bytes-read=2408448/5242880 (45.94%)
+2019-01-31 11:32:16 1548934336.355265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2411963 total-bytes-write=52 payload-bytes-read=2411934/5242880 (46.00%)
+2019-01-31 11:32:16 1548934336.365341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2415449 total-bytes-write=52 payload-bytes-read=2415420/5242880 (46.07%)
+2019-01-31 11:32:16 1548934336.408437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2439303 total-bytes-write=52 payload-bytes-read=2439274/5242880 (46.53%)
+2019-01-31 11:32:16 1548934336.452440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2444731 total-bytes-write=52 payload-bytes-read=2444702/5242880 (46.63%)
+2019-01-31 11:32:16 1548934336.504659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2448217 total-bytes-write=52 payload-bytes-read=2448188/5242880 (46.70%)
+2019-01-31 11:32:16 1548934336.525383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2448715 total-bytes-write=52 payload-bytes-read=2448686/5242880 (46.70%)
+2019-01-31 11:32:16 1548934336.585210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2452201 total-bytes-write=52 payload-bytes-read=2452172/5242880 (46.77%)
+2019-01-31 11:32:16 1548934336.585701 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2452699 total-bytes-write=52 payload-bytes-read=2452670/5242880 (46.78%)
+2019-01-31 11:32:16 1548934336.587674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2456185 total-bytes-write=52 payload-bytes-read=2456156/5242880 (46.85%)
+2019-01-31 11:32:16 1548934336.588983 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2459621 total-bytes-write=52 payload-bytes-read=2459592/5242880 (46.91%)
+2019-01-31 11:32:16 1548934336.590118 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2463107 total-bytes-write=52 payload-bytes-read=2463078/5242880 (46.98%)
+2019-01-31 11:32:16 1548934336.591173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2465597 total-bytes-write=52 payload-bytes-read=2465568/5242880 (47.03%)
+2019-01-31 11:32:16 1548934336.592010 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2469083 total-bytes-write=52 payload-bytes-read=2469054/5242880 (47.09%)
+2019-01-31 11:32:16 1548934336.608017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2470079 total-bytes-write=52 payload-bytes-read=2470050/5242880 (47.11%)
+2019-01-31 11:32:16 1548934336.627271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2472569 total-bytes-write=52 payload-bytes-read=2472540/5242880 (47.16%)
+2019-01-31 11:32:16 1548934336.628397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2476005 total-bytes-write=52 payload-bytes-read=2475976/5242880 (47.23%)
+2019-01-31 11:32:16 1548934336.639223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2477001 total-bytes-write=52 payload-bytes-read=2476972/5242880 (47.24%)
+2019-01-31 11:32:16 1548934336.659482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2480985 total-bytes-write=52 payload-bytes-read=2480956/5242880 (47.32%)
+2019-01-31 11:32:16 1548934336.669895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2481981 total-bytes-write=52 payload-bytes-read=2481952/5242880 (47.34%)
+2019-01-31 11:32:16 1548934336.671492 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:32:16 1548934336.681372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2488953 total-bytes-write=52 payload-bytes-read=2488924/5242880 (47.47%)
+2019-01-31 11:32:16 1548934336.740625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2493001 total-bytes-write=52 payload-bytes-read=2492972/5242880 (47.55%)
+2019-01-31 11:32:16 1548934336.784413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2508275 total-bytes-write=52 payload-bytes-read=2508246/5242880 (47.84%)
+2019-01-31 11:32:16 1548934336.828404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2516243 total-bytes-write=52 payload-bytes-read=2516214/5242880 (47.99%)
+2019-01-31 11:32:16 1548934336.836832 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2518235 total-bytes-write=52 payload-bytes-read=2518206/5242880 (48.03%)
+2019-01-31 11:32:16 1548934336.860738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2521223 total-bytes-write=52 payload-bytes-read=2521194/5242880 (48.09%)
+2019-01-31 11:32:16 1548934336.861862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2524659 total-bytes-write=52 payload-bytes-read=2524630/5242880 (48.15%)
+2019-01-31 11:32:16 1548934336.885429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2525655 total-bytes-write=52 payload-bytes-read=2525626/5242880 (48.17%)
+2019-01-31 11:32:16 1548934336.893332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:32:16 1548934336.923627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2533125 total-bytes-write=52 payload-bytes-read=2533096/5242880 (48.31%)
+2019-01-31 11:32:16 1548934336.923731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2536611 total-bytes-write=52 payload-bytes-read=2536582/5242880 (48.38%)
+2019-01-31 11:32:16 1548934336.932981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2538105 total-bytes-write=52 payload-bytes-read=2538076/5242880 (48.41%)
+2019-01-31 11:32:16 1548934336.954706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2541043 total-bytes-write=52 payload-bytes-read=2541014/5242880 (48.47%)
+2019-01-31 11:32:16 1548934336.972720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2543533 total-bytes-write=52 payload-bytes-read=2543504/5242880 (48.51%)
+2019-01-31 11:32:17 1548934337.033637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2547019 total-bytes-write=52 payload-bytes-read=2546990/5242880 (48.58%)
+2019-01-31 11:32:17 1548934337.137919 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2550505 total-bytes-write=52 payload-bytes-read=2550476/5242880 (48.65%)
+2019-01-31 11:32:17 1548934337.180375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2553493 total-bytes-write=52 payload-bytes-read=2553464/5242880 (48.70%)
+2019-01-31 11:32:17 1548934337.189793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2556431 total-bytes-write=52 payload-bytes-read=2556402/5242880 (48.76%)
+2019-01-31 11:32:17 1548934337.195284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2559917 total-bytes-write=52 payload-bytes-read=2559888/5242880 (48.83%)
+2019-01-31 11:32:17 1548934337.236390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2563901 total-bytes-write=52 payload-bytes-read=2563872/5242880 (48.90%)
+2019-01-31 11:32:17 1548934337.493052 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2567387 total-bytes-write=52 payload-bytes-read=2567358/5242880 (48.97%)
+2019-01-31 11:32:17 1548934337.559676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2570873 total-bytes-write=52 payload-bytes-read=2570844/5242880 (49.03%)
+2019-01-31 11:32:17 1548934337.563654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2574309 total-bytes-write=52 payload-bytes-read=2574280/5242880 (49.10%)
+2019-01-31 11:32:17 1548934337.564894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2574807 total-bytes-write=52 payload-bytes-read=2574778/5242880 (49.11%)
+2019-01-31 11:32:17 1548934337.566204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2578293 total-bytes-write=52 payload-bytes-read=2578264/5242880 (49.18%)
+2019-01-31 11:32:17 1548934337.569889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2578791 total-bytes-write=52 payload-bytes-read=2578762/5242880 (49.19%)
+2019-01-31 11:32:17 1548934337.592428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2582277 total-bytes-write=52 payload-bytes-read=2582248/5242880 (49.25%)
+2019-01-31 11:32:17 1548934337.621935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2583273 total-bytes-write=52 payload-bytes-read=2583244/5242880 (49.27%)
+2019-01-31 11:32:17 1548934337.632221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2587257 total-bytes-write=52 payload-bytes-read=2587228/5242880 (49.35%)
+2019-01-31 11:32:17 1548934337.641284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2591689 total-bytes-write=52 payload-bytes-read=2591660/5242880 (49.43%)
+2019-01-31 11:32:17 1548934337.644824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2595175 total-bytes-write=52 payload-bytes-read=2595146/5242880 (49.50%)
+2019-01-31 11:32:17 1548934337.648015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2599159 total-bytes-write=52 payload-bytes-read=2599130/5242880 (49.57%)
+2019-01-31 11:32:17 1548934337.649397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2602645 total-bytes-write=52 payload-bytes-read=2602616/5242880 (49.64%)
+2019-01-31 11:32:17 1548934337.649822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2603143 total-bytes-write=52 payload-bytes-read=2603114/5242880 (49.65%)
+2019-01-31 11:32:17 1548934337.654440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2606579 total-bytes-write=52 payload-bytes-read=2606550/5242880 (49.72%)
+2019-01-31 11:32:17 1548934337.658343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2610563 total-bytes-write=52 payload-bytes-read=2610534/5242880 (49.79%)
+2019-01-31 11:32:17 1548934337.659788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2614049 total-bytes-write=52 payload-bytes-read=2614020/5242880 (49.86%)
+2019-01-31 11:32:17 1548934337.684957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2615045 total-bytes-write=52 payload-bytes-read=2615016/5242880 (49.88%)
+2019-01-31 11:32:17 1548934337.686978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2618531 total-bytes-write=52 payload-bytes-read=2618502/5242880 (49.94%)
+2019-01-31 11:32:17 1548934337.794967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2621021 total-bytes-write=52 payload-bytes-read=2620992/5242880 (49.99%)
+2019-01-31 11:32:17 1548934337.804369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2624955 total-bytes-write=52 payload-bytes-read=2624926/5242880 (50.07%)
+2019-01-31 11:32:17 1548934337.833520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2628441 total-bytes-write=52 payload-bytes-read=2628412/5242880 (50.13%)
+2019-01-31 11:32:17 1548934337.836117 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2631927 total-bytes-write=52 payload-bytes-read=2631898/5242880 (50.20%)
+2019-01-31 11:32:17 1548934337.876401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2637853 total-bytes-write=52 payload-bytes-read=2637824/5242880 (50.31%)
+2019-01-31 11:32:17 1548934337.920410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2641339 total-bytes-write=52 payload-bytes-read=2641310/5242880 (50.38%)
+2019-01-31 11:32:17 1548934337.924466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2644825 total-bytes-write=52 payload-bytes-read=2644796/5242880 (50.45%)
+2019-01-31 11:32:17 1548934337.968398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2648809 total-bytes-write=52 payload-bytes-read=2648780/5242880 (50.52%)
+2019-01-31 11:32:18 1548934338.012407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2652295 total-bytes-write=52 payload-bytes-read=2652266/5242880 (50.59%)
+2019-01-31 11:32:18 1548934338.017033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2653291 total-bytes-write=52 payload-bytes-read=2653262/5242880 (50.61%)
+2019-01-31 11:32:18 1548934338.017539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2656727 total-bytes-write=52 payload-bytes-read=2656698/5242880 (50.67%)
+2019-01-31 11:32:18 1548934338.038755 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2659217 total-bytes-write=52 payload-bytes-read=2659188/5242880 (50.72%)
+2019-01-31 11:32:18 1548934338.051573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2662703 total-bytes-write=52 payload-bytes-read=2662674/5242880 (50.79%)
+2019-01-31 11:32:18 1548934338.065327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2666189 total-bytes-write=52 payload-bytes-read=2666160/5242880 (50.85%)
+2019-01-31 11:32:18 1548934338.108403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2669675 total-bytes-write=52 payload-bytes-read=2669646/5242880 (50.92%)
+2019-01-31 11:32:18 1548934338.152404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2670621 total-bytes-write=52 payload-bytes-read=2670592/5242880 (50.94%)
+2019-01-31 11:32:18 1548934338.162770 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2674107 total-bytes-write=52 payload-bytes-read=2674078/5242880 (51.00%)
+2019-01-31 11:32:18 1548934338.204404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2683569 total-bytes-write=52 payload-bytes-read=2683540/5242880 (51.18%)
+2019-01-31 11:32:18 1548934338.248400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2690491 total-bytes-write=52 payload-bytes-read=2690462/5242880 (51.32%)
+2019-01-31 11:32:18 1548934338.254661 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2694475 total-bytes-write=52 payload-bytes-read=2694446/5242880 (51.39%)
+2019-01-31 11:32:18 1548934338.283080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2697961 total-bytes-write=52 payload-bytes-read=2697932/5242880 (51.46%)
+2019-01-31 11:32:18 1548934338.291710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2701945 total-bytes-write=52 payload-bytes-read=2701916/5242880 (51.53%)
+2019-01-31 11:32:18 1548934338.323291 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:32:18 1548934338.324260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2709365 total-bytes-write=52 payload-bytes-read=2709336/5242880 (51.68%)
+2019-01-31 11:32:18 1548934338.331824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2712851 total-bytes-write=52 payload-bytes-read=2712822/5242880 (51.74%)
+2019-01-31 11:32:18 1548934338.332745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2716835 total-bytes-write=52 payload-bytes-read=2716806/5242880 (51.82%)
+2019-01-31 11:32:18 1548934338.332809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2717333 total-bytes-write=52 payload-bytes-read=2717304/5242880 (51.83%)
+2019-01-31 11:32:18 1548934338.342898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2720769 total-bytes-write=52 payload-bytes-read=2720740/5242880 (51.89%)
+2019-01-31 11:32:18 1548934338.352591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2721267 total-bytes-write=52 payload-bytes-read=2721238/5242880 (51.90%)
+2019-01-31 11:32:18 1548934338.353022 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2724753 total-bytes-write=52 payload-bytes-read=2724724/5242880 (51.97%)
+2019-01-31 11:32:18 1548934338.370699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2725749 total-bytes-write=52 payload-bytes-read=2725720/5242880 (51.99%)
+2019-01-31 11:32:18 1548934338.387044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2732721 total-bytes-write=52 payload-bytes-read=2732692/5242880 (52.12%)
+2019-01-31 11:32:18 1548934338.387131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2736655 total-bytes-write=52 payload-bytes-read=2736626/5242880 (52.20%)
+2019-01-31 11:32:18 1548934338.403761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2740639 total-bytes-write=52 payload-bytes-read=2740610/5242880 (52.27%)
+2019-01-31 11:32:18 1548934338.458936 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2742133 total-bytes-write=52 payload-bytes-read=2742104/5242880 (52.30%)
+2019-01-31 11:32:18 1548934338.460076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2744125 total-bytes-write=52 payload-bytes-read=2744096/5242880 (52.34%)
+2019-01-31 11:32:18 1548934338.460265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2747611 total-bytes-write=52 payload-bytes-read=2747582/5242880 (52.41%)
+2019-01-31 11:32:18 1548934338.481709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2749105 total-bytes-write=52 payload-bytes-read=2749076/5242880 (52.43%)
+2019-01-31 11:32:18 1548934338.487586 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2752541 total-bytes-write=52 payload-bytes-read=2752512/5242880 (52.50%)
+2019-01-31 11:32:18 1548934338.502798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2756525 total-bytes-write=52 payload-bytes-read=2756496/5242880 (52.58%)
+2019-01-31 11:32:18 1548934338.565423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2757023 total-bytes-write=52 payload-bytes-read=2756994/5242880 (52.59%)
+2019-01-31 11:32:18 1548934338.571222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2760509 total-bytes-write=52 payload-bytes-read=2760480/5242880 (52.65%)
+2019-01-31 11:32:18 1548934338.573392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2764493 total-bytes-write=52 payload-bytes-read=2764464/5242880 (52.73%)
+2019-01-31 11:32:18 1548934338.573948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2767979 total-bytes-write=52 payload-bytes-read=2767950/5242880 (52.79%)
+2019-01-31 11:32:18 1548934338.589035 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2770419 total-bytes-write=52 payload-bytes-read=2770390/5242880 (52.84%)
+2019-01-31 11:32:18 1548934338.611784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2773905 total-bytes-write=52 payload-bytes-read=2773876/5242880 (52.91%)
+2019-01-31 11:32:18 1548934338.618590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2777889 total-bytes-write=52 payload-bytes-read=2777860/5242880 (52.98%)
+2019-01-31 11:32:18 1548934338.674776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2781375 total-bytes-write=52 payload-bytes-read=2781346/5242880 (53.05%)
+2019-01-31 11:32:18 1548934338.675711 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2785309 total-bytes-write=52 payload-bytes-read=2785280/5242880 (53.12%)
+2019-01-31 11:32:18 1548934338.696285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2786305 total-bytes-write=52 payload-bytes-read=2786276/5242880 (53.14%)
+2019-01-31 11:32:18 1548934338.698233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2790289 total-bytes-write=52 payload-bytes-read=2790260/5242880 (53.22%)
+2019-01-31 11:32:18 1548934338.732284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2793775 total-bytes-write=52 payload-bytes-read=2793746/5242880 (53.29%)
+2019-01-31 11:32:18 1548934338.762626 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2797759 total-bytes-write=52 payload-bytes-read=2797730/5242880 (53.36%)
+2019-01-31 11:32:18 1548934338.762695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2798755 total-bytes-write=52 payload-bytes-read=2798726/5242880 (53.38%)
+2019-01-31 11:32:18 1548934338.777209 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2801693 total-bytes-write=52 payload-bytes-read=2801664/5242880 (53.44%)
+2019-01-31 11:32:18 1548934338.778263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2804681 total-bytes-write=52 payload-bytes-read=2804652/5242880 (53.49%)
+2019-01-31 11:32:18 1548934338.789611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2808167 total-bytes-write=52 payload-bytes-read=2808138/5242880 (53.56%)
+2019-01-31 11:32:18 1548934338.791383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2811653 total-bytes-write=52 payload-bytes-read=2811624/5242880 (53.63%)
+2019-01-31 11:32:18 1548934338.836429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2834013 total-bytes-write=52 payload-bytes-read=2833984/5242880 (54.05%)
+2019-01-31 11:32:18 1548934338.880425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2856821 total-bytes-write=52 payload-bytes-read=2856792/5242880 (54.49%)
+2019-01-31 11:32:18 1548934338.924431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2865287 total-bytes-write=52 payload-bytes-read=2865258/5242880 (54.65%)
+2019-01-31 11:32:19 1548934339.053778 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2867229 total-bytes-write=52 payload-bytes-read=2867200/5242880 (54.69%)
+2019-01-31 11:32:19 1548934339.054842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2874699 total-bytes-write=52 payload-bytes-read=2874670/5242880 (54.83%)
+2019-01-31 11:32:19 1548934339.062744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2878683 total-bytes-write=52 payload-bytes-read=2878654/5242880 (54.91%)
+2019-01-31 11:32:19 1548934339.094481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2882169 total-bytes-write=52 payload-bytes-read=2882140/5242880 (54.97%)
+2019-01-31 11:32:19 1548934339.103471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2885605 total-bytes-write=52 payload-bytes-read=2885576/5242880 (55.04%)
+2019-01-31 11:32:19 1548934339.138307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2886103 total-bytes-write=52 payload-bytes-read=2886074/5242880 (55.05%)
+2019-01-31 11:32:19 1548934339.153570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2887099 total-bytes-write=52 payload-bytes-read=2887070/5242880 (55.07%)
+2019-01-31 11:32:19 1548934339.163732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2890585 total-bytes-write=52 payload-bytes-read=2890556/5242880 (55.13%)
+2019-01-31 11:32:19 1548934339.164786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2894569 total-bytes-write=52 payload-bytes-read=2894540/5242880 (55.21%)
+2019-01-31 11:32:19 1548934339.165524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2899051 total-bytes-write=52 payload-bytes-read=2899022/5242880 (55.29%)
+2019-01-31 11:32:19 1548934339.173838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2902985 total-bytes-write=52 payload-bytes-read=2902956/5242880 (55.37%)
+2019-01-31 11:32:19 1548934339.175642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2906969 total-bytes-write=52 payload-bytes-read=2906940/5242880 (55.45%)
+2019-01-31 11:32:19 1548934339.175728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2910455 total-bytes-write=52 payload-bytes-read=2910426/5242880 (55.51%)
+2019-01-31 11:32:19 1548934339.186409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2914439 total-bytes-write=52 payload-bytes-read=2914410/5242880 (55.59%)
+2019-01-31 11:32:19 1548934339.225723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2915933 total-bytes-write=52 payload-bytes-read=2915904/5242880 (55.62%)
+2019-01-31 11:32:19 1548934339.265807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2918871 total-bytes-write=52 payload-bytes-read=2918842/5242880 (55.67%)
+2019-01-31 11:32:19 1548934339.368487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2922855 total-bytes-write=52 payload-bytes-read=2922826/5242880 (55.75%)
+2019-01-31 11:32:19 1548934339.369640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2926341 total-bytes-write=52 payload-bytes-read=2926312/5242880 (55.81%)
+2019-01-31 11:32:19 1548934339.386827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2930325 total-bytes-write=52 payload-bytes-read=2930296/5242880 (55.89%)
+2019-01-31 11:32:19 1548934339.388180 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2934259 total-bytes-write=52 payload-bytes-read=2934230/5242880 (55.97%)
+2019-01-31 11:32:19 1548934339.405303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2937745 total-bytes-write=52 payload-bytes-read=2937716/5242880 (56.03%)
+2019-01-31 11:32:19 1548934339.405969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2939737 total-bytes-write=52 payload-bytes-read=2939708/5242880 (56.07%)
+2019-01-31 11:32:19 1548934339.408242 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2943223 total-bytes-write=52 payload-bytes-read=2943194/5242880 (56.14%)
+2019-01-31 11:32:19 1548934339.411678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2947207 total-bytes-write=52 payload-bytes-read=2947178/5242880 (56.21%)
+2019-01-31 11:32:19 1548934339.411820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2954129 total-bytes-write=52 payload-bytes-read=2954100/5242880 (56.34%)
+2019-01-31 11:32:19 1548934339.411895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2954627 total-bytes-write=52 payload-bytes-read=2954598/5242880 (56.35%)
+2019-01-31 11:32:19 1548934339.418690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2958611 total-bytes-write=52 payload-bytes-read=2958582/5242880 (56.43%)
+2019-01-31 11:32:19 1548934339.419526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2959607 total-bytes-write=52 payload-bytes-read=2959578/5242880 (56.45%)
+2019-01-31 11:32:19 1548934339.420667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2963093 total-bytes-write=52 payload-bytes-read=2963064/5242880 (56.52%)
+2019-01-31 11:32:19 1548934339.430304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2967027 total-bytes-write=52 payload-bytes-read=2966998/5242880 (56.59%)
+2019-01-31 11:32:19 1548934339.431442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2968521 total-bytes-write=52 payload-bytes-read=2968492/5242880 (56.62%)
+2019-01-31 11:32:19 1548934339.432572 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2975991 total-bytes-write=52 payload-bytes-read=2975962/5242880 (56.76%)
+2019-01-31 11:32:19 1548934339.434575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2979975 total-bytes-write=52 payload-bytes-read=2979946/5242880 (56.84%)
+2019-01-31 11:32:19 1548934339.444576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2984407 total-bytes-write=52 payload-bytes-read=2984378/5242880 (56.92%)
+2019-01-31 11:32:19 1548934339.445394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2989885 total-bytes-write=52 payload-bytes-read=2989856/5242880 (57.03%)
+2019-01-31 11:32:19 1548934339.452011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2993869 total-bytes-write=52 payload-bytes-read=2993840/5242880 (57.10%)
+2019-01-31 11:32:19 1548934339.484628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2996359 total-bytes-write=52 payload-bytes-read=2996330/5242880 (57.15%)
+2019-01-31 11:32:19 1548934339.484998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2996857 total-bytes-write=52 payload-bytes-read=2996828/5242880 (57.16%)
+2019-01-31 11:32:19 1548934339.495199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2997853 total-bytes-write=52 payload-bytes-read=2997824/5242880 (57.18%)
+2019-01-31 11:32:19 1548934339.557875 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3001289 total-bytes-write=52 payload-bytes-read=3001260/5242880 (57.24%)
+2019-01-31 11:32:19 1548934339.596610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3003281 total-bytes-write=52 payload-bytes-read=3003252/5242880 (57.28%)
+2019-01-31 11:32:19 1548934339.613700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3006767 total-bytes-write=52 payload-bytes-read=3006738/5242880 (57.35%)
+2019-01-31 11:32:19 1548934339.614847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3010253 total-bytes-write=52 payload-bytes-read=3010224/5242880 (57.42%)
+2019-01-31 11:32:19 1548934339.656401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3017175 total-bytes-write=52 payload-bytes-read=3017146/5242880 (57.55%)
+2019-01-31 11:32:19 1548934339.700419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3029127 total-bytes-write=52 payload-bytes-read=3029098/5242880 (57.78%)
+2019-01-31 11:32:19 1548934339.744430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3031069 total-bytes-write=52 payload-bytes-read=3031040/5242880 (57.81%)
+2019-01-31 11:32:19 1548934339.753451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3034555 total-bytes-write=52 payload-bytes-read=3034526/5242880 (57.88%)
+2019-01-31 11:32:19 1548934339.754449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3038041 total-bytes-write=52 payload-bytes-read=3038012/5242880 (57.95%)
+2019-01-31 11:32:19 1548934339.796420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3058409 total-bytes-write=52 payload-bytes-read=3058380/5242880 (58.33%)
+2019-01-31 11:32:19 1548934339.840408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3070809 total-bytes-write=52 payload-bytes-read=3070780/5242880 (58.57%)
+2019-01-31 11:32:19 1548934339.842782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3071805 total-bytes-write=52 payload-bytes-read=3071776/5242880 (58.59%)
+2019-01-31 11:32:19 1548934339.843342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3074793 total-bytes-write=52 payload-bytes-read=3074764/5242880 (58.65%)
+2019-01-31 11:32:19 1548934339.878407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3077781 total-bytes-write=52 payload-bytes-read=3077752/5242880 (58.70%)
+2019-01-31 11:32:19 1548934339.920445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3098099 total-bytes-write=52 payload-bytes-read=3098070/5242880 (59.09%)
+2019-01-31 11:32:19 1548934339.964429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3106067 total-bytes-write=52 payload-bytes-read=3106038/5242880 (59.24%)
+2019-01-31 11:32:19 1548934339.967006 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3109553 total-bytes-write=52 payload-bytes-read=3109524/5242880 (59.31%)
+2019-01-31 11:32:19 1548934339.967662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3110051 total-bytes-write=52 payload-bytes-read=3110022/5242880 (59.32%)
+2019-01-31 11:32:19 1548934339.982894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3113487 total-bytes-write=52 payload-bytes-read=3113458/5242880 (59.38%)
+2019-01-31 11:32:19 1548934339.999504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3117471 total-bytes-write=52 payload-bytes-read=3117442/5242880 (59.46%)
+2019-01-31 11:32:20 1548934340.001876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3120459 total-bytes-write=52 payload-bytes-read=3120430/5242880 (59.52%)
+2019-01-31 11:32:20 1548934340.003809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3123945 total-bytes-write=52 payload-bytes-read=3123916/5242880 (59.58%)
+2019-01-31 11:32:20 1548934340.036216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3127431 total-bytes-write=52 payload-bytes-read=3127402/5242880 (59.65%)
+2019-01-31 11:32:20 1548934340.076421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3133855 total-bytes-write=52 payload-bytes-read=3133826/5242880 (59.77%)
+2019-01-31 11:32:20 1548934340.120437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3148745 total-bytes-write=52 payload-bytes-read=3148716/5242880 (60.06%)
+2019-01-31 11:32:20 1548934340.164404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3165627 total-bytes-write=52 payload-bytes-read=3165598/5242880 (60.38%)
+2019-01-31 11:32:20 1548934340.208432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3173097 total-bytes-write=52 payload-bytes-read=3173068/5242880 (60.52%)
+2019-01-31 11:32:20 1548934340.283251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3176583 total-bytes-write=52 payload-bytes-read=3176554/5242880 (60.59%)
+2019-01-31 11:32:20 1548934340.328097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3177081 total-bytes-write=52 payload-bytes-read=3177052/5242880 (60.60%)
+2019-01-31 11:32:20 1548934340.408414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3178525 total-bytes-write=52 payload-bytes-read=3178496/5242880 (60.62%)
+2019-01-31 11:32:20 1548934340.445122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3182011 total-bytes-write=52 payload-bytes-read=3181982/5242880 (60.69%)
+2019-01-31 11:32:20 1548934340.445951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3185497 total-bytes-write=52 payload-bytes-read=3185468/5242880 (60.76%)
+2019-01-31 11:32:20 1548934340.488412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3195905 total-bytes-write=52 payload-bytes-read=3195876/5242880 (60.96%)
+2019-01-31 11:32:20 1548934340.532413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3200885 total-bytes-write=52 payload-bytes-read=3200856/5242880 (61.05%)
+2019-01-31 11:32:20 1548934340.546818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3204869 total-bytes-write=52 payload-bytes-read=3204840/5242880 (61.13%)
+2019-01-31 11:32:20 1548934340.558886 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3208853 total-bytes-write=52 payload-bytes-read=3208824/5242880 (61.20%)
+2019-01-31 11:32:20 1548934340.600463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3242617 total-bytes-write=52 payload-bytes-read=3242588/5242880 (61.85%)
+2019-01-31 11:32:20 1548934340.644414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3251531 total-bytes-write=52 payload-bytes-read=3251502/5242880 (62.02%)
+2019-01-31 11:32:20 1548934340.830417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3255017 total-bytes-write=52 payload-bytes-read=3254988/5242880 (62.08%)
+2019-01-31 11:32:20 1548934340.861213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3258503 total-bytes-write=52 payload-bytes-read=3258474/5242880 (62.15%)
+2019-01-31 11:32:20 1548934340.904402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3261939 total-bytes-write=52 payload-bytes-read=3261910/5242880 (62.22%)
+2019-01-31 11:32:20 1548934340.905928 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3263931 total-bytes-write=52 payload-bytes-read=3263902/5242880 (62.25%)
+2019-01-31 11:32:20 1548934340.916141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3267417 total-bytes-write=52 payload-bytes-read=3267388/5242880 (62.32%)
+2019-01-31 11:32:20 1548934340.956432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3290275 total-bytes-write=52 payload-bytes-read=3290246/5242880 (62.76%)
+2019-01-31 11:32:21 1548934341.000517 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3348341 total-bytes-write=52 payload-bytes-read=3348312/5242880 (63.86%)
+2019-01-31 11:32:21 1548934341.044397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3357803 total-bytes-write=52 payload-bytes-read=3357774/5242880 (64.04%)
+2019-01-31 11:32:21 1548934341.066479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3359247 total-bytes-write=52 payload-bytes-read=3359218/5242880 (64.07%)
+2019-01-31 11:32:21 1548934341.083190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3361737 total-bytes-write=52 payload-bytes-read=3361708/5242880 (64.12%)
+2019-01-31 11:32:21 1548934341.106609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3365223 total-bytes-write=52 payload-bytes-read=3365194/5242880 (64.19%)
+2019-01-31 11:32:21 1548934341.108994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3369207 total-bytes-write=52 payload-bytes-read=3369178/5242880 (64.26%)
+2019-01-31 11:32:21 1548934341.127408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3372693 total-bytes-write=52 payload-bytes-read=3372664/5242880 (64.33%)
+2019-01-31 11:32:21 1548934341.128129 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3375133 total-bytes-write=52 payload-bytes-read=3375104/5242880 (64.38%)
+2019-01-31 11:32:21 1548934341.140655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3378619 total-bytes-write=52 payload-bytes-read=3378590/5242880 (64.44%)
+2019-01-31 11:32:21 1548934341.141103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3380113 total-bytes-write=52 payload-bytes-read=3380084/5242880 (64.47%)
+2019-01-31 11:32:21 1548934341.147422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3383599 total-bytes-write=52 payload-bytes-read=3383570/5242880 (64.54%)
+2019-01-31 11:32:21 1548934341.147647 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3384595 total-bytes-write=52 payload-bytes-read=3384566/5242880 (64.56%)
+2019-01-31 11:32:21 1548934341.148446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3388081 total-bytes-write=52 payload-bytes-read=3388052/5242880 (64.62%)
+2019-01-31 11:32:21 1548934341.159663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3392015 total-bytes-write=52 payload-bytes-read=3391986/5242880 (64.70%)
+2019-01-31 11:32:21 1548934341.160142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3393509 total-bytes-write=52 payload-bytes-read=3393480/5242880 (64.73%)
+2019-01-31 11:32:21 1548934341.167174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3396995 total-bytes-write=52 payload-bytes-read=3396966/5242880 (64.79%)
+2019-01-31 11:32:21 1548934341.274069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3398489 total-bytes-write=52 payload-bytes-read=3398460/5242880 (64.82%)
+2019-01-31 11:32:21 1548934341.290163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3399983 total-bytes-write=52 payload-bytes-read=3399954/5242880 (64.85%)
+2019-01-31 11:32:21 1548934341.332874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3403469 total-bytes-write=52 payload-bytes-read=3403440/5242880 (64.92%)
+2019-01-31 11:32:21 1548934341.376424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3403967 total-bytes-write=52 payload-bytes-read=3403938/5242880 (64.92%)
+2019-01-31 11:32:21 1548934341.446420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3407453 total-bytes-write=52 payload-bytes-read=3407424/5242880 (64.99%)
+2019-01-31 11:32:21 1548934341.488384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3407901 total-bytes-write=52 payload-bytes-read=3407872/5242880 (65.00%)
+2019-01-31 11:32:21 1548934341.489097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3411387 total-bytes-write=52 payload-bytes-read=3411358/5242880 (65.07%)
+2019-01-31 11:32:21 1548934341.532417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3421347 total-bytes-write=52 payload-bytes-read=3421318/5242880 (65.26%)
+2019-01-31 11:32:21 1548934341.576447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3448637 total-bytes-write=52 payload-bytes-read=3448608/5242880 (65.78%)
+2019-01-31 11:32:21 1548934341.620409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3455609 total-bytes-write=52 payload-bytes-read=3455580/5242880 (65.91%)
+2019-01-31 11:32:21 1548934341.620771 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3457053 total-bytes-write=52 payload-bytes-read=3457024/5242880 (65.94%)
+2019-01-31 11:32:21 1548934341.620846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3460539 total-bytes-write=52 payload-bytes-read=3460510/5242880 (66.00%)
+2019-01-31 11:32:21 1548934341.622300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3464523 total-bytes-write=52 payload-bytes-read=3464494/5242880 (66.08%)
+2019-01-31 11:32:21 1548934341.644865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3468507 total-bytes-write=52 payload-bytes-read=3468478/5242880 (66.16%)
+2019-01-31 11:32:21 1548934341.688435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3474931 total-bytes-write=52 payload-bytes-read=3474902/5242880 (66.28%)
+2019-01-31 11:32:21 1548934341.732416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3478417 total-bytes-write=52 payload-bytes-read=3478388/5242880 (66.34%)
+2019-01-31 11:32:21 1548934341.743582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:32:21 1548934341.784403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3486883 total-bytes-write=52 payload-bytes-read=3486854/5242880 (66.51%)
+2019-01-31 11:32:21 1548934341.832427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3503267 total-bytes-write=52 payload-bytes-read=3503238/5242880 (66.82%)
+2019-01-31 11:32:21 1548934341.876405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3513177 total-bytes-write=52 payload-bytes-read=3513148/5242880 (67.01%)
+2019-01-31 11:32:21 1548934341.914589 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3513675 total-bytes-write=52 payload-bytes-read=3513646/5242880 (67.02%)
+2019-01-31 11:32:21 1548934341.922206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3517161 total-bytes-write=52 payload-bytes-read=3517132/5242880 (67.08%)
+2019-01-31 11:32:21 1548934341.926061 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3517659 total-bytes-write=52 payload-bytes-read=3517630/5242880 (67.09%)
+2019-01-31 11:32:21 1548934341.969305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3521145 total-bytes-write=52 payload-bytes-read=3521116/5242880 (67.16%)
+2019-01-31 11:32:21 1548934341.971607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3524581 total-bytes-write=52 payload-bytes-read=3524552/5242880 (67.23%)
+2019-01-31 11:32:21 1548934341.985286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3525577 total-bytes-write=52 payload-bytes-read=3525548/5242880 (67.24%)
+2019-01-31 11:32:21 1548934341.994700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3526573 total-bytes-write=52 payload-bytes-read=3526544/5242880 (67.26%)
+2019-01-31 11:32:22 1548934342.036451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3545945 total-bytes-write=52 payload-bytes-read=3545916/5242880 (67.63%)
+2019-01-31 11:32:22 1548934342.080414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3546941 total-bytes-write=52 payload-bytes-read=3546912/5242880 (67.65%)
+2019-01-31 11:32:22 1548934342.128074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3549431 total-bytes-write=52 payload-bytes-read=3549402/5242880 (67.70%)
+2019-01-31 11:32:22 1548934342.139374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3552917 total-bytes-write=52 payload-bytes-read=3552888/5242880 (67.77%)
+2019-01-31 11:32:22 1548934342.140406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3555357 total-bytes-write=52 payload-bytes-read=3555328/5242880 (67.81%)
+2019-01-31 11:32:22 1548934342.170885 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3558843 total-bytes-write=52 payload-bytes-read=3558814/5242880 (67.88%)
+2019-01-31 11:32:22 1548934342.171120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3562329 total-bytes-write=52 payload-bytes-read=3562300/5242880 (67.95%)
+2019-01-31 11:32:22 1548934342.212415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3562827 total-bytes-write=52 payload-bytes-read=3562798/5242880 (67.95%)
+2019-01-31 11:32:22 1548934342.339344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3566313 total-bytes-write=52 payload-bytes-read=3566284/5242880 (68.02%)
+2019-01-31 11:32:22 1548934342.438639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3566811 total-bytes-write=52 payload-bytes-read=3566782/5242880 (68.03%)
+2019-01-31 11:32:22 1548934342.439144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3570297 total-bytes-write=52 payload-bytes-read=3570268/5242880 (68.10%)
+2019-01-31 11:32:22 1548934342.480437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3578215 total-bytes-write=52 payload-bytes-read=3578186/5242880 (68.25%)
+2019-01-31 11:32:22 1548934342.524409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3588623 total-bytes-write=52 payload-bytes-read=3588594/5242880 (68.45%)
+2019-01-31 11:32:22 1548934342.568463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3609987 total-bytes-write=52 payload-bytes-read=3609958/5242880 (68.85%)
+2019-01-31 11:32:22 1548934342.612399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3614967 total-bytes-write=52 payload-bytes-read=3614938/5242880 (68.95%)
+2019-01-31 11:32:22 1548934342.613802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3615963 total-bytes-write=52 payload-bytes-read=3615934/5242880 (68.97%)
+2019-01-31 11:32:22 1548934342.615456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3619449 total-bytes-write=52 payload-bytes-read=3619420/5242880 (69.03%)
+2019-01-31 11:32:22 1548934342.638159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3623383 total-bytes-write=52 payload-bytes-read=3623354/5242880 (69.11%)
+2019-01-31 11:32:22 1548934342.638245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3626869 total-bytes-write=52 payload-bytes-read=3626840/5242880 (69.18%)
+2019-01-31 11:32:22 1548934342.656178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3630853 total-bytes-write=52 payload-bytes-read=3630824/5242880 (69.25%)
+2019-01-31 11:32:22 1548934342.656249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3634837 total-bytes-write=52 payload-bytes-read=3634808/5242880 (69.33%)
+2019-01-31 11:32:22 1548934342.696390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3642257 total-bytes-write=52 payload-bytes-read=3642228/5242880 (69.47%)
+2019-01-31 11:32:22 1548934342.740394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3647735 total-bytes-write=52 payload-bytes-read=3647706/5242880 (69.57%)
+2019-01-31 11:32:22 1548934342.749402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3648731 total-bytes-write=52 payload-bytes-read=3648702/5242880 (69.59%)
+2019-01-31 11:32:22 1548934342.953134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3652217 total-bytes-write=52 payload-bytes-read=3652188/5242880 (69.66%)
+2019-01-31 11:32:22 1548934342.954259 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3653661 total-bytes-write=52 payload-bytes-read=3653632/5242880 (69.69%)
+2019-01-31 11:32:22 1548934342.956666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3657147 total-bytes-write=52 payload-bytes-read=3657118/5242880 (69.75%)
+2019-01-31 11:32:23 1548934343.003636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3661131 total-bytes-write=52 payload-bytes-read=3661102/5242880 (69.83%)
+2019-01-31 11:32:23 1548934343.006600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3665115 total-bytes-write=52 payload-bytes-read=3665086/5242880 (69.91%)
+2019-01-31 11:32:23 1548934343.048405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3678013 total-bytes-write=52 payload-bytes-read=3677984/5242880 (70.15%)
+2019-01-31 11:32:23 1548934343.092417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3681499 total-bytes-write=52 payload-bytes-read=3681470/5242880 (70.22%)
+2019-01-31 11:32:23 1548934343.104122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3682993 total-bytes-write=52 payload-bytes-read=3682964/5242880 (70.25%)
+2019-01-31 11:32:23 1548934343.104662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3686429 total-bytes-write=52 payload-bytes-read=3686400/5242880 (70.31%)
+2019-01-31 11:32:23 1548934343.105746 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3690413 total-bytes-write=52 payload-bytes-read=3690384/5242880 (70.39%)
+2019-01-31 11:32:23 1548934343.120953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3694397 total-bytes-write=52 payload-bytes-read=3694368/5242880 (70.46%)
+2019-01-31 11:32:23 1548934343.164410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3698879 total-bytes-write=52 payload-bytes-read=3698850/5242880 (70.55%)
+2019-01-31 11:32:23 1548934343.208419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3700373 total-bytes-write=52 payload-bytes-read=3700344/5242880 (70.58%)
+2019-01-31 11:32:23 1548934343.339061 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3702813 total-bytes-write=52 payload-bytes-read=3702784/5242880 (70.62%)
+2019-01-31 11:32:23 1548934343.454661 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3706299 total-bytes-write=52 payload-bytes-read=3706270/5242880 (70.69%)
+2019-01-31 11:32:23 1548934343.492490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3707793 total-bytes-write=52 payload-bytes-read=3707764/5242880 (70.72%)
+2019-01-31 11:32:23 1548934343.493448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3711279 total-bytes-write=52 payload-bytes-read=3711250/5242880 (70.79%)
+2019-01-31 11:32:23 1548934343.513401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3714765 total-bytes-write=52 payload-bytes-read=3714736/5242880 (70.85%)
+2019-01-31 11:32:23 1548934343.567828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3716259 total-bytes-write=52 payload-bytes-read=3716230/5242880 (70.88%)
+2019-01-31 11:32:23 1548934343.568200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3717753 total-bytes-write=52 payload-bytes-read=3717724/5242880 (70.91%)
+2019-01-31 11:32:23 1548934343.608450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3743051 total-bytes-write=52 payload-bytes-read=3743022/5242880 (71.39%)
+2019-01-31 11:32:23 1548934343.652404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3746039 total-bytes-write=52 payload-bytes-read=3746010/5242880 (71.45%)
+2019-01-31 11:32:23 1548934343.653320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3747533 total-bytes-write=52 payload-bytes-read=3747504/5242880 (71.48%)
+2019-01-31 11:32:23 1548934343.673743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3750023 total-bytes-write=52 payload-bytes-read=3749994/5242880 (71.53%)
+2019-01-31 11:32:23 1548934343.686424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3752463 total-bytes-write=52 payload-bytes-read=3752434/5242880 (71.57%)
+2019-01-31 11:32:23 1548934343.706577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3754953 total-bytes-write=52 payload-bytes-read=3754924/5242880 (71.62%)
+2019-01-31 11:32:23 1548934343.777551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3757443 total-bytes-write=52 payload-bytes-read=3757414/5242880 (71.67%)
+2019-01-31 11:32:23 1548934343.820395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3763419 total-bytes-write=52 payload-bytes-read=3763390/5242880 (71.78%)
+2019-01-31 11:32:23 1548934343.950227 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3765909 total-bytes-write=52 payload-bytes-read=3765880/5242880 (71.83%)
+2019-01-31 11:32:24 1548934344.082466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3769345 total-bytes-write=52 payload-bytes-read=3769316/5242880 (71.89%)
+2019-01-31 11:32:24 1548934344.083034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3769843 total-bytes-write=52 payload-bytes-read=3769814/5242880 (71.90%)
+2019-01-31 11:32:24 1548934344.085092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3773329 total-bytes-write=52 payload-bytes-read=3773300/5242880 (71.97%)
+2019-01-31 11:32:24 1548934344.086075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3777313 total-bytes-write=52 payload-bytes-read=3777284/5242880 (72.05%)
+2019-01-31 11:32:24 1548934344.105694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3781297 total-bytes-write=52 payload-bytes-read=3781268/5242880 (72.12%)
+2019-01-31 11:32:24 1548934344.148400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3787223 total-bytes-write=52 payload-bytes-read=3787194/5242880 (72.23%)
+2019-01-31 11:32:24 1548934344.248490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3788717 total-bytes-write=52 payload-bytes-read=3788688/5242880 (72.26%)
+2019-01-31 11:32:24 1548934344.312571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3792203 total-bytes-write=52 payload-bytes-read=3792174/5242880 (72.33%)
+2019-01-31 11:32:24 1548934344.334427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3792701 total-bytes-write=52 payload-bytes-read=3792672/5242880 (72.34%)
+2019-01-31 11:32:24 1548934344.478349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3793199 total-bytes-write=52 payload-bytes-read=3793170/5242880 (72.35%)
+2019-01-31 11:32:24 1548934344.555002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3796685 total-bytes-write=52 payload-bytes-read=3796656/5242880 (72.42%)
+2019-01-31 11:32:24 1548934344.558171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3800171 total-bytes-write=52 payload-bytes-read=3800142/5242880 (72.48%)
+2019-01-31 11:32:24 1548934344.600434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3824971 total-bytes-write=52 payload-bytes-read=3824942/5242880 (72.95%)
+2019-01-31 11:32:24 1548934344.644462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3850269 total-bytes-write=52 payload-bytes-read=3850240/5242880 (73.44%)
+2019-01-31 11:32:24 1548934344.688439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3859233 total-bytes-write=52 payload-bytes-read=3859204/5242880 (73.61%)
+2019-01-31 11:32:24 1548934344.689714 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3861723 total-bytes-write=52 payload-bytes-read=3861694/5242880 (73.66%)
+2019-01-31 11:32:24 1548934344.804773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3868645 total-bytes-write=52 payload-bytes-read=3868616/5242880 (73.79%)
+2019-01-31 11:32:24 1548934344.813362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3870139 total-bytes-write=52 payload-bytes-read=3870110/5242880 (73.82%)
+2019-01-31 11:32:24 1548934344.818533 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3872629 total-bytes-write=52 payload-bytes-read=3872600/5242880 (73.86%)
+2019-01-31 11:32:24 1548934344.819203 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3876115 total-bytes-write=52 payload-bytes-read=3876086/5242880 (73.93%)
+2019-01-31 11:32:24 1548934344.831373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3879601 total-bytes-write=52 payload-bytes-read=3879572/5242880 (74.00%)
+2019-01-31 11:32:24 1548934344.876427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3891005 total-bytes-write=52 payload-bytes-read=3890976/5242880 (74.21%)
+2019-01-31 11:32:24 1548934344.920445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3905397 total-bytes-write=52 payload-bytes-read=3905368/5242880 (74.49%)
+2019-01-31 11:32:24 1548934344.964441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3924271 total-bytes-write=52 payload-bytes-read=3924242/5242880 (74.85%)
+2019-01-31 11:32:25 1548934345.008511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3947129 total-bytes-write=52 payload-bytes-read=3947100/5242880 (75.28%)
+2019-01-31 11:32:25 1548934345.052434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3952557 total-bytes-write=52 payload-bytes-read=3952528/5242880 (75.39%)
+2019-01-31 11:32:25 1548934345.113765 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3956541 total-bytes-write=52 payload-bytes-read=3956512/5242880 (75.46%)
+2019-01-31 11:32:25 1548934345.113841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3960027 total-bytes-write=52 payload-bytes-read=3959998/5242880 (75.53%)
+2019-01-31 11:32:25 1548934345.124348 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3964011 total-bytes-write=52 payload-bytes-read=3963982/5242880 (75.61%)
+2019-01-31 11:32:25 1548934345.135992 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3964957 total-bytes-write=52 payload-bytes-read=3964928/5242880 (75.62%)
+2019-01-31 11:32:25 1548934345.157315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3968443 total-bytes-write=52 payload-bytes-read=3968414/5242880 (75.69%)
+2019-01-31 11:32:25 1548934345.158401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3969439 total-bytes-write=52 payload-bytes-read=3969410/5242880 (75.71%)
+2019-01-31 11:32:25 1548934345.162684 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3976909 total-bytes-write=52 payload-bytes-read=3976880/5242880 (75.85%)
+2019-01-31 11:32:25 1548934345.177229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3980395 total-bytes-write=52 payload-bytes-read=3980366/5242880 (75.92%)
+2019-01-31 11:32:25 1548934345.200394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3983831 total-bytes-write=52 payload-bytes-read=3983802/5242880 (75.98%)
+2019-01-31 11:32:25 1548934345.377994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3986321 total-bytes-write=52 payload-bytes-read=3986292/5242880 (76.03%)
+2019-01-31 11:32:25 1548934345.419347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3986819 total-bytes-write=52 payload-bytes-read=3986790/5242880 (76.04%)
+2019-01-31 11:32:25 1548934345.434092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3988811 total-bytes-write=52 payload-bytes-read=3988782/5242880 (76.08%)
+2019-01-31 11:32:25 1548934345.455481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3992297 total-bytes-write=52 payload-bytes-read=3992268/5242880 (76.15%)
+2019-01-31 11:32:25 1548934345.455984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3995285 total-bytes-write=52 payload-bytes-read=3995256/5242880 (76.20%)
+2019-01-31 11:32:25 1548934345.457083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3998721 total-bytes-write=52 payload-bytes-read=3998692/5242880 (76.27%)
+2019-01-31 11:32:25 1548934345.467123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4002705 total-bytes-write=52 payload-bytes-read=4002676/5242880 (76.34%)
+2019-01-31 11:32:25 1548934345.467203 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4003701 total-bytes-write=52 payload-bytes-read=4003672/5242880 (76.36%)
+2019-01-31 11:32:25 1548934345.472625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4010673 total-bytes-write=52 payload-bytes-read=4010644/5242880 (76.50%)
+2019-01-31 11:32:25 1548934345.472708 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4015105 total-bytes-write=52 payload-bytes-read=4015076/5242880 (76.58%)
+2019-01-31 11:32:25 1548934345.478362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4018591 total-bytes-write=52 payload-bytes-read=4018562/5242880 (76.65%)
+2019-01-31 11:32:25 1548934345.489501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4019089 total-bytes-write=52 payload-bytes-read=4019060/5242880 (76.66%)
+2019-01-31 11:32:25 1548934345.508488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4021081 total-bytes-write=52 payload-bytes-read=4021052/5242880 (76.70%)
+2019-01-31 11:32:25 1548934345.510471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4025563 total-bytes-write=52 payload-bytes-read=4025534/5242880 (76.78%)
+2019-01-31 11:32:25 1548934345.510683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4029049 total-bytes-write=52 payload-bytes-read=4029020/5242880 (76.85%)
+2019-01-31 11:32:25 1548934345.551306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4031489 total-bytes-write=52 payload-bytes-read=4031460/5242880 (76.89%)
+2019-01-31 11:32:25 1548934345.569865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4033979 total-bytes-write=52 payload-bytes-read=4033950/5242880 (76.94%)
+2019-01-31 11:32:25 1548934345.579138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4037963 total-bytes-write=52 payload-bytes-read=4037934/5242880 (77.02%)
+2019-01-31 11:32:25 1548934345.686606 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4041947 total-bytes-write=52 payload-bytes-read=4041918/5242880 (77.09%)
+2019-01-31 11:32:25 1548934345.728427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4053849 total-bytes-write=52 payload-bytes-read=4053820/5242880 (77.32%)
+2019-01-31 11:32:25 1548934345.772396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4054347 total-bytes-write=52 payload-bytes-read=4054318/5242880 (77.33%)
+2019-01-31 11:32:25 1548934345.785909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4057833 total-bytes-write=52 payload-bytes-read=4057804/5242880 (77.40%)
+2019-01-31 11:32:25 1548934345.798033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4061817 total-bytes-write=52 payload-bytes-read=4061788/5242880 (77.47%)
+2019-01-31 11:32:25 1548934345.819134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4065253 total-bytes-write=52 payload-bytes-read=4065224/5242880 (77.54%)
+2019-01-31 11:32:25 1548934345.823412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4066249 total-bytes-write=52 payload-bytes-read=4066220/5242880 (77.56%)
+2019-01-31 11:32:25 1548934345.825212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4069735 total-bytes-write=52 payload-bytes-read=4069706/5242880 (77.62%)
+2019-01-31 11:32:25 1548934345.837447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4073719 total-bytes-write=52 payload-bytes-read=4073690/5242880 (77.70%)
+2019-01-31 11:32:25 1548934345.838675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4077703 total-bytes-write=52 payload-bytes-read=4077674/5242880 (77.78%)
+2019-01-31 11:32:25 1548934345.880387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4083131 total-bytes-write=52 payload-bytes-read=4083102/5242880 (77.88%)
+2019-01-31 11:32:25 1548934345.952710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4086617 total-bytes-write=52 payload-bytes-read=4086588/5242880 (77.95%)
+2019-01-31 11:32:26 1548934346.015549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4087115 total-bytes-write=52 payload-bytes-read=4087086/5242880 (77.95%)
+2019-01-31 11:32:26 1548934346.045697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4091099 total-bytes-write=52 payload-bytes-read=4091070/5242880 (78.03%)
+2019-01-31 11:32:26 1548934346.073416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4095581 total-bytes-write=52 payload-bytes-read=4095552/5242880 (78.12%)
+2019-01-31 11:32:26 1548934346.074337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4096029 total-bytes-write=52 payload-bytes-read=4096000/5242880 (78.12%)
+2019-01-31 11:32:26 1548934346.075893 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4099515 total-bytes-write=52 payload-bytes-read=4099486/5242880 (78.19%)
+2019-01-31 11:32:26 1548934346.077350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4103499 total-bytes-write=52 payload-bytes-read=4103470/5242880 (78.27%)
+2019-01-31 11:32:26 1548934346.108367 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4103997 total-bytes-write=52 payload-bytes-read=4103968/5242880 (78.28%)
+2019-01-31 11:32:26 1548934346.109379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4106985 total-bytes-write=52 payload-bytes-read=4106956/5242880 (78.33%)
+2019-01-31 11:32:26 1548934346.126050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4110471 total-bytes-write=52 payload-bytes-read=4110442/5242880 (78.40%)
+2019-01-31 11:32:26 1548934346.140314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4114903 total-bytes-write=52 payload-bytes-read=4114874/5242880 (78.48%)
+2019-01-31 11:32:26 1548934346.141336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4118887 total-bytes-write=52 payload-bytes-read=4118858/5242880 (78.56%)
+2019-01-31 11:32:26 1548934346.144624 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4122373 total-bytes-write=52 payload-bytes-read=4122344/5242880 (78.63%)
+2019-01-31 11:32:26 1548934346.153963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4126357 total-bytes-write=52 payload-bytes-read=4126328/5242880 (78.70%)
+2019-01-31 11:32:26 1548934346.183961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4127353 total-bytes-write=52 payload-bytes-read=4127324/5242880 (78.72%)
+2019-01-31 11:32:26 1548934346.321682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4128797 total-bytes-write=52 payload-bytes-read=4128768/5242880 (78.75%)
+2019-01-31 11:32:26 1548934346.454336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4132283 total-bytes-write=52 payload-bytes-read=4132254/5242880 (78.82%)
+2019-01-31 11:32:26 1548934346.472938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4135769 total-bytes-write=52 payload-bytes-read=4135740/5242880 (78.88%)
+2019-01-31 11:32:26 1548934346.516403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4136267 total-bytes-write=52 payload-bytes-read=4136238/5242880 (78.89%)
+2019-01-31 11:32:26 1548934346.702037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4139753 total-bytes-write=52 payload-bytes-read=4139724/5242880 (78.96%)
+2019-01-31 11:32:26 1548934346.781103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4140251 total-bytes-write=52 payload-bytes-read=4140222/5242880 (78.97%)
+2019-01-31 11:32:26 1548934346.825820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4143737 total-bytes-write=52 payload-bytes-read=4143708/5242880 (79.03%)
+2019-01-31 11:32:26 1548934346.868398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4148667 total-bytes-write=52 payload-bytes-read=4148638/5242880 (79.13%)
+2019-01-31 11:32:26 1548934346.912451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4167043 total-bytes-write=52 payload-bytes-read=4167014/5242880 (79.48%)
+2019-01-31 11:32:26 1548934346.956448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4176505 total-bytes-write=52 payload-bytes-read=4176476/5242880 (79.66%)
+2019-01-31 11:32:26 1548934346.968133 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4178945 total-bytes-write=52 payload-bytes-read=4178916/5242880 (79.71%)
+2019-01-31 11:32:26 1548934346.979917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4181933 total-bytes-write=52 payload-bytes-read=4181904/5242880 (79.76%)
+2019-01-31 11:32:27 1548934347.019248 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4182929 total-bytes-write=52 payload-bytes-read=4182900/5242880 (79.78%)
+2019-01-31 11:32:27 1548934347.042181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4187909 total-bytes-write=52 payload-bytes-read=4187880/5242880 (79.88%)
+2019-01-31 11:32:27 1548934347.053479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4191395 total-bytes-write=52 payload-bytes-read=4191366/5242880 (79.94%)
+2019-01-31 11:32:27 1548934347.061756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4194333 total-bytes-write=52 payload-bytes-read=4194304/5242880 (80.00%)
+2019-01-31 11:32:27 1548934347.096780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4200309 total-bytes-write=52 payload-bytes-read=4200280/5242880 (80.11%)
+2019-01-31 11:32:27 1548934347.100076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4201305 total-bytes-write=52 payload-bytes-read=4201276/5242880 (80.13%)
+2019-01-31 11:32:27 1548934347.100499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4204293 total-bytes-write=52 payload-bytes-read=4204264/5242880 (80.19%)
+2019-01-31 11:32:27 1548934347.106861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4207779 total-bytes-write=52 payload-bytes-read=4207750/5242880 (80.26%)
+2019-01-31 11:32:27 1548934347.124042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4211713 total-bytes-write=52 payload-bytes-read=4211684/5242880 (80.33%)
+2019-01-31 11:32:27 1548934347.126371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4213207 total-bytes-write=52 payload-bytes-read=4213178/5242880 (80.36%)
+2019-01-31 11:32:27 1548934347.128603 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4216693 total-bytes-write=52 payload-bytes-read=4216664/5242880 (80.43%)
+2019-01-31 11:32:27 1548934347.165293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4220677 total-bytes-write=52 payload-bytes-read=4220648/5242880 (80.50%)
+2019-01-31 11:32:27 1548934347.209161 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4222669 total-bytes-write=52 payload-bytes-read=4222640/5242880 (80.54%)
+2019-01-31 11:32:27 1548934347.249286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4223167 total-bytes-write=52 payload-bytes-read=4223138/5242880 (80.55%)
+2019-01-31 11:32:27 1548934347.374569 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4225657 total-bytes-write=52 payload-bytes-read=4225628/5242880 (80.60%)
+2019-01-31 11:32:27 1548934347.484581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4229093 total-bytes-write=52 payload-bytes-read=4229064/5242880 (80.66%)
+2019-01-31 11:32:27 1548934347.499165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4232579 total-bytes-write=52 payload-bytes-read=4232550/5242880 (80.73%)
+2019-01-31 11:32:27 1548934347.520448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4236065 total-bytes-write=52 payload-bytes-read=4236036/5242880 (80.80%)
+2019-01-31 11:32:27 1548934347.564384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4240049 total-bytes-write=52 payload-bytes-read=4240020/5242880 (80.87%)
+2019-01-31 11:32:27 1548934347.612385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4245477 total-bytes-write=52 payload-bytes-read=4245448/5242880 (80.98%)
+2019-01-31 11:32:27 1548934347.656426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4253943 total-bytes-write=52 payload-bytes-read=4253914/5242880 (81.14%)
+2019-01-31 11:32:27 1548934347.700418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4262359 total-bytes-write=52 payload-bytes-read=4262330/5242880 (81.30%)
+2019-01-31 11:32:27 1548934347.724696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4265845 total-bytes-write=52 payload-bytes-read=4265816/5242880 (81.36%)
+2019-01-31 11:32:27 1548934347.731372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4266343 total-bytes-write=52 payload-bytes-read=4266314/5242880 (81.37%)
+2019-01-31 11:32:27 1548934347.732811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4270327 total-bytes-write=52 payload-bytes-read=4270298/5242880 (81.45%)
+2019-01-31 11:32:27 1548934347.763676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4274809 total-bytes-write=52 payload-bytes-read=4274780/5242880 (81.53%)
+2019-01-31 11:32:27 1548934347.764734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4278245 total-bytes-write=52 payload-bytes-read=4278216/5242880 (81.60%)
+2019-01-31 11:32:27 1548934347.773908 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4279241 total-bytes-write=52 payload-bytes-read=4279212/5242880 (81.62%)
+2019-01-31 11:32:27 1548934347.783003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4280735 total-bytes-write=52 payload-bytes-read=4280706/5242880 (81.65%)
+2019-01-31 11:32:27 1548934347.783831 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4284221 total-bytes-write=52 payload-bytes-read=4284192/5242880 (81.71%)
+2019-01-31 11:32:27 1548934347.802473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4288205 total-bytes-write=52 payload-bytes-read=4288176/5242880 (81.79%)
+2019-01-31 11:32:27 1548934347.803314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4288703 total-bytes-write=52 payload-bytes-read=4288674/5242880 (81.80%)
+2019-01-31 11:32:27 1548934347.804041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4292189 total-bytes-write=52 payload-bytes-read=4292160/5242880 (81.87%)
+2019-01-31 11:32:27 1548934347.806107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4296123 total-bytes-write=52 payload-bytes-read=4296094/5242880 (81.94%)
+2019-01-31 11:32:27 1548934347.808073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4300107 total-bytes-write=52 payload-bytes-read=4300078/5242880 (82.02%)
+2019-01-31 11:32:27 1548934347.811485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4303593 total-bytes-write=52 payload-bytes-read=4303564/5242880 (82.08%)
+2019-01-31 11:32:27 1548934347.813064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4304589 total-bytes-write=52 payload-bytes-read=4304560/5242880 (82.10%)
+2019-01-31 11:32:27 1548934347.816069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4308075 total-bytes-write=52 payload-bytes-read=4308046/5242880 (82.17%)
+2019-01-31 11:32:27 1548934347.825924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4312009 total-bytes-write=52 payload-bytes-read=4311980/5242880 (82.24%)
+2019-01-31 11:32:27 1548934347.835347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4315993 total-bytes-write=52 payload-bytes-read=4315964/5242880 (82.32%)
+2019-01-31 11:32:27 1548934347.836532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4319977 total-bytes-write=52 payload-bytes-read=4319948/5242880 (82.40%)
+2019-01-31 11:32:27 1548934347.880457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4340345 total-bytes-write=52 payload-bytes-read=4340316/5242880 (82.78%)
+2019-01-31 11:32:27 1548934347.924395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4346769 total-bytes-write=52 payload-bytes-read=4346740/5242880 (82.91%)
+2019-01-31 11:32:27 1548934347.930262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4350753 total-bytes-write=52 payload-bytes-read=4350724/5242880 (82.98%)
+2019-01-31 11:32:27 1548934347.952485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4354239 total-bytes-write=52 payload-bytes-read=4354210/5242880 (83.05%)
+2019-01-31 11:32:27 1548934347.957740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4355733 total-bytes-write=52 payload-bytes-read=4355704/5242880 (83.08%)
+2019-01-31 11:32:27 1548934347.970413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4359169 total-bytes-write=52 payload-bytes-read=4359140/5242880 (83.14%)
+2019-01-31 11:32:27 1548934347.979408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4362655 total-bytes-write=52 payload-bytes-read=4362626/5242880 (83.21%)
+2019-01-31 11:32:27 1548934347.998451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4366141 total-bytes-write=52 payload-bytes-read=4366112/5242880 (83.28%)
+2019-01-31 11:32:28 1548934348.046797 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4368133 total-bytes-write=52 payload-bytes-read=4368104/5242880 (83.31%)
+2019-01-31 11:32:28 1548934348.068184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4371619 total-bytes-write=52 payload-bytes-read=4371590/5242880 (83.38%)
+2019-01-31 11:32:28 1548934348.108416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4379039 total-bytes-write=52 payload-bytes-read=4379010/5242880 (83.52%)
+2019-01-31 11:32:28 1548934348.152414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4383521 total-bytes-write=52 payload-bytes-read=4383492/5242880 (83.61%)
+2019-01-31 11:32:28 1548934348.304181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4385513 total-bytes-write=52 payload-bytes-read=4385484/5242880 (83.65%)
+2019-01-31 11:32:28 1548934348.444881 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4388999 total-bytes-write=52 payload-bytes-read=4388970/5242880 (83.71%)
+2019-01-31 11:32:28 1548934348.474267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4390493 total-bytes-write=52 payload-bytes-read=4390464/5242880 (83.74%)
+2019-01-31 11:32:28 1548934348.496316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4392933 total-bytes-write=52 payload-bytes-read=4392904/5242880 (83.79%)
+2019-01-31 11:32:28 1548934348.515938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4395423 total-bytes-write=52 payload-bytes-read=4395394/5242880 (83.84%)
+2019-01-31 11:32:28 1548934348.563657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4398909 total-bytes-write=52 payload-bytes-read=4398880/5242880 (83.90%)
+2019-01-31 11:32:28 1548934348.568045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4401897 total-bytes-write=52 payload-bytes-read=4401868/5242880 (83.96%)
+2019-01-31 11:32:28 1548934348.570745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4405383 total-bytes-write=52 payload-bytes-read=4405354/5242880 (84.03%)
+2019-01-31 11:32:28 1548934348.573078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4408819 total-bytes-write=52 payload-bytes-read=4408790/5242880 (84.09%)
+2019-01-31 11:32:28 1548934348.575675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4412305 total-bytes-write=52 payload-bytes-read=4412276/5242880 (84.16%)
+2019-01-31 11:32:28 1548934348.577303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4413301 total-bytes-write=52 payload-bytes-read=4413272/5242880 (84.18%)
+2019-01-31 11:32:28 1548934348.579513 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4414297 total-bytes-write=52 payload-bytes-read=4414268/5242880 (84.20%)
+2019-01-31 11:32:28 1548934348.620438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4427195 total-bytes-write=52 payload-bytes-read=4427166/5242880 (84.44%)
+2019-01-31 11:32:28 1548934348.664420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4445571 total-bytes-write=52 payload-bytes-read=4445542/5242880 (84.79%)
+2019-01-31 11:32:28 1548934348.708414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4454535 total-bytes-write=52 payload-bytes-read=4454506/5242880 (84.96%)
+2019-01-31 11:32:28 1548934348.710287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4456029 total-bytes-write=52 payload-bytes-read=4456000/5242880 (84.99%)
+2019-01-31 11:32:28 1548934348.733750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4459465 total-bytes-write=52 payload-bytes-read=4459436/5242880 (85.06%)
+2019-01-31 11:32:28 1548934348.734065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4460959 total-bytes-write=52 payload-bytes-read=4460930/5242880 (85.09%)
+2019-01-31 11:32:28 1548934348.747796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4464445 total-bytes-write=52 payload-bytes-read=4464416/5242880 (85.15%)
+2019-01-31 11:32:28 1548934348.761059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4467931 total-bytes-write=52 payload-bytes-read=4467902/5242880 (85.22%)
+2019-01-31 11:32:28 1548934348.804421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4475351 total-bytes-write=52 payload-bytes-read=4475322/5242880 (85.36%)
+2019-01-31 11:32:28 1548934348.848416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4482323 total-bytes-write=52 payload-bytes-read=4482294/5242880 (85.49%)
+2019-01-31 11:32:28 1548934348.849389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4482821 total-bytes-write=52 payload-bytes-read=4482792/5242880 (85.50%)
+2019-01-31 11:32:28 1548934348.912025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4486307 total-bytes-write=52 payload-bytes-read=4486278/5242880 (85.57%)
+2019-01-31 11:32:28 1548934348.954790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4489245 total-bytes-write=52 payload-bytes-read=4489216/5242880 (85.62%)
+2019-01-31 11:32:28 1548934348.954884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4492731 total-bytes-write=52 payload-bytes-read=4492702/5242880 (85.69%)
+2019-01-31 11:32:28 1548934348.962953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4496217 total-bytes-write=52 payload-bytes-read=4496188/5242880 (85.76%)
+2019-01-31 11:32:29 1548934349.004406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4505629 total-bytes-write=52 payload-bytes-read=4505600/5242880 (85.94%)
+2019-01-31 11:32:29 1548934349.048411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4521067 total-bytes-write=52 payload-bytes-read=4521038/5242880 (86.23%)
+2019-01-31 11:32:29 1548934349.132942 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4522013 total-bytes-write=52 payload-bytes-read=4521984/5242880 (86.25%)
+2019-01-31 11:32:29 1548934349.206051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4525499 total-bytes-write=52 payload-bytes-read=4525470/5242880 (86.32%)
+2019-01-31 11:32:29 1548934349.209032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4529483 total-bytes-write=52 payload-bytes-read=4529454/5242880 (86.39%)
+2019-01-31 11:32:29 1548934349.427652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4533467 total-bytes-write=52 payload-bytes-read=4533438/5242880 (86.47%)
+2019-01-31 11:32:29 1548934349.461251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4536953 total-bytes-write=52 payload-bytes-read=4536924/5242880 (86.53%)
+2019-01-31 11:32:29 1548934349.467117 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4537949 total-bytes-write=52 payload-bytes-read=4537920/5242880 (86.55%)
+2019-01-31 11:32:29 1548934349.514481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4541385 total-bytes-write=52 payload-bytes-read=4541356/5242880 (86.62%)
+2019-01-31 11:32:29 1548934349.516261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4542381 total-bytes-write=52 payload-bytes-read=4542352/5242880 (86.64%)
+2019-01-31 11:32:29 1548934349.564607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4545867 total-bytes-write=52 payload-bytes-read=4545838/5242880 (86.70%)
+2019-01-31 11:32:29 1548934349.566185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4548855 total-bytes-write=52 payload-bytes-read=4548826/5242880 (86.76%)
+2019-01-31 11:32:29 1548934349.571088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4552341 total-bytes-write=52 payload-bytes-read=4552312/5242880 (86.83%)
+2019-01-31 11:32:29 1548934349.579506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4556275 total-bytes-write=52 payload-bytes-read=4556246/5242880 (86.90%)
+2019-01-31 11:32:29 1548934349.581274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4559761 total-bytes-write=52 payload-bytes-read=4559732/5242880 (86.97%)
+2019-01-31 11:32:29 1548934349.614142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4563745 total-bytes-write=52 payload-bytes-read=4563716/5242880 (87.05%)
+2019-01-31 11:32:29 1548934349.647097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4564741 total-bytes-write=52 payload-bytes-read=4564712/5242880 (87.06%)
+2019-01-31 11:32:29 1548934349.668316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4568725 total-bytes-write=52 payload-bytes-read=4568696/5242880 (87.14%)
+2019-01-31 11:32:29 1548934349.668404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4571165 total-bytes-write=52 payload-bytes-read=4571136/5242880 (87.19%)
+2019-01-31 11:32:29 1548934349.747459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4574651 total-bytes-write=52 payload-bytes-read=4574622/5242880 (87.25%)
+2019-01-31 11:32:29 1548934349.753327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4578635 total-bytes-write=52 payload-bytes-read=4578606/5242880 (87.33%)
+2019-01-31 11:32:29 1548934349.780939 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4582683 total-bytes-write=52 payload-bytes-read=4582654/5242880 (87.41%)
+2019-01-31 11:32:29 1548934349.824421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4588047 total-bytes-write=52 payload-bytes-read=4588018/5242880 (87.51%)
+2019-01-31 11:32:29 1548934349.868404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4603485 total-bytes-write=52 payload-bytes-read=4603456/5242880 (87.80%)
+2019-01-31 11:32:29 1548934349.912437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4614391 total-bytes-write=52 payload-bytes-read=4614362/5242880 (88.01%)
+2019-01-31 11:32:29 1548934349.913271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4618375 total-bytes-write=52 payload-bytes-read=4618346/5242880 (88.09%)
+2019-01-31 11:32:29 1548934349.914834 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4619371 total-bytes-write=52 payload-bytes-read=4619342/5242880 (88.11%)
+2019-01-31 11:32:29 1548934349.970584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4619869 total-bytes-write=52 payload-bytes-read=4619840/5242880 (88.12%)
+2019-01-31 11:32:29 1548934349.977204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4623305 total-bytes-write=52 payload-bytes-read=4623276/5242880 (88.18%)
+2019-01-31 11:32:30 1548934350.127221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4624301 total-bytes-write=52 payload-bytes-read=4624272/5242880 (88.20%)
+2019-01-31 11:32:30 1548934350.176788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4627787 total-bytes-write=52 payload-bytes-read=4627758/5242880 (88.27%)
+2019-01-31 11:32:30 1548934350.207997 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4631273 total-bytes-write=52 payload-bytes-read=4631244/5242880 (88.33%)
+2019-01-31 11:32:30 1548934350.299305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4634261 total-bytes-write=52 payload-bytes-read=4634232/5242880 (88.39%)
+2019-01-31 11:32:30 1548934350.339436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4637697 total-bytes-write=52 payload-bytes-read=4637668/5242880 (88.46%)
+2019-01-31 11:32:30 1548934350.465020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4641183 total-bytes-write=52 payload-bytes-read=4641154/5242880 (88.52%)
+2019-01-31 11:32:30 1548934350.508413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4653583 total-bytes-write=52 payload-bytes-read=4653554/5242880 (88.76%)
+2019-01-31 11:32:30 1548934350.552987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4657069 total-bytes-write=52 payload-bytes-read=4657040/5242880 (88.83%)
+2019-01-31 11:32:30 1548934350.572412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4660555 total-bytes-write=52 payload-bytes-read=4660526/5242880 (88.89%)
+2019-01-31 11:32:30 1548934350.616484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4700295 total-bytes-write=52 payload-bytes-read=4700266/5242880 (89.65%)
+2019-01-31 11:32:30 1548934350.642555 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4766329 total-bytes-write=52 payload-bytes-read=4766300/5242880 (90.91%)
+2019-01-31 11:32:30 1548934350.643699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4770263 total-bytes-write=52 payload-bytes-read=4770234/5242880 (90.98%)
+2019-01-31 11:32:30 1548934350.651585 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4774247 total-bytes-write=52 payload-bytes-read=4774218/5242880 (91.06%)
+2019-01-31 11:32:30 1548934350.652536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4778231 total-bytes-write=52 payload-bytes-read=4778202/5242880 (91.14%)
+2019-01-31 11:32:30 1548934350.696425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4790631 total-bytes-write=52 payload-bytes-read=4790602/5242880 (91.37%)
+2019-01-31 11:32:30 1548934350.740401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4794117 total-bytes-write=52 payload-bytes-read=4794088/5242880 (91.44%)
+2019-01-31 11:32:30 1548934350.760988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4797603 total-bytes-write=52 payload-bytes-read=4797574/5242880 (91.51%)
+2019-01-31 11:32:30 1548934350.804452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4820411 total-bytes-write=52 payload-bytes-read=4820382/5242880 (91.94%)
+2019-01-31 11:32:30 1548934350.848439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4843767 total-bytes-write=52 payload-bytes-read=4843738/5242880 (92.39%)
+2019-01-31 11:32:30 1548934350.892411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4851685 total-bytes-write=52 payload-bytes-read=4851656/5242880 (92.54%)
+2019-01-31 11:32:30 1548934350.928018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4853179 total-bytes-write=52 payload-bytes-read=4853150/5242880 (92.57%)
+2019-01-31 11:32:30 1548934350.977067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4856665 total-bytes-write=52 payload-bytes-read=4856636/5242880 (92.63%)
+2019-01-31 11:32:31 1548934351.019865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4857163 total-bytes-write=52 payload-bytes-read=4857134/5242880 (92.64%)
+2019-01-31 11:32:31 1548934351.046159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4860649 total-bytes-write=52 payload-bytes-read=4860620/5242880 (92.71%)
+2019-01-31 11:32:31 1548934351.087461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4861147 total-bytes-write=52 payload-bytes-read=4861118/5242880 (92.72%)
+2019-01-31 11:32:31 1548934351.177294 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4865131 total-bytes-write=52 payload-bytes-read=4865102/5242880 (92.79%)
+2019-01-31 11:32:31 1548934351.216175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4866077 total-bytes-write=52 payload-bytes-read=4866048/5242880 (92.81%)
+2019-01-31 11:32:31 1548934351.364099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4869563 total-bytes-write=52 payload-bytes-read=4869534/5242880 (92.88%)
+2019-01-31 11:32:31 1548934351.459974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4873049 total-bytes-write=52 payload-bytes-read=4873020/5242880 (92.95%)
+2019-01-31 11:32:31 1548934351.500388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4873547 total-bytes-write=52 payload-bytes-read=4873518/5242880 (92.95%)
+2019-01-31 11:32:31 1548934351.517762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4877033 total-bytes-write=52 payload-bytes-read=4877004/5242880 (93.02%)
+2019-01-31 11:32:31 1548934351.560396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4877531 total-bytes-write=52 payload-bytes-read=4877502/5242880 (93.03%)
+2019-01-31 11:32:31 1548934351.572945 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4881017 total-bytes-write=52 payload-bytes-read=4880988/5242880 (93.10%)
+2019-01-31 11:32:31 1548934351.616436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4896903 total-bytes-write=52 payload-bytes-read=4896874/5242880 (93.40%)
+2019-01-31 11:32:31 1548934351.660387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4900837 total-bytes-write=52 payload-bytes-read=4900808/5242880 (93.48%)
+2019-01-31 11:32:31 1548934351.696097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4902331 total-bytes-write=52 payload-bytes-read=4902302/5242880 (93.50%)
+2019-01-31 11:32:31 1548934351.696856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4905817 total-bytes-write=52 payload-bytes-read=4905788/5242880 (93.57%)
+2019-01-31 11:32:31 1548934351.698431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4912789 total-bytes-write=52 payload-bytes-read=4912760/5242880 (93.70%)
+2019-01-31 11:32:31 1548934351.698494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4913287 total-bytes-write=52 payload-bytes-read=4913258/5242880 (93.71%)
+2019-01-31 11:32:31 1548934351.700199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4917221 total-bytes-write=52 payload-bytes-read=4917192/5242880 (93.79%)
+2019-01-31 11:32:31 1548934351.700287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4921205 total-bytes-write=52 payload-bytes-read=4921176/5242880 (93.86%)
+2019-01-31 11:32:31 1548934351.700335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4921703 total-bytes-write=52 payload-bytes-read=4921674/5242880 (93.87%)
+2019-01-31 11:32:31 1548934351.710566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4925189 total-bytes-write=52 payload-bytes-read=4925160/5242880 (93.94%)
+2019-01-31 11:32:31 1548934351.724002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4928675 total-bytes-write=52 payload-bytes-read=4928646/5242880 (94.01%)
+2019-01-31 11:32:31 1548934351.764390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4929671 total-bytes-write=52 payload-bytes-read=4929642/5242880 (94.03%)
+2019-01-31 11:32:31 1548934351.766642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4931165 total-bytes-write=52 payload-bytes-read=4931136/5242880 (94.05%)
+2019-01-31 11:32:31 1548934351.847681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4934601 total-bytes-write=52 payload-bytes-read=4934572/5242880 (94.12%)
+2019-01-31 11:32:31 1548934351.853927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4938585 total-bytes-write=52 payload-bytes-read=4938556/5242880 (94.20%)
+2019-01-31 11:32:31 1548934351.896437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4965377 total-bytes-write=52 payload-bytes-read=4965348/5242880 (94.71%)
+2019-01-31 11:32:31 1548934351.940446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4999141 total-bytes-write=52 payload-bytes-read=4999112/5242880 (95.35%)
+2019-01-31 11:32:31 1548934351.984435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5027477 total-bytes-write=52 payload-bytes-read=5027448/5242880 (95.89%)
+2019-01-31 11:32:32 1548934352.011736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5034897 total-bytes-write=52 payload-bytes-read=5034868/5242880 (96.03%)
+2019-01-31 11:32:32 1548934352.014638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5038881 total-bytes-write=52 payload-bytes-read=5038852/5242880 (96.11%)
+2019-01-31 11:32:32 1548934352.014811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5044857 total-bytes-write=52 payload-bytes-read=5044828/5242880 (96.22%)
+2019-01-31 11:32:32 1548934352.014871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5048293 total-bytes-write=52 payload-bytes-read=5048264/5242880 (96.29%)
+2019-01-31 11:32:32 1548934352.080359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5049289 total-bytes-write=52 payload-bytes-read=5049260/5242880 (96.31%)
+2019-01-31 11:32:32 1548934352.080473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5054269 total-bytes-write=52 payload-bytes-read=5054240/5242880 (96.40%)
+2019-01-31 11:32:32 1548934352.080560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5058751 total-bytes-write=52 payload-bytes-read=5058722/5242880 (96.49%)
+2019-01-31 11:32:32 1548934352.080614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5062237 total-bytes-write=52 payload-bytes-read=5062208/5242880 (96.55%)
+2019-01-31 11:32:32 1548934352.096466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5064677 total-bytes-write=52 payload-bytes-read=5064648/5242880 (96.60%)
+2019-01-31 11:32:32 1548934352.098772 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5068661 total-bytes-write=52 payload-bytes-read=5068632/5242880 (96.68%)
+2019-01-31 11:32:32 1548934352.101698 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5072147 total-bytes-write=52 payload-bytes-read=5072118/5242880 (96.74%)
+2019-01-31 11:32:32 1548934352.120818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5074637 total-bytes-write=52 payload-bytes-read=5074608/5242880 (96.79%)
+2019-01-31 11:32:32 1548934352.121106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5076131 total-bytes-write=52 payload-bytes-read=5076102/5242880 (96.82%)
+2019-01-31 11:32:32 1548934352.124897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5079567 total-bytes-write=52 payload-bytes-read=5079538/5242880 (96.88%)
+2019-01-31 11:32:32 1548934352.126111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5083551 total-bytes-write=52 payload-bytes-read=5083522/5242880 (96.96%)
+2019-01-31 11:32:32 1548934352.140123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5087037 total-bytes-write=52 payload-bytes-read=5087008/5242880 (97.03%)
+2019-01-31 11:32:32 1548934352.150223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5088531 total-bytes-write=52 payload-bytes-read=5088502/5242880 (97.06%)
+2019-01-31 11:32:32 1548934352.205893 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5092017 total-bytes-write=52 payload-bytes-read=5091988/5242880 (97.12%)
+2019-01-31 11:32:32 1548934352.287526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5095453 total-bytes-write=52 payload-bytes-read=5095424/5242880 (97.19%)
+2019-01-31 11:32:32 1548934352.408693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5098939 total-bytes-write=52 payload-bytes-read=5098910/5242880 (97.25%)
+2019-01-31 11:32:32 1548934352.457633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5102425 total-bytes-write=52 payload-bytes-read=5102396/5242880 (97.32%)
+2019-01-31 11:32:32 1548934352.500419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5114825 total-bytes-write=52 payload-bytes-read=5114796/5242880 (97.56%)
+2019-01-31 11:32:32 1548934352.544467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5120303 total-bytes-write=52 payload-bytes-read=5120274/5242880 (97.66%)
+2019-01-31 11:32:32 1548934352.551746 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5124287 total-bytes-write=52 payload-bytes-read=5124258/5242880 (97.74%)
+2019-01-31 11:32:32 1548934352.554954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5127773 total-bytes-write=52 payload-bytes-read=5127744/5242880 (97.80%)
+2019-01-31 11:32:32 1548934352.562407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5128221 total-bytes-write=52 payload-bytes-read=5128192/5242880 (97.81%)
+2019-01-31 11:32:32 1548934352.567234 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5135193 total-bytes-write=52 payload-bytes-read=5135164/5242880 (97.95%)
+2019-01-31 11:32:32 1548934352.567324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5139177 total-bytes-write=52 payload-bytes-read=5139148/5242880 (98.02%)
+2019-01-31 11:32:32 1548934352.567391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5143161 total-bytes-write=52 payload-bytes-read=5143132/5242880 (98.10%)
+2019-01-31 11:32:32 1548934352.608434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5158549 total-bytes-write=52 payload-bytes-read=5158520/5242880 (98.39%)
+2019-01-31 11:32:32 1548934352.652424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5173937 total-bytes-write=52 payload-bytes-read=5173908/5242880 (98.68%)
+2019-01-31 11:32:32 1548934352.696402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5174933 total-bytes-write=52 payload-bytes-read=5174904/5242880 (98.70%)
+2019-01-31 11:32:32 1548934352.724462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5177871 total-bytes-write=52 payload-bytes-read=5177842/5242880 (98.76%)
+2019-01-31 11:32:32 1548934352.763517 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5180859 total-bytes-write=52 payload-bytes-read=5180830/5242880 (98.82%)
+2019-01-31 11:32:32 1548934352.765367 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5184345 total-bytes-write=52 payload-bytes-read=5184316/5242880 (98.88%)
+2019-01-31 11:32:32 1548934352.770873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5192313 total-bytes-write=52 payload-bytes-read=5192284/5242880 (99.03%)
+2019-01-31 11:32:32 1548934352.776004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5195749 total-bytes-write=52 payload-bytes-read=5195720/5242880 (99.10%)
+2019-01-31 11:32:32 1548934352.778242 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5196745 total-bytes-write=52 payload-bytes-read=5196716/5242880 (99.12%)
+2019-01-31 11:32:32 1548934352.779523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5200231 total-bytes-write=52 payload-bytes-read=5200202/5242880 (99.19%)
+2019-01-31 11:32:32 1548934352.787464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5204215 total-bytes-write=52 payload-bytes-read=5204186/5242880 (99.26%)
+2019-01-31 11:32:32 1548934352.804174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5208697 total-bytes-write=52 payload-bytes-read=5208668/5242880 (99.35%)
+2019-01-31 11:32:32 1548934352.814650 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5212133 total-bytes-write=52 payload-bytes-read=5212104/5242880 (99.41%)
+2019-01-31 11:32:32 1548934352.823206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5215619 total-bytes-write=52 payload-bytes-read=5215590/5242880 (99.48%)
+2019-01-31 11:32:32 1548934352.823853 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5216615 total-bytes-write=52 payload-bytes-read=5216586/5242880 (99.50%)
+2019-01-31 11:32:32 1548934352.847141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5220599 total-bytes-write=52 payload-bytes-read=5220570/5242880 (99.57%)
+2019-01-31 11:32:32 1548934352.870177 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5224085 total-bytes-write=52 payload-bytes-read=5224056/5242880 (99.64%)
+2019-01-31 11:32:32 1548934352.876184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5227521 total-bytes-write=52 payload-bytes-read=5227492/5242880 (99.71%)
+2019-01-31 11:32:32 1548934352.888083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5231007 total-bytes-write=52 payload-bytes-read=5230978/5242880 (99.77%)
+2019-01-31 11:32:32 1548934352.917326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5232501 total-bytes-write=52 payload-bytes-read=5232472/5242880 (99.80%)
+2019-01-31 11:32:32 1548934352.918273 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5236485 total-bytes-write=52 payload-bytes-read=5236456/5242880 (99.88%)
+2019-01-31 11:32:33 1548934353.042147 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5239971 total-bytes-write=52 payload-bytes-read=5239942/5242880 (99.94%)
+2019-01-31 11:32:33 1548934353.210767 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:32:33 1548934353.210892 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:32:33 1548934353.210943 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=SUCCESS,error=NONE MD5 checksums passed: computed=bd06bf4198f911accd1005ad8fd5556a received=bd06bf4198f911accd1005ad8fd5556a
+2019-01-31 11:32:33 1548934353.211002 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=11 usecs-to-socket-connect=185 usecs-to-proxy-init=247 usecs-to-proxy-choice=454 usecs-to-proxy-request=566 usecs-to-proxy-response=-1 usecs-to-command=13852315 usecs-to-response=14454470 usecs-to-first-byte=14593205 usecs-to-last-byte=42065552 usecs-to-checksum=42065650
+2019-01-31 11:32:33 1548934353.211128 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:32:33 1548934353.211188 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 14
+2019-01-31 11:32:33 1548934353.211256 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:32:33 1548934353.211336 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:32:33 1548934353.211525 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:32:33 1548934353.211612 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:32:33 1548934353.995663 [warning] [shd-tgen-transport.c:1001] [_tgentransport_receiveSocksResponseA] connection from localhost:127.0.0.1:36468 through socks proxy localhost:127.0.0.1:29280 to 4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080 failed: unsupported status 0x5
+2019-01-31 11:32:33 1548934353.995880 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state ERROR
+2019-01-31 11:32:33 1548934353.996029 [info] [shd-tgen-transport.c:211] [_tgentransport_changeError] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=ERROR,error=NONE moving from error NONE to error STATUS
+2019-01-31 11:32:33 1548934353.996158 [critical] [shd-tgen-transfer.c:1546] [_tgentransfer_runTransportEventLoop] proxy connection failed, transfer cannot begin
+2019-01-31 11:32:33 1548934353.996331 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,8,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state ERROR
+2019-01-31 11:32:33 1548934353.996483 [info] [shd-tgen-transfer.c:371] [_tgentransfer_changeError] transfer transfer5m,8,phlox,GET,5242880,(null),0,state=ERROR,error=NONE moving from error NONE to error PROXY
+2019-01-31 11:32:33 1548934353.996667 [message] [shd-tgen-transfer.c:1504] [_tgentransfer_log] [transfer-error] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=ERROR,error=STATUS transfer transfer5m,8,phlox,GET,5242880,(null),0,state=ERROR,error=PROXY total-bytes-read=0 total-bytes-write=0 payload-bytes-read=0/5242880 (0.00%) usecs-to-socket-create=12 usecs-to-socket-connect=190 usecs-to-proxy-init=272 usecs-to-proxy-choice=456 usecs-to-proxy-request=532 usecs-to-proxy-response=-1 usecs-to-command=-1 usecs-to-response=-1 usecs-to-first-byte=-1 usecs-to-last-byte=-1 usecs-to-checksum=-1
+2019-01-31 11:32:33 1548934353.997041 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:32:33 1548934353.997226 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 12
+2019-01-31 11:32:33 1548934353.997452 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36474,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:32:33 1548934353.997638 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36474,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:32:33 1548934353.997798 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36474,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:32:33 1548934353.997966 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36474,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-02-11 14:58:38 1549893518.928599 [message] [shd-tgen-main.c:82] [_tgenmain_run] Initializing traffic generator on host phlox process id 4450
+2019-02-11 14:58:38 1549893518.929068 [message] [shd-tgen-graph.c:757] [tgengraph_new] successfully loaded graphml file '/home/ana/onionperf-data/tgen-client/tgen.graphml.xml' and validated actions: graph is weakly connected with 1 cluster, 2 vertices, and 2 edges
+2019-02-11 14:58:38 1549893518.929145 [info] [shd-tgen-driver.c:737] [_tgendriver_setHeartbeatTimerHelper] set heartbeat timer using descriptor 5
+2019-02-11 14:58:38 1549893518.929211 [message] [shd-tgen-server.c:136] [tgenserver_new] server listening at 0.0.0.0:11134
+2019-02-11 14:58:38 1549893518.929247 [info] [shd-tgen-driver.c:679] [_tgendriver_startServerHelper] started server using descriptor 9
+2019-02-11 14:58:38 1549893518.929285 [info] [shd-tgen-driver.c:707] [_tgendriver_setStartClientTimerHelper] set startClient timer using descriptor 12
+2019-02-11 14:58:38 1549893518.929321 [message] [shd-tgen-main.c:153] [_tgenmain_run] entering main loop to watch descriptors
+2019-02-11 14:58:38 1549893518.929367 [message] [shd-tgen-driver.c:797] [_tgendriver_onStartClientTimerExpired] starting client using action graph '/home/ana/onionperf-data/tgen-client/tgen.graphml.xml'
+2019-02-11 14:58:38 1549893518.929486 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:11482
+2019-02-11 14:58:38 1549893518.929555 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:41710,localhost:127.0.0.1:11482,bufz6kle3gbbcqmft7yiuyqxp4mpd5xj5o3xxa2w2ugglttabnuwsqad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-02-11 14:58:38 1549893518.929619 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:41710,localhost:127.0.0.1:11482,bufz6kle3gbbcqmft7yiuyqxp4mpd5xj5o3xxa2w2ugglttabnuwsqad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-02-11 14:58:38 1549893518.929811 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:41710,localhost:127.0.0.1:11482,bufz6kle3gbbcqmft7yiuyqxp4mpd5xj5o3xxa2w2ugglttabnuwsqad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-02-11 14:58:38 1549893518.929866 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:41710,localhost:127.0.0.1:11482,bufz6kle3gbbcqmft7yiuyqxp4mpd5xj5o3xxa2w2ugglttabnuwsqad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
diff --git a/onionperf/tests/data/logs/onionperf.torctl.log b/onionperf/tests/data/logs/onionperf.torctl.log
new file mode 100644
index 0000000..07bc5dd
--- /dev/null
+++ b/onionperf/tests/data/logs/onionperf.torctl.log
@@ -0,0 +1,976 @@
+2019-01-31 11:29:51 1548934191.14 Starting torctl program on host phlox using Tor version 0.3.5.7 status=recommended
+2019-01-31 11:29:51 1548934191.14 NOTICE BOOTSTRAP PROGRESS=100 TAG=done SUMMARY="Done"
+2019-01-31 11:29:51 1548934191.21 650 HS_DESC REQUESTED 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad NO_AUTH $157106182B9F33663CAEDCD883D302316331DE5E~Vor djVSuq3o5lJnQ5dWb8tBXbnsUZuIyX61S80VsJBi+ao HSDIR_INDEX=E9C2E95F8B783040AE0EDC224CD7D6F39B991AE78FAB8DDE6B9886694CBD419A
+2019-01-31 11:29:51 1548934191.21 650 CIRC 23 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.23 [WARNING] event TB_EMPTY is recognized by stem but not by tor
+2019-01-31 11:29:51 1548934191.28 650 ORCONN $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe CONNECTED ID=67
+2019-01-31 11:29:51 1548934191.29 650 CIRC 23 EXTENDED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.31 650 CIRC 22 EXTENDED $CE946DFEC40A1BFC3665A4727F54354F57297497~Forseti BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:50.803126
+2019-01-31 11:29:51 1548934191.36 650 CIRC 23 EXTENDED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.48 650 CIRC 22 EXTENDED $CE946DFEC40A1BFC3665A4727F54354F57297497~Forseti,$2ABDCC5A2656CDE1DF601092BCA60C7449F7D956~manningisfree BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:50.803126
+2019-01-31 11:29:51 1548934191.51 650 STREAM 16 CLOSED 5 66.206.4.26.$BBD8F4DF8FF5C69A6A989DB8C1EE2CA7ADFE0755.exit:9001 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:29:51 1548934191.51 650 CIRC 23 EXTENDED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.66 650 CIRC 22 EXTENDED $CE946DFEC40A1BFC3665A4727F54354F57297497~Forseti,$2ABDCC5A2656CDE1DF601092BCA60C7449F7D956~manningisfree,$2806D9396FEEF3A2D055B341F9D0D7465104639C~NuernbergTor01 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:50.803126
+2019-01-31 11:29:51 1548934191.66 650 CIRC 22 BUILT $CE946DFEC40A1BFC3665A4727F54354F57297497~Forseti,$2ABDCC5A2656CDE1DF601092BCA60C7449F7D956~manningisfree,$2806D9396FEEF3A2D055B341F9D0D7465104639C~NuernbergTor01 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:50.803126
+2019-01-31 11:29:51 1548934191.80 650 CIRC 23 EXTENDED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed,$157106182B9F33663CAEDCD883D302316331DE5E~Vor BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.80 650 CIRC 23 BUILT $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed,$157106182B9F33663CAEDCD883D302316331DE5E~Vor BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.81 650 STREAM 66 SENTCONNECT 23 77.73.64.51.$157106182B9F33663CAEDCD883D302316331DE5E.exit:443
+2019-01-31 11:29:51 1548934191.82 650 BW 29208 5859
+2019-01-31 11:29:51 1548934191.82 650 CIRC_BW ID=5 READ=21887 WRITTEN=509 TIME=2019-01-31T11:29:51.800858 DELIVERED_READ=20642 OVERHEAD_READ=772 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=498
+2019-01-31 11:29:51 1548934191.82 650 CIRC_BW ID=22 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:29:51.800878 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:29:51 1548934191.82 650 CIRC_BW ID=23 READ=1527 WRITTEN=2545 TIME=2019-01-31T11:29:51.800888 DELIVERED_READ=198 OVERHEAD_READ=1296 DELIVERED_WRITTEN=450 OVERHEAD_WRITTEN=2040
+2019-01-31 11:29:51 1548934191.82 650 CIRC 24 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:51 1548934191.82 650 ORCONN $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta LAUNCHED ID=68
+2019-01-31 11:29:51 1548934191.98 650 ORCONN $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta CONNECTED ID=68
+2019-01-31 11:29:52 1548934192.05 650 CIRC 24 EXTENDED $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:52 1548934192.14 650 STREAM 66 SUCCEEDED 23 77.73.64.51.$157106182B9F33663CAEDCD883D302316331DE5E.exit:443
+2019-01-31 11:29:52 1548934192.16 650 CIRC 24 EXTENDED $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta,$AD970E9521E643922AF3811DA9138183795DD76F~humboldt BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:52 1548934192.29 650 CIRC 24 EXTENDED $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta,$AD970E9521E643922AF3811DA9138183795DD76F~humboldt,$2F77315CAE477550E47773BA5B1323F7FFBE3A3E~0x64657573 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:52 1548934192.29 650 CIRC 24 BUILT $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta,$AD970E9521E643922AF3811DA9138183795DD76F~humboldt,$2F77315CAE477550E47773BA5B1323F7FFBE3A3E~0x64657573 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:52 1548934192.30 650 STREAM 66 CLOSED 23 77.73.64.51.$157106182B9F33663CAEDCD883D302316331DE5E.exit:443 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:29:52 1548934192.33 650 HS_DESC RECEIVED 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad NO_AUTH $157106182B9F33663CAEDCD883D302316331DE5E~Vor djVSuq3o5lJnQ5dWb8tBXbnsUZuIyX61S80VsJBi+ao
+2019-01-31 11:29:52 1548934192.33 650+HS_DESC_CONTENT 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad djVSuq3o5lJnQ5dWb8tBXbnsUZuIyX61S80VsJBi+ao $157106182B9F33663CAEDCD883D302316331DE5E~Vor
+hs-descriptor 3
+descriptor-lifetime 180
+descriptor-signing-key-cert
+-----BEGIN ED25519 CERT-----
+AQgABpDqAYemDLtRNUMrLx3KtNB3ScPRDt95aA8iSRA5Rd3zOMAZAQAgBAB2NVK6
+rejmUmdDl1Zvy0FduexRm4jJfrVLzRWwkGL5qi9LOIW2J+BCG19FGhsPlT4nod0h
+9Or5diqeVtX1Dj16fHoMZ6qcxXh/UbzgpQtvsgywltoyDWQ8xjw+GNk2Tgk=
+-----END ED25519 CERT-----
+revision-counter 4193513130
+superencrypted
+-----BEGIN MESSAGE-----
+vx2EDLu4iO5KnGAqrrkYVxzC/TCgzPS1xuNyjkQ+PllYdqiBfciKTd4XfLmAtG4k
+5FShtKdRTQBpnekjD/kJlg/kUzTjVODb0fxh0v3cnpAcZ8fWK+6GcXjI4sxtKZ0C
+EJuoh/VlrcHAtiAoqOujOsLlRQtugj25B16XFZwQufkbbOxof1F1SYWiFeG4i464
+c5rBF/T3SexMhxxbwInwj2yjhRLYb9I+VcdhtxqfqyESsbKY2Th91nb5VZEPI1Zu
+aiREGLoDSTuXvaZS+C/ihQjeEYtOrLpB4Kae86EVfai5J1MOUx2d6Sfl/y+6CW38
+VIOzPF3aK/8pS15lYeKj4wW1iCJaHG87lZtfQ1oeORIISsKm2U8UronT5eh6P1jf
+zS+cd1Xwnfjn/lNcSV10NLpzqgDUK0eMMC7PxCkATuPwBKGuP4m0gU8huhlZAscr
+z+QUXN9gCprWugIUG8NRTydr1dzf88JawTH3IWsqRIcQSxzScIJBZHfKY0fR44sv
+mdL1ur4XqsnABgf6mz7HQq0mWsgUERGTTE/jevihN+2ICskwu2WHuoexAtqOiy/2
+dxC4kyz1SW5LDSbwmNkdONo193CpGIfArAdQUIo6d62yzKb6Tx7YVt6e6v810H0X
+9Xjg8tj62annXKt9jCCRdnXdRNpDeSGZagNiav0z5Y/k6xERomYuMZMoqI5sgwTz
+oSbXWb1/iqpcDJX8/ivXTHyaYw1vDkWdKS1I8fp+FeAk9QeN2ezUIbW9kClHKtRT
+ZEFQBl6C9BeTbh5eMsoOjjxVO9IVVdjO66nNOb4ErTFozZowChb+lYv7zzXilTjU
+mv7CjUy49m+iKzDXZSEMTdM1U347nWRR148iuv3v0/xnL7wz9PTLFvtnmaDT4JS7
+Au0jMdRqgBoshpum7LERZ2y90tkvCTjc53c/whPD8Q+K3gybaJty3dy6NAz0FVbB
+BjAHVknVSMokBcHk2DT0P0nVlKN26vIpvhvJuwcGrdqK7u9h4ok/mgfSthq2HFxj
+8HKseHJsrGAjovNck1JL219W52cYbo+ATF4OpkBLIstgEdozovQT5zsLb72Ajb7c
+xQ+H+T4gHNGKGCnkBIWvcLFh+PkKO0GlPC0dI163XD83bXRsewvE9sA+q5dCw1Tw
+knX197Z/ON1137ScdTVZjAPdviLNoyPaMGP0oca7eKU+BFmcrY4H2u7aq+AXDMWh
+xKNi9McCeOSam8BaqpqjajVmOk/yN/kwip/P+HgyGGo9LWofvACDZa5vTanLBzYr
+Kzw7kSUeJiL79Y8jtJZ48PHSNp9TOyxYjqBiiZOyAcMDfrv2VViT/ZRWfgf+fZsN
+yCFy4n5xSAKh6ZOejWs0W/GJcu8soHyhJS2D4WDjTvn/bnMRn4fb70Cv+PBbRSHI
+QeOeriAEB2cN/9ppzl2Jd8pQmL3ztLo0fO/UD+MoMd4Lm1rnwsBo3ej+zpfWnpMR
+Yzr+5ypwAVDoVMPw7uzJsy0xh3z0JmIlyO4EKObh0VfSqwwNBBPS4T+kP0kyLuxZ
+lGTs94CWobdbqlcp1n8+4XMtwk5YM3f+9UdvpS+dm5ow9h5IlkKFaHNqfAY/ktKz
+/HfENf3TQb7xv15dpaDCYWWa1Uj0r1lCE+xZDs2DhVdNgCWhPF3iXLEz0lizxWJt
+jVgfAuoyVSk9OO8hz65jNTWYQQak7zpOK5aTU1iFT6kXB4JXWeYC4/zKLptqqbvz
+MfYCFSyYfsuvwR/bXcVmiyjA9ogE2PkA9owaxhV/TDQsbB3zwQVRgN5fMrssVgyC
+CGYdQgqB1Ase9hbQiL0Ad6qWwFTJK4Zbv+Xd/mHj5kZcve670EI3K+agSg5098PZ
+s2dgL4aqCS68UzNC0YGf3vB9M+N0J+Mw4kERgYYAfr6bvCOw+Me4IcBJ5O0+/3QM
+UZKZLOgPXISXhjRVA7bCD+26MMmQgtoHlJF1qhKotoATbJK6zw1o7/xDtQS78VpX
+Iu08DK8pwf2SNGU6MkeoJirgYWMyFX3louM57o0K9bspzmwG8N/NlRGzU3Qpy7aJ
+EDESZpbx6G5eBA3Ts47R7HCMiDbRi94JXLCIigvakfaDrcCMWZMg9EMRv8jc5e1n
+pH/r5uoJP3OepSxJlmxwojYLKcZuKWMy3IZ01no4A6QSw1nn+xRm0slmfLeDdOZ8
+hmk0sIIFWgybgDw/+8+aviadJJnzEEgNezukLu1ajrxKTwg/D/w809e/ODCKTR9j
+juFL7C30xnA81Xmow220b8/MV3ylM/Lbhlrrl3FNkyidIyp9RoA3G0f2Th27nAlM
+RRmy1ojouQ8YEfk15tsH1SyVbjeqBYrrACQ+yp3MPqTaA3nhcWKPMHLSXl1qCyjG
+ux9KKUZQzYsl7Cw+TjAXOrqtpoHVoqlF9aLkdAC829lmA/ebGkrExolLnXJn98r9
+CCk07OyFSaxg5s/pr21dxk1xfnISYfRu0tswZknmtdflvAv3DeEhX3J8vc1RnpB3
+LZ9VUuCBRdBbPFF9IZC9kOxN7TMGYNFMRDpbpGtu2vPy0J5UG+NY6VAY9QFUI5o4
+/d1FDZ7snPfEXkkHV1Y3s+kLxfhXnQrJErpe0cNRfbtQNSFYf9q2PBl/e6hZOG05
+v58BgT/h+7KS9jJrfy2Hn9vGr6u6lMltxDKr445YZQCHRrM5PXiaNy4cnNHsCwrx
+/qO0Uc79wMuaPSOOf9eT+aQN5REcE587JXB5U4TdoXvSE2jbDlYR4Ct1x9qtM80O
+GBSonX5r7RNLnJD6joOxMd7YoFLa3MSfJcOLCzNBI2ev4JuEbdAtkN78nGsCBxGy
+1dyzcMHEdm9wix++VFEZ0Uq11J7cRoNUhEhwJHrwtwxQLqGgcE1fg8id//2FEMCN
+paN2dPS4U4FkMSvdPhM2zSiEr3y2cRsRDJFly4zNbPR/0+aFFkobSHnrKklMCa63
+edCcNjAPVo7SQrOLk6mRy5oqoUF8WCSLEgpt9dj0vYu8we+FugRCU2hE7MSEc6tm
+GLvbGVkjFTDDqoIOqhx4y76YlFuQUezPsNGCexLUfkoMJueCbSQN8XPoUCkrZfQc
+7i0EEMoBe96oom+gF9g7RvEX6JM2/eEi/555/OMpT9psh5HbvU/qhRcXbCC9gmmv
+1WP9cmOrFvsyJlFtsUmidBVUOvn22xB2jWcEuU5MBoZlM2D/GfGuOb1tSlCspurl
+0+FilntQR0Hd5wb58e9KdI4Y7IL2wnd1qpJh5asrOWAZEyC8qO1S0TG9FuTxgPLC
+pMDjMnuGmdqA2RCYobsdUpUSd3V+0S23ACEfSEz7P28NEoBELiWTZwSrwI8XxC37
+jRkBpPTIdLMRKJbm//W8FrHX4cl7Dx9PoF1/oQ+MgaqOkbG7g3THWfTgJif94ipd
+HxPqIWHj3YQy/jN8BW9giUYrIcTN951mkmBuiGFjsXDPjF3Vd4Uu/F3zvavzqp8a
+PEBdPYn7v52wiki5GcZKz9i078qLEfKAbS04mcr6IRO5D5cXw5VL8HXWVCuec07Z
+M0NdsqDIulGZwmNuiZWgzu6LTqtFItYrS+YA6ZuWusmkvAaLMQ30687mof+qRZ5g
+G+rc4U8B8AYbAj+6kQZQRWGC4A8p2SnVJ9gUdAzICmH6n4BabZxqnXq60Z3E2syP
+WGOGMGMRWyd7nDc9U29Pi6ejdpvBoQCVAy16NetZXdsRO6y42Z++bmKTsWULYEbT
+jB2GHKAm4sWC/mEDdqe/pknklD11nRuAc1fnicWe+gdMrYNxqNLPyqvaxsx8Etlv
+iTZQUI0wYt5KJIKsQMGLa6NYu2mELezlfE5HVVrO+3V+zodUAgc7lKjRkbi0L5eb
+vm++cqAjwe9kLussAOVD9fn4XSlELCXC3ot8CWTv6n5xpSMlcpQ9cbTWW9gQzHtO
+ijDsOsnNLhlV565Xsp1rITSZS8Ajm/booP7JRGSq2IFpuL4r+hwbkdpKjzMSJ7LN
+WtrrZLqNLSHw3i9YT016E9Nf5BFXYWUvguuusXP6CjnnkoYKMYfExASIWc0NWV9l
+oGkOy96zGn9hZah6TUqxvXhiLpB6mVvdsqXTjx2iiiMHm/Lb/2SvHCmhtp3k0JEu
+FMdRkkwazPBkKR2pVBAC6rdI8uMakHUA4diWSv47I5lSWq+hKd9P9EUZOEDhlIbm
+ejsBZexzF6Nfn34ah0FitySLD7Xl2+GrYkD4aWtOVMsN0M8WF7sjM63exxBoghjm
+dlHlWwjXTbknQdz8nYpvT81OisRtPmk4rfUxi9VgBFC5+ovTLbZJYj6KWWsw3hrK
+t58f5lrtD+i7Gd9ElgR7EQaxvONAJiwkboaQ4Q5FyIltssIdbLrZvOX16cQnUoel
+GJpv8Iu564wFH9rkQUQx1tRYkivzjXGZcocxhrS0TvoPgUnSgtvw5j8TlouBx6A2
+GghuCAo6NR+tMvT4Y1F+C/24JIMlcVowRXBEOku+Goa8qZDXPxPkhK+vjmRXGbgQ
+mgoaP4vzpyCkI3cn25r8Gii1SMsGTHmNSQKiDpng2sHPY5ZU9RJ2jlcNpowMHU8r
+Fbt/xLPW8MyJFgdhRAOX5yc0F78kgJV4k9Q3+G2LMZpWTtXK/U1BPqoqE7CwC4qS
+prOucZ6nER4q6JspgnVXhyrD7zdwFB+ckYFjfOftrAoWkdNQIxxjX1rCqgRYfFUm
+mWnIcAUdNRxFP67SflhkMbeqz5fGF1cPffyU1Wl9TQW9neaq3hB22fcVttu5Dh5r
++PdGzIyyESAyEQouKt48C1PZnalo9YFbDIm15Hv+hC8s8QL2RxLPnZag3zW4Shzc
+aRMe/zj4V2JAXHGmHtCbT8SXonzBW4hW2GIxF0zAhII4K5eJmXxR+Drf/lrgHufR
+wqHrq6c6az90X7lRN6IGsjOOlFb8+ZeG8rDAcxud9HDcYbrxqozK4vDAKMqmbKzC
++9H8n8YSVHn8kPVqReJkRLa3laHo1HCVX4KhgFYch90lOZtUfsyCcI6nYgCTdcjb
+jfjZwESaQU0ILXfgWkrRG+rJfVSnSWFq6ePZpOTK56dd5gBESGNjIZDod9A43dFn
+rsTbfS/7fRLNCks89YBKmB2w5bweLHtQZr7HfsUj3AweDF8Odzz8wpAeqq8CIuqo
+APEwAF8M9NV3sZskiRrPpaBbYu9fn0VJMv2k72sxTtt+BZBMyMJPnieCc9lKp9aw
+VbM82VLh9TTSs9fxZFxwlc+a82VYVmXzxVP+brpcRUKJw7GLAjVi/G/vmFGbXV0B
+FygkdR6J+hnQGrGWi4zHiSeSD/YNcNTSXGb7mH9ALOr+fNYn2L4hHqe9RflpsI3V
+iid0yRl94fowKtaKLVLX/EenLNmMgtY1SbFbluQfP7+PUwYzwLHXwudJQl5aKEGs
+4Oyk543EAKV/y+gS8vqu8+AZarxB+7sn+t4p2X6PKSoHx0NzilyRcpTaB3tq4Sae
+OHEYv/ejMUdXSYHB6iYcGM1xrUX8MDkeVpqjNzwuDo5T/zHnamsjiypxr09auqRI
+vvPXiggE06Cxx+hbGlHPICPi7UVEYLNH/ioIRv45LifsRGc9CAdPc5JDmT2JTKEa
+rPRCZVETkyHX4e2ujtKuProjmSVO+JJlnbWnQlWiorGKNXpc7+oZrNp4qQGDdeKM
+2bWv0gAcVJImZ7imTHs7hCWAN572KJ7DqFUQgtLipib+OUJ38BgNwCmIkMJXQX7u
+wIVjdvF+vRvQYsgatG5c25l+d2Qlgb1PoESVpzuHCLy66nc0MtC1vmxZKSnDfN3X
+iRMKXwYWf0H0KnWkTPKHWzm0T1G1cSFRAgd0nU6qe337q7jrf54sRgka+F93juXQ
+9ZnKGmJyaJXTD1doNdISl2jC+nEh1upf1wprdxihdGbkEzPvpHoNaGBTaAIKK3ZE
+S/f9zU6LVlXP9qU0MYDd5+p5gdgd0OvlZdFipLKifjv6Rgv4F872nSq1tyJd8KQq
+1JHqUYOyyZhsmmckhEKubjCjtzf+pvqU+FDe3yOzi07AmjG7iQ0icQ7aWMuTHXBK
+ycjiTrynmOF10W599qTR/YKpm5UbfuYCEDV6gq/dRj5NRp50EjhiLLkHPE6F+xD2
+hgFDWKMYqmuhqF6DwBYXONHPx4+LE0UuU+rDxLRTJ4H4r9CykdmDq8mSyn3Xgj2W
+9U3zxJa0/+e0tU0VmzbzQBbfa+nG51t7j+hFue3elzwzCRsocli7yfCAxQrJOS7h
+uJv+TFGrjTUmghmln1jXgK5hMjZM38JS70aQeAPAJALMJgyQd2bFgBwSei0IR3cR
+P/Z0oarUMzhOEzUHwnxHT/6rBCkgW2cSzPqRJmwi6K5GhUaGXKzDFjpoRyup+hp1
+lE6gWlb0s2I9vAs3wEEJ23gLzl9FclcITqcGMMP/rSs8MJ/PrfwSQ8ZZLumFrME6
+r2N0NvtkSOfODGf0peV28SKdngc+s0FmRADBIrr+7D5ywe+gl2NSMCBFmKEyqRVw
+XNpZbxLX0dhiWRgst46e0Gk6W0wbPzF2w8RrsD/r2Sw2ZcPGThDykqUNxYA9C5S1
+Ijc6qSpNhPHcsKeXe5Vg1wSdYnqtBc+/pwJoMMwvdgQymo+gHe3Vi3Om5lnTVUKW
+fpRs80ADJFePX7IBf3wqas/Rct9liNy+ZiDUBHSOrAVW8eJK0o1ymQtqp6XgCqu/
+T7kLbY8plGKJbUfima3jm6pAGn87ByAoiTn0ivWFXtP0dz5FWh9N9cpK/UhhjoAe
+kvLhEbEFiMR8Ee5J/vO7ybbqA8cFvYhgnqKd9+y894dLdCx8hXCMKfblTkI1AV9x
+t7mJigPXoE89jMCgoTfWf+/Eq7eObR+tyzWQDPmP2FIf/+DxpA2Wy2mIcjvw9JG5
+BF+zdqnaShp8f7gOQy2g0Mn22NsbC175sb4fxe1/bNGSuvzWdks17Z8GcfgwrW8M
+YBc6cn3VPXKSVptybcnbvU95xOWFX/adi/j126XgQWD3KgNfxDsxlPbI6zbeV0Uu
+Fme2+Dinkkg11AWJOuWVnJQVF3fnxJHzKHVU9T35LYUmocq5JYiDuLjMBOGxDScb
+i2vd1x4uBMDAU5wpnPDEtWh09sYr//h9ma77Gw+ebGOrkRLGYkU1KwTjTtYOqrQi
+qbKDQtQayeCs4yyDZMuifSJhaH6DwvpsrOVUl9srpuThS8UTer89fz0VXYzJCLWT
+nlXBLUm4sjn23T3kLBaTuCTAhakyxjEMMkTXghgiP4sGxx/4ZovHkbFue3MuX2WT
+l3nNYao1ihxZvk7vCCokX9HYmtGZeAlQwBMch39CuyDxphqz9rKj6yLgtalnuxct
+2VfIEPR0gc8rrt7z/eIfwpNc+qiV4BPfBJw1T3QAbd4dsTm1IBPnGRsbU8blyzQG
+WeR8hUXDw5A7tvddBpXBafNz7Z9EB6Ka/n1nkgbo0noakuy6WRMgEuQqpFgjEYGT
+vtEe4gPgzhI4Sc4s6gDVdeBM7RqOGmBCd1oG1Le1ByECJh0Iq1Gafia54e2VjVRR
+zT1ovGBlTKsJC0ZG5689d39q6HcSVt37mSg7oq1xPvuRQcYDl0T+uPHgrRQ7/uYg
+rSqXLJh5MGWYetQK9o8n7/6IQIgJhY1ZA2dxZsUtYx6qu+yBFdfHb3SjjjNGbPTP
+6SkbJhee4CuyRaxR3OY+7yStQXbmzwgBi4DgJyDQAVj5jGF0dxj6qggS7DUyO1po
+ZPaNoqDHMQctXj/OkLP3Aon8hYZQLchB1jvvOjAGGtbCh0veXqXn2Uf2Qh25LZl/
+XTVphjiH2eTn8kAuxNeOxNjTKRTPxeDO3hSPmT36htHaAOJzkaj9GTYBOCobqwUc
+5Xt+so6f39Y2jBSEzbp7AL0xUj3PQcdGs7triqsVbKw60gMDeOEK4rOLlgmZGqf1
+LcpgpJv2Rd5w+lBqgjageZmNH6IwO82CJPtHUFveyTWyF3xl3gTZY5jO8UV1XAA8
+GpWdGLl0CRnIVAPW9//PQOAdKj5zdhCOR8FVXpnASKzqWWqqzzEf3QLa6vaE9rAg
+/lcvcMwbc6FQUMCjgB7Eue7mlcpeInGrRwTWCcJd4zH+VfxfY37JUZzpAab4Zpt6
+SreGotS7LzeM9bu2FYMK8CcdNKry0MUN0NeNnfaXMxvYMqNrnyzm6mLm6YlZ1IVU
+6YK3bfbaeAuGW7eRbmOsiol0CNBr/JoDL/P6/3r8lY1Cyc+jP9MG715YpDNnPjgc
+SU1U8kaQszZ7ps/afyOWb3x9mUezTAb9n8B7xU445Akr9/7lXC3K7EDbhnGd9irQ
+lJ3QBVbKT0ScXC5ITn0ugmHrXH6J3e2rKLtB75+S6HfS2Wdi2hTAtUkWQn6Kbq5p
+LOhkKjhK4fSnZ0PaYEapGKMd9ihVX/+Jn6MDxIuSoAgiXiqj6DpgiOR/12G/nhIo
+jC57Hui6hANMPTHvKwGCgmCLNFoE2kQTHoc/I0uD9g1jDXWumWvZmN9xCe/UV7sT
+aX2xqvTqcs3P37Swu6MHC6yI123WPoosUeEJRT36O0GeBZNuRKr0SW7Qy7HUXxAb
+683/PkWV1GTqmBhH0AH8BpAWy5sHe1heNHWG46gE4tXdZjmPYwCYMkWYIiZvDWNL
+R0whx5grlzpbhC08Yy03goR48Tw+lQFyzdePAzqP4O20YFBd+XZ/7URg43zFX1E6
+u2T0Lu9MJSWcMu/rK0R0VzdbP1nr1FVph8AEjMYhlef7NbKCOeSgjyxVEbV21zBA
+DwoKs/oukEoUoVYBeRZrO3W5VOI4Fda7BtfjwbbpJcDY02w7US1G6UaFaswdiDJr
+rQWXI+EcRMJ2GfI/TUnu+0MLSLXaUWOqKKPM7dGhwr9bA+fvoRZC7IfvSJsynWfL
+MiBSSvw3QJWc4T4dm7fTtlcKfywkJYLVJ/IvDumWa6FbUWUw/VckJOgbkJ9AiczK
+9znNFCtYQaHfD0RSkrkbe60EaZ6W8om34QjqlSFK+PUgRSUa7MLvZdFYeqw7z8T7
+3+YINMJLjYjZqG9lKllVhGHjQrvIAPUbJ0pz1bVeJYIrtKCJHrnUDrcBhkxKqU//
+Wz/U9J7+IWs9H/VGPFey6DIRWFXN3LnBmoVkS5tN3wjZgpkVXx2Nrzsjhmyb18zh
+2XKPkhoKeynHqpR9+WEdkujv7tDY6Wbq+pP5hkPva69JUe3ud+iYLTySLrOKK/Qp
+hB1T11XpEyINGU+zLS2XaN02wOQS77M2j5o+spVo6wPGPDtlH6zg+dUmkmXr/48Y
+zygXWH2epKtyiqtfOJl5eTqniG5sftCvqE5GoDk1hXIeQ2tv6ZfyD2fsjU5BSPHh
+CWpJIo7TnKNLidlYIkoX207Pyf+uLl5DaqLW46ag8F7Vvwvw0pAoJqho0jzQheQL
+0Q4iFtRitRdkxLRzZogJSHkxnH6QvxpA2EvtsEohI3Rc/Hyk0Sof2tpSVQWvBncJ
+qwF6LigzJ2MdLwI5Ld6hAfdFQyBtQ9Q/EuU0smApwVCM2lWoeavgYfKKFU7tZcwp
+SJrBd7TNQuCt54GOTCNkNSlV01U+uPzpkgbIhVOVr9UtazzpJ1+8OgyRKnsrzucf
+VZPBpUSCeMgMFGozrKCxffcHrl+wd8hSHGJLt5Jm1SlQmZ4ei3bioqFgoQ1czDI5
+xFTZyC27N1gNw0nAf6HEPirM0pTJIhfRjUu5Dqqw1xN0FFSEk70T+NNpW3fA6VDy
+6sZh2UIuYwmlLvXn3+e7VlEs8UrOF4eanCrR842L1a7S45rvPOsFvj14rXkiPHrl
+xAEO21B7ThD/fM9aCepXL08HccSfyVlniRzVQd6odPyU96YXgAiKsCsSJaui3HRT
++Rgq02BEnweTuWeAvkuekWKhnqUqQyja4Ux7z0QJkA2Oz/T02371GiGaW7d9uo57
+lojUd8FuB48RATlbBf9BjxM4S1qaJSH7Y1cnsrPy4PavndhiN1Av7kIM2PHX/6vN
+CpeL7/Lfn7zDzeiit3GdnnGfSZiWwqQGmb5heOcBitxHq4QJNPOPwdGOhAmu7GCW
+2+UN4+cDNcn2EguszKhS6qZxmP+MmxVeeJhbIKmyK3sS4Yl2dtPE2Ya3LjlJcBHO
+5SjHoO3mUIYoxCniPD9qceKVdeMIC6xfXkfhH/E0aJl58X+RnmtWb3UxIKcrXF7A
+epex7kLRDC7APMSQgLl0W0+iKfmVnKLjbanQxh8dFKOTRENkTEP5TOniDge8WDz6
+ZYZ9if0EGzrMs3Pfbupbw5mFWA3RiCXkq7kHuyCOfBTKCAz8tEwKxxiUOhv3GsX5
+Ch8oryxmZKmRUqtpYRbh3xkjTjynSrEW30E8LC/f9KHO/Y43xPXLxPpsXZkzsXkD
+AYw2cZX1bh5ErUHCxhug3VH4oB4ZU8jTcOPojIaRfXbI+13v7x6r562T7yuaSKlR
+b3qUL1w16cT0SVmWZQLyAao/lXFqJHAX0q6LajEWc5n/tQKMZrhiIbE/0vhJH1fx
+A6KWBC6wdEpRZYi9dC/EkWELS8ACSg7qx0nCY51jue+n9cEthiG/ZF8cB7diLKeN
+VZAwBLMes/AAr2jcNnYZ+kf2aONvTsFgEr+o9UlRh8IM6mbPpJkYXeK/mvjY4awW
+vbMLHZe1HUJUPZmXbdQFK7eLyxoWNt6grA2kLbx8MdFEdoqK2stCZKIHX+E37NkX
+adCM12VXqEjiejbzheu7nYZW6n9IA2526AX3UWeNqWdyHUiLrM4obKJsmPU6RyT0
+Z16ALMfMdq30x+D1eUTt2qXrwC3bipsSvVXe5a1PiOWeJgm8J0V0KT12ajoPu0H7
+9N8qdVIeaOZYOkBpClfPrHXZfHtOfDUpGtEMWvuOx7sy75B6oLRLaeArTZASh9Ut
+FTTpu1wn/YAlMHJiRrgcZie3D/L+w3PrYvfxjklTII5yp15hPTdDwwYT+OrqB5l0
+ltEjr4b93w9Vk/0mIUl4LFugmRh6L44HSaLIXPZ710yG2+D+7Y0e71mGmtDWE+eW
+jMbVE5s+pO6i8URGrHuwOyn8Oh6MCBHjbEN9kXK28pZ+X3CFlZxqkhoHGMsO+y63
+VkbujJWUR7WOxxxvWmGB6se6KbkwV/4fJmn3sQz1jU0pUqJia6qenxb412IQ2C5/
+dODzCJDByXX4PvedF0dyeAxusI1eHjpyT5/ZxEUAvDR4d1E5Ejb/l/pFWj5ZxkEk
+MjCZKduWBS2o427BtN+ZXWet7LMCa6fq8I7EAxGK4/siSiTubjUS2c7L9PsQwli1
+/rPlP7xiUY/bkuP0OTgbPJwY74ymRfpSGX+VtyBiHj54DuYQMD66gTQjKg+EN0rd
+9EfSxHmkZy0FcWs+L6RWUm/vS5fPGb9XDLwD+BGIGxeTCPDu4FiNU3ct5G4cqxLV
+xC1QKUKw9STd52NWvSl7w6HfPXFg6oYrrCsBp4nzRFh/wLw/KVS3R/HqhDhwvDQQ
+jK6BD2Huj4gQ20NL1wNll/rmp/cxTtXwigflgO1Dh+N2Q8GePi3Blpz3Po+ANK4S
+ksNNP4F/XzWbQ/kIDQJ8zrKIw2kzRE7S7bx7PPcXYmnldOH5jMzr7BqWYnZj/W7P
+hGf3bWjqnD/oZIaWzurdhhhYrl4smI52m8BphszoCW4WClO9wjimZC8QvspoFVSe
+ZaZaKT9Ev4kRAagnZDBrlESpFJKx3mJo5sCsw0XoKXFzZCU9TkwiUg6pIXSNUP2K
+Vhbf+BeMLW5YYbVR1mKqOkQ7OKBAJ3gkts2Ww8fdlOsQmz3xgxeqD5ypmILdiF+U
+ESs2DRTwRYnjdZXjOeVbsrA5eyxklt2R6shnpOdgvL1s3HzHj8ZwkF37LQqJn8gj
+s3HaYvZ8+HpiAll4oKODcg19hrNlTFj/LUkUkZjxypMGHZGPRXTxIIR2CwbpUAcn
+10tYzX4RctB+5EaK3sGxoU8ZajZh/C6nH2dWBkTgFv+YC1vAPqLFdm/4UtX034yX
++3qEgPpRTHzITUfaiLD4oJH/CmPhjLi/h93eo4lFGjgmmzibiT+Z4v1hRS8uspkE
+U0bNYevWmKmgMmXcoZOpPgJEkX4i5z+yFhJ5Z44MlaoD42nMposUHQ/tygiuIyJO
+5vEJ4Nd/u5/g1rb++KqZV16avaIi8DZDANhuIbV0yVZXsOXLLprEb63Gy4Q5PHue
+FiPHOwq6yrkPeWkZW1n+sxvEtAFmvg/tax3TPT9978nR9sGhTwVGIDSWA+nztqWC
+spkLyU9uTy0qu5N9kl3lGRnA0h2cLJZcTEuHk5w0L+sg8qHL4UjJe/xL2GUyYAtu
+0wQlJAfr8tIOkpGAl0CfId8DD/x+sWY93WnAFt505c2mhekv0FVWEnFWfOwIYpdx
+foVLO2jXhCK4i4/lfGXlEb9GNS0afLjCZvgxWPYMkHitHgKqItVLVrDr3FVngMzg
+2pHYEUNkzamFDI+GCDf7QRqROUcvfaJ9Zhd/upjZRJwPcL+OC75+/2cxZvTuYpCt
+NlEMUC5nHIjuthUmp+3q6eyI2+/waZ/j57M288DxmiJwO89leoR4ltpyVuHYsBGl
+RlEt5qOwRtN1fnTHWir/Mq0+AD9wO0gueRfwYeJ+IGfkeCdH8ZZcmvJMnk5VqewX
+CAjYL0u9SW/Y9UuBCp5JvAeSMY78uRe1osqq5ZsStI5/Fqrcn/D/QIjB6dxS/DEb
+wYsMC6njCqPGEv3fyOEGEf4w5vqNRnKTj2A457DpY1Vo4Xc5uObzamO1u15DbNTg
+R407lhUA8tOw12NB2dVcGMjtYz3GuPir4jnqMg5Z2xeCsllYioe1p5g2E+43S6Cu
+ziaQIPkhTROKAmIfokARIRMTrAcGgPsnMllWdReZI3ySi3Yy/7QxrNmu3v0Ehto2
+g7Kru2C74CAgqivPjfsfjTm77AxgavccqaeCCokjLy4MzJPHsnaj4/gVXqSHQL/r
+O7wqDWPmoSli2uorgKsnzOMssq77FeQbnk0pa1Gb9kpuSJWIT1Qd8ZCsJT3y6ieW
+cW07/2GqT/3p4HX35Tx6Va6HmkjIL24EnEI78JYTCFj+vv6vNaATcOuPsHRBrh7V
+sRyqAQWUOp+Um+Js23qGu+sWy6BtjGrdWDPPZT+BQejBLnDIqXjijsYtGNkK+Piq
+IYV4Ltmz+9KycZrw9MKe26JuBx1vN5NEqmBEaABTth9A3CbLZMu1LKim7B3sgr5t
+Ei/zbEbVdSOZMxxV1i18Qqs4L8NSex68G0IeZRMR8wdRm6CO023+DJJ7hLVdgi8O
+wDEmLEK6wM6G+pFYnaYGZDY3ldVWrUPI6NB8N6nDFhknBQ2K4Pei2DhacsR/hFlo
+Bl/IP4VbzLBRcBgdz0gwE3goUnuwxYkvp8WuiNNwJd3n30M0fsIAl+tqrGeX4ZjX
+1BWV2Em2OQLMIyC6Z/zSKTE9EaDwDz7lJ566jNzIp6AYuI8mYpiqdr4yyKqTvCJD
+sKmi+oJ0nN3KVjJiLxIiZQ==
+-----END MESSAGE-----
+signature FxGDllo1WfV+JVzWCs7zxSHL3Wd/geZXhWlERAbcEiNkABSHxVtBBXsqvwczquMQrun7DIhcPhhnYom4Vw6GDQ
+.
+650 OK
+2019-01-31 11:29:52 1548934192.33 650 CIRC 25 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:52 1548934192.33 650 ORCONN $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0 LAUNCHED ID=69
+2019-01-31 11:29:52 1548934192.33 650 CIRC 26 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:52 1548934192.33 650 ORCONN $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub LAUNCHED ID=70
+2019-01-31 11:29:52 1548934192.40 650 ORCONN $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub CONNECTED ID=70
+2019-01-31 11:29:52 1548934192.41 650 CIRC 26 EXTENDED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:52 1548934192.44 650 CIRC 26 EXTENDED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:52 1548934192.57 650 CIRC 26 EXTENDED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:52 1548934192.65 650 ORCONN $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0 CONNECTED ID=69
+2019-01-31 11:29:52 1548934192.74 650 CIRC 25 EXTENDED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:52 1548934192.80 650 BW 28468 7888
+2019-01-31 11:29:52 1548934192.80 650 CIRC_BW ID=23 READ=15779 WRITTEN=0 TIME=2019-01-31T11:29:52.802162 DELIVERED_READ=14295 OVERHEAD_READ=1143 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=0
+2019-01-31 11:29:52 1548934192.80 650 CIRC_BW ID=24 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:29:52.802168 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:29:52 1548934192.80 650 CIRC_BW ID=25 READ=0 WRITTEN=509 TIME=2019-01-31T11:29:52.802170 DELIVERED_READ=0 OVERHEAD_READ=0 DELIVERED_WRITTEN=119 OVERHEAD_WRITTEN=379
+2019-01-31 11:29:52 1548934192.80 650 CIRC_BW ID=26 READ=1018 WRITTEN=1527 TIME=2019-01-31T11:29:52.802172 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=357 OVERHEAD_WRITTEN=1137
+2019-01-31 11:29:52 1548934192.95 650 CIRC 25 EXTENDED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:53 1548934193.05 650 CIRC 26 EXTENDED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:53 1548934193.05 650 CIRC 26 BUILT $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:53 1548934193.21 650 CIRC 25 EXTENDED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:53 1548934193.21 650 CIRC 25 BUILT $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:53 1548934193.48 650 CIRC_MINOR 25 PURPOSE_CHANGED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_IDLE REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_CONNECTING
+2019-01-31 11:29:53 1548934193.48 650 CIRC_MINOR 26 PURPOSE_CHANGED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_INTRO_SENT REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_CONNECTING
+2019-01-31 11:29:53 1548934193.80 650 BW 2172 1629
+2019-01-31 11:29:53 1548934193.80 650 CIRC_BW ID=25 READ=1527 WRITTEN=1018 TIME=2019-01-31T11:29:53.802398 DELIVERED_READ=132 OVERHEAD_READ=1362 DELIVERED_WRITTEN=139 OVERHEAD_WRITTEN=857
+2019-01-31 11:29:53 1548934193.80 650 CIRC_BW ID=26 READ=509 WRITTEN=509 TIME=2019-01-31T11:29:53.802406 DELIVERED_READ=66 OVERHEAD_READ=432 DELIVERED_WRITTEN=310 OVERHEAD_WRITTEN=188
+2019-01-31 11:29:53 1548934193.85 650 CIRC_MINOR 25 PURPOSE_CHANGED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_WAITING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_IDLE
+2019-01-31 11:29:53 1548934193.85 650 CIRC_MINOR 26 PURPOSE_CHANGED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_INTRO_SENT
+2019-01-31 11:29:53 1548934193.85 650 CIRC 26 CLOSED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516 REASON=FINISHED
+2019-01-31 11:29:54 1548934194.80 650 BW 543 1086
+2019-01-31 11:29:54 1548934194.86 650 CIRC_MINOR 25 PURPOSE_CHANGED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_WAITING
+2019-01-31 11:29:54 1548934194.86 650 STREAM 64 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:29:55 1548934195.29 650 STREAM 26 CLOSED 10 68.148.246.91.$B4B900AD50134E9528D7CDF665ABDADABF53A9B7.exit:44444 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:29:55 1548934195.61 650 STREAM 64 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:29:55 1548934195.80 650 BW 34272 1629
+2019-01-31 11:29:55 1548934195.80 650 STREAM_BW 64 52 10 2019-01-31T11:29:55.802762
+2019-01-31 11:29:55 1548934195.80 650 CIRC_BW ID=10 READ=32576 WRITTEN=509 TIME=2019-01-31T11:29:55.802771 DELIVERED_READ=30884 OVERHEAD_READ=988 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=498
+2019-01-31 11:29:55 1548934195.80 650 CIRC_BW ID=25 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:29:55.802775 DELIVERED_READ=148 OVERHEAD_READ=848 DELIVERED_WRITTEN=58 OVERHEAD_WRITTEN=938
+2019-01-31 11:29:56 1548934196.80 650 BW 68747 1600
+2019-01-31 11:29:56 1548934196.80 650 STREAM_BW 64 0 64619 2019-01-31T11:29:56.801383
+2019-01-31 11:29:56 1548934196.80 650 CIRC_BW ID=25 READ=66679 WRITTEN=1527 TIME=2019-01-31T11:29:56.801394 DELIVERED_READ=64619 OVERHEAD_READ=619 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=1494
+2019-01-31 11:29:57 1548934197.81 650 BW 340275 10143
+2019-01-31 11:29:57 1548934197.81 650 STREAM_BW 64 0 325190 2019-01-31T11:29:57.804024
+2019-01-31 11:29:57 1548934197.81 650 CIRC_BW ID=25 READ=333395 WRITTEN=9671 TIME=2019-01-31T11:29:57.804034 DELIVERED_READ=325190 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:29:58 1548934198.80 650 BW 295915 9600
+2019-01-31 11:29:58 1548934198.80 650 STREAM_BW 64 0 282462 2019-01-31T11:29:58.802221
+2019-01-31 11:29:58 1548934198.80 650 CIRC_BW ID=25 READ=289621 WRITTEN=9162 TIME=2019-01-31T11:29:58.802229 DELIVERED_READ=282462 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:29:59 1548934199.80 650 BW 356264 10657
+2019-01-31 11:29:59 1548934199.80 650 STREAM_BW 64 0 339632 2019-01-31T11:29:59.802349
+2019-01-31 11:29:59 1548934199.80 650 CIRC_BW ID=25 READ=348156 WRITTEN=10180 TIME=2019-01-31T11:29:59.802357 DELIVERED_READ=339632 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:00 1548934200.80 650 BW 357481 11743
+2019-01-31 11:30:00 1548934200.80 650 STREAM_BW 64 0 342072 2019-01-31T11:30:00.801038
+2019-01-31 11:30:00 1548934200.80 650 CIRC_BW ID=25 READ=350701 WRITTEN=10689 TIME=2019-01-31T11:30:00.801045 DELIVERED_READ=342072 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:01 1548934201.80 650 BW 338884 10143
+2019-01-31 11:30:01 1548934201.81 650 STREAM_BW 64 0 323696 2019-01-31T11:30:01.803612
+2019-01-31 11:30:01 1548934201.81 650 CIRC_BW ID=25 READ=331868 WRITTEN=9671 TIME=2019-01-31T11:30:01.803620 DELIVERED_READ=323696 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:02 1548934202.80 650 BW 371170 11200
+2019-01-31 11:30:02 1548934202.80 650 STREAM_BW 64 0 355468 2019-01-31T11:30:02.802139
+2019-01-31 11:30:02 1548934202.80 650 CIRC_BW ID=25 READ=364444 WRITTEN=10689 TIME=2019-01-31T11:30:02.802147 DELIVERED_READ=355468 OVERHEAD_READ=1100 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:03 1548934203.81 650 BW 309816 9600
+2019-01-31 11:30:03 1548934203.81 650 STREAM_BW 64 0 296406 2019-01-31T11:30:03.801083
+2019-01-31 11:30:03 1548934203.81 650 CIRC_BW ID=25 READ=303873 WRITTEN=9162 TIME=2019-01-31T11:30:03.801090 DELIVERED_READ=296406 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:03 1548934203.81 650 CIRC 27 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:03 1548934203.81 650 ORCONN $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70 LAUNCHED ID=71
+2019-01-31 11:30:03 1548934203.88 650 ORCONN $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70 CONNECTED ID=71
+2019-01-31 11:30:03 1548934203.91 650 CIRC 27 EXTENDED $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:03 1548934203.95 650 CIRC 27 EXTENDED $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70,$5CFC486780CBD4446B764E51608D6574003B350D~helena BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:04 1548934204.04 650 CIRC 27 EXTENDED $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70,$5CFC486780CBD4446B764E51608D6574003B350D~helena,$8CF987FF43FB7F3D9AA4C4F3D96FFDF247A9A6C2~zucchini BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:04 1548934204.04 650 CIRC 27 BUILT $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70,$5CFC486780CBD4446B764E51608D6574003B350D~helena,$8CF987FF43FB7F3D9AA4C4F3D96FFDF247A9A6C2~zucchini BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:04 1548934204.81 650 BW 395271 14892
+2019-01-31 11:30:04 1548934204.81 650 STREAM_BW 64 0 372898 2019-01-31T11:30:04.803861
+2019-01-31 11:30:04 1548934204.81 650 CIRC_BW ID=25 READ=382259 WRITTEN=11707 TIME=2019-01-31T11:30:04.803869 DELIVERED_READ=372898 OVERHEAD_READ=1100 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=11454
+2019-01-31 11:30:04 1548934204.81 650 CIRC_BW ID=27 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:04.803873 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:30:05 1548934205.80 650 BW 309209 9600
+2019-01-31 11:30:05 1548934205.81 650 STREAM_BW 64 0 294912 2019-01-31T11:30:05.803762
+2019-01-31 11:30:05 1548934205.81 650 CIRC_BW ID=25 READ=302346 WRITTEN=9162 TIME=2019-01-31T11:30:05.803771 DELIVERED_READ=294912 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:06 1548934206.80 650 BW 382507 11743
+2019-01-31 11:30:06 1548934206.80 650 STREAM_BW 64 0 365876 2019-01-31T11:30:06.801173
+2019-01-31 11:30:06 1548934206.80 650 CIRC_BW ID=25 READ=375133 WRITTEN=11198 TIME=2019-01-31T11:30:06.801181 DELIVERED_READ=365876 OVERHEAD_READ=1150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10956
+2019-01-31 11:30:07 1548934207.80 650 BW 344358 10657
+2019-01-31 11:30:07 1548934207.81 650 STREAM_BW 64 0 329174 2019-01-31T11:30:07.803795
+2019-01-31 11:30:07 1548934207.81 650 CIRC_BW ID=25 READ=337467 WRITTEN=10180 TIME=2019-01-31T11:30:07.803803 DELIVERED_READ=329174 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:08 1548934208.80 650 BW 185816 6429
+2019-01-31 11:30:08 1548934208.80 650 STREAM_BW 64 0 177734 2019-01-31T11:30:08.800895
+2019-01-31 11:30:08 1548934208.80 650 CIRC_BW ID=25 READ=182222 WRITTEN=5090 TIME=2019-01-31T11:30:08.800904 DELIVERED_READ=177734 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:30:09 1548934209.80 650 BW 325938 10657
+2019-01-31 11:30:09 1548934209.80 650 STREAM_BW 64 0 312292 2019-01-31T11:30:09.800587
+2019-01-31 11:30:09 1548934209.80 650 CIRC_BW ID=25 READ=320161 WRITTEN=10180 TIME=2019-01-31T11:30:09.800596 DELIVERED_READ=312292 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:10 1548934210.80 650 BW 343543 10143
+2019-01-31 11:30:10 1548934210.80 650 STREAM_BW 64 0 328178 2019-01-31T11:30:10.802505
+2019-01-31 11:30:10 1548934210.80 650 CIRC_BW ID=25 READ=336449 WRITTEN=9671 TIME=2019-01-31T11:30:10.802514 DELIVERED_READ=328178 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:11 1548934211.81 650 BW 300933 10143
+2019-01-31 11:30:11 1548934211.81 650 STREAM_BW 64 0 287492 2019-01-31T11:30:11.804133
+2019-01-31 11:30:11 1548934211.81 650 CIRC_BW ID=25 READ=294711 WRITTEN=9162 TIME=2019-01-31T11:30:11.804142 DELIVERED_READ=287492 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:12 1548934212.80 650 BW 289509 9057
+2019-01-31 11:30:12 1548934212.80 650 STREAM_BW 64 0 277034 2019-01-31T11:30:12.803082
+2019-01-31 11:30:12 1548934212.80 650 CIRC_BW ID=25 READ=284022 WRITTEN=8653 TIME=2019-01-31T11:30:12.803091 DELIVERED_READ=277034 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:13 1548934213.64 650 STREAM_BW 64 0 167774 2019-01-31T11:30:13.639233
+2019-01-31 11:30:13 1548934213.64 650 STREAM 64 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:30:13 1548934213.65 650 STREAM 72 NEW 0 4ja3p2v3lh5mvmcy.onion:8080 SOURCE_ADDR=127.0.0.1:36402 PURPOSE=USER
+2019-01-31 11:30:13 1548934213.65 650 STREAM 74 NEW 0 37.187.96.78.$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171.exit:9001 PURPOSE=DIR_FETCH
+2019-01-31 11:30:13 1548934213.65 650 HS_DESC REQUESTED 4ja3p2v3lh5mvmcy NO_AUTH $BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 xnuo26pqht4gqapdpxepd67aaywpyzub
+2019-01-31 11:30:13 1548934213.65 650 CIRC 28 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:13 1548934213.65 650 ORCONN $0D7C69551F9186DB589BDF00858314AC136A33DA~lara LAUNCHED ID=75
+2019-01-31 11:30:13 1548934213.74 650 ORCONN $0D7C69551F9186DB589BDF00858314AC136A33DA~lara CONNECTED ID=75
+2019-01-31 11:30:13 1548934213.76 650 CIRC 28 EXTENDED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:13 1548934213.80 650 BW 181722 7422
+2019-01-31 11:30:13 1548934213.80 650 STREAM_BW 72 32 2 2019-01-31T11:30:13.801881
+2019-01-31 11:30:13 1548934213.80 650 STREAM_BW 74 91 0 2019-01-31T11:30:13.801887
+2019-01-31 11:30:13 1548934213.80 650 CIRC_BW ID=25 READ=173060 WRITTEN=5090 TIME=2019-01-31T11:30:13.801890 DELIVERED_READ=167812 OVERHEAD_READ=1508 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:30:13 1548934213.80 650 CIRC_BW ID=28 READ=0 WRITTEN=509 TIME=2019-01-31T11:30:13.801893 DELIVERED_READ=0 OVERHEAD_READ=0 DELIVERED_WRITTEN=119 OVERHEAD_WRITTEN=379
+2019-01-31 11:30:13 1548934213.92 650 CIRC 28 EXTENDED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:14 1548934214.28 650 CIRC 28 EXTENDED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3,$C5924D853D180819F4A4D9F1CF9505F4D5083DCC~torniquet BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:14 1548934214.48 650 CIRC 28 EXTENDED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3,$C5924D853D180819F4A4D9F1CF9505F4D5083DCC~torniquet,$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:14 1548934214.48 650 CIRC 28 BUILT $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3,$C5924D853D180819F4A4D9F1CF9505F4D5083DCC~torniquet,$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:14 1548934214.48 650 STREAM 74 SENTCONNECT 28 37.187.96.78.$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171.exit:9001
+2019-01-31 11:30:14 1548934214.67 650 STREAM 74 SUCCEEDED 28 37.187.96.78.$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171.exit:9001
+2019-01-31 11:30:14 1548934214.69 650 STREAM 74 CLOSED 28 37.187.96.78.$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171.exit:9001 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:30:14 1548934214.71 650 HS_DESC RECEIVED 4ja3p2v3lh5mvmcy NO_AUTH $BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 xnuo26pqht4gqapdpxepd67aaywpyzub
+2019-01-31 11:30:14 1548934214.71 650+HS_DESC_CONTENT 4ja3p2v3lh5mvmcy xnuo26pqht4gqapdpxepd67aaywpyzub $BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2
+rendezvous-service-descriptor xnuo26pqht4gqapdpxepd67aaywpyzub
+version 2
+permanent-key
+-----BEGIN RSA PUBLIC KEY-----
+MIGJAoGBAMevriVbH9cHqfUsxZ/x+uq+yHjeVB5HsA8yMsixJEC9SB6bhU8L9z/7
+xLCQfLgvZhCjQBDbtjGc857ck7cqWhj+E2Q08Eb7ZMI2V9TuUlwzV6HsAZ5hZoWl
+qFmxibbrt+SJOYJcl7UWv8tMz8UxhSkQjyoB2eoCdbAgVpghD2qbAgMBAAE=
+-----END RSA PUBLIC KEY-----
+secret-id-part kdb3qb4s32yonv2lom2i4te7nntfz4kc
+publication-time 2019-01-31 11:00:00
+protocol-versions 2,3
+introduction-points
+-----BEGIN MESSAGE-----
+aW50cm9kdWN0aW9uLXBvaW50IG9qamg0bXNjem1rMnZ4cmlnNWZvYnUyeWdwNmFx
+cDNhCmlwLWFkZHJlc3MgMjEyLjQ3LjI0MC4xMApvbmlvbi1wb3J0IDk5Mwpvbmlv
+bi1rZXkKLS0tLS1CRUdJTiBSU0EgUFVCTElDIEtFWS0tLS0tCk1JR0pBb0dCQUxv
+TWsxQ0hhc3UxTkY5YXJhaW9jdThubGxNbGlpRkI0U2k0WFZpcjBocXgyOEpJN3BC
+Vlg0d3AKWDhqcmNXRWdGSVBPNHhBWlJxV1FHRzY2M3BtWFhSU1VmdHJKSzRnTTJW
+SzlrVEcyZlZPU2JoQWJ1RThMN2cvLwpzN3o4bnBXSEVhRzlCTGFNVGpMMURrQ1I0
+Z25DOUQrNFdIdlB5cjRZV3VyZ2g2RkNhVDh6QWdNQkFBRT0KLS0tLS1FTkQgUlNB
+IFBVQkxJQyBLRVktLS0tLQpzZXJ2aWNlLWtleQotLS0tLUJFR0lOIFJTQSBQVUJM
+SUMgS0VZLS0tLS0KTUlHSkFvR0JBSmVnZ0NRNzZ2Z3ZZVmRER3BLZ2J0SjAwTmNG
+ak1DV1VJSGRKcENBUiszUTQyM0FHclRmT2t2aQpKTGNiTTU1aVZhMCtjZDlnWEp1
+WVFHZ3VCVVltL3krNzZBdVRpM01TS0UzTGUxekpFaGdyc2R6NWUySjNOT2xkCjU1
+OGoyYi9la0Q2M1M3OFgrVXltVnNJSVNCbElNTVpsTi9KODFKZzB3Z0MxaEJnbzU0
+MmxBZ01CQUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0tLS0tCmludHJvZHVj
+dGlvbi1wb2ludCBuNGV2bW90bjMycndremZ4enM2ZWphbXl2eHM3Y295eQppcC1h
+ZGRyZXNzIDk2LjIyNS4yMS4xMjMKb25pb24tcG9ydCAzNjk5Nwpvbmlvbi1rZXkK
+LS0tLS1CRUdJTiBSU0EgUFVCTElDIEtFWS0tLS0tCk1JR0pBb0dCQUxNWk53M2Rq
+UFNYQ2NVcEx2SjJIVlM1VW94eFRabldZSVpjSkR5a1pNNnlTdDlkVUxsV3ROYlUK
+RWJydWt3OG10SURVVldvMmhRRVNrUGQyY1V4UEdoZXlhSG5tYmJ5cnZTYUhJMVFX
+d0NVRXgrVXFkYlJTeUcvKwpETTJrMEIzbGR3NERLc2JrSTlWRHZOaXM3dEdLVS8x
+VHFFYmpweDF3bnFCOTJOVm1yRkNiQWdNQkFBRT0KLS0tLS1FTkQgUlNBIFBVQkxJ
+QyBLRVktLS0tLQpzZXJ2aWNlLWtleQotLS0tLUJFR0lOIFJTQSBQVUJMSUMgS0VZ
+LS0tLS0KTUlHSkFvR0JBSldDSDF6anBSNDY2QWVMMjFmaDNkdzRnR2cxNGs4U1J2
+Y3UwZDh5OHNRYjhEWUN0ZHlFUDV4MQpaRU84TWZpNHp2dVJHSGhWU3VrRVdLZmZI
+RXZ3Z25qTzlxM2ZTTWM3MzBxeHZCcTJNUFA4OURrZU1memNVRjJ2CmlXY0VmaXQy
+WjArVFIvdmNvN3VSQmRla09ucHVMcmUxNUQ3eXNDSWJjeWkyZEdpMnk0d1RBZ01C
+QUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0tLS0tCmludHJvZHVjdGlvbi1w
+b2ludCBvNjJmbWtsdTZ4bHJreXRvdzZjZ2JyNDJmdWo3dzRhZwppcC1hZGRyZXNz
+IDE4OC42OC4zMy4yMjQKb25pb24tcG9ydCA5MDAxCm9uaW9uLWtleQotLS0tLUJF
+R0lOIFJTQSBQVUJMSUMgS0VZLS0tLS0KTUlHSkFvR0JBSzZhdzZTM1ExZGhiQWNw
+bmZmY2trcjZjYzBmQWpkNlpjMDhUU1l6eEZMWUg2VGVHbSttUkZmdAo5ZSt1TFlW
+STFuR0lDOTdCQXFVYTVLOU1rd2I2SG92RHo1d2ZwVnZCdzZxSnJsWVNMa1ZjWU1G
+Q1kzVk1DakZUCnhRRVVtUU5uWjlxampKSEhQUXBhVGdVYUNOQWtJdXdvUFlPSUp1
+cmFoaCtTT3pOaktwMHJBZ01CQUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0t
+LS0tCnNlcnZpY2Uta2V5Ci0tLS0tQkVHSU4gUlNBIFBVQkxJQyBLRVktLS0tLQpN
+SUdKQW9HQkFMUkd0RGFlbDlMYWQwdkN4c1p1TURqbXN1ak9jd1cwb0REMFVzaWI4
+RHA1UnFaR3FCcXFxWS9uClJoMnlTUGNNMHM3elIvVmNKcWszSzhnRStrYlJwajJ3
+QzBSNlZ3VXpiZ1M5ekIyWGt6b0Q0Rm5tMVBRMjUwcFYKa2NQdytpeTY1Q2xtMEFo
+dkUvNThhcXJrODZwRmUva3plZGdJd1FIRTNlSk1oZHFmNDJSNUFnTUJBQUU9Ci0t
+LS0tRU5EIFJTQSBQVUJMSUMgS0VZLS0tLS0KCg==
+-----END MESSAGE-----
+signature
+-----BEGIN SIGNATURE-----
+RQlaLA/aY16niMWvpu+TFqHRO5tC+r9Z9wKWD9G13z201ty3jM49xjUqL0vpvy1K
+PonXYlBmxSmw4QpDg5TGqokEMlizIZbsCi3bB/yWLkHq1XFxqec5FQfKvjqcBNG6
+PDHnyrD/dxzMg8Z/6kujz15l1dGp6qWEBsZmnzcCssY=
+-----END SIGNATURE-----
+.
+650 OK
+2019-01-31 11:30:14 1548934214.71 650 CIRC 29 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:14 1548934214.71 650 ORCONN $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1 LAUNCHED ID=76
+2019-01-31 11:30:14 1548934214.71 650 CIRC 30 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:14 1548934214.71 650 ORCONN $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1 LAUNCHED ID=77
+2019-01-31 11:30:14 1548934214.79 650 ORCONN $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1 CONNECTED ID=77
+2019-01-31 11:30:14 1548934214.80 650 BW 9422 3678
+2019-01-31 11:30:14 1548934214.80 650 CIRC_BW ID=28 READ=6108 WRITTEN=2036 TIME=2019-01-31T11:30:14.801024 DELIVERED_READ=3640 OVERHEAD_READ=2336 DELIVERED_WRITTEN=329 OVERHEAD_WRITTEN=1663
+2019-01-31 11:30:14 1548934214.83 650 CIRC 30 EXTENDED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:14 1548934214.88 650 CIRC 30 EXTENDED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:14 1548934214.94 650 ORCONN $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1 CONNECTED ID=76
+2019-01-31 11:30:14 1548934214.99 650 CIRC 29 EXTENDED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:15 1548934215.04 650 CIRC 30 EXTENDED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:15 1548934215.12 650 CIRC 29 EXTENDED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:15 1548934215.21 650 CIRC 30 EXTENDED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:15 1548934215.21 650 CIRC 30 BUILT $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:15 1548934215.27 650 CIRC 29 EXTENDED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:15 1548934215.27 650 CIRC 29 BUILT $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:15 1548934215.47 650 CIRC_MINOR 29 PURPOSE_CHANGED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_IDLE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_CONNECTING
+2019-01-31 11:30:15 1548934215.47 650 CIRC_MINOR 30 PURPOSE_CHANGED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_INTRO_SENT REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_CONNECTING
+2019-01-31 11:30:15 1548934215.61 650 CIRC_MINOR 29 PURPOSE_CHANGED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_WAITING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_IDLE
+2019-01-31 11:30:15 1548934215.61 650 CIRC_MINOR 30 PURPOSE_CHANGED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_INTRO_SENT
+2019-01-31 11:30:15 1548934215.61 650 CIRC 30 CLOSED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671 REASON=FINISHED
+2019-01-31 11:30:15 1548934215.80 650 BW 8008 5879
+2019-01-31 11:30:15 1548934215.81 650 CIRC_BW ID=29 READ=1527 WRITTEN=1527 TIME=2019-01-31T11:30:15.803619 DELIVERED_READ=132 OVERHEAD_READ=1362 DELIVERED_WRITTEN=258 OVERHEAD_WRITTEN=1236
+2019-01-31 11:30:16 1548934216.47 650 CIRC_MINOR 29 PURPOSE_CHANGED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_WAITING
+2019-01-31 11:30:16 1548934216.47 650 STREAM 72 SENTCONNECT 29 4ja3p2v3lh5mvmcy.onion:8080
+2019-01-31 11:30:16 1548934216.80 650 BW 543 1086
+2019-01-31 11:30:16 1548934216.80 650 CIRC_BW ID=29 READ=509 WRITTEN=509 TIME=2019-01-31T11:30:16.801039 DELIVERED_READ=148 OVERHEAD_READ=350 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=492
+2019-01-31 11:30:16 1548934216.86 650 STREAM 72 SUCCEEDED 29 4ja3p2v3lh5mvmcy.onion:8080
+2019-01-31 11:30:17 1548934217.80 650 BW 259950 8543
+2019-01-31 11:30:17 1548934217.80 650 STREAM_BW 72 52 247791 2019-01-31T11:30:17.801402
+2019-01-31 11:30:17 1548934217.80 650 CIRC_BW ID=29 READ=255009 WRITTEN=8144 TIME=2019-01-31T11:30:17.801412 DELIVERED_READ=247781 OVERHEAD_READ=1717 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=7916
+2019-01-31 11:30:18 1548934218.80 650 BW 360681 10143
+2019-01-31 11:30:18 1548934218.80 650 STREAM_BW 72 0 344064 2019-01-31T11:30:18.803032
+2019-01-31 11:30:18 1548934218.80 650 CIRC_BW ID=29 READ=352737 WRITTEN=9671 TIME=2019-01-31T11:30:18.803042 DELIVERED_READ=344064 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:19 1548934219.80 650 BW 346173 12286
+2019-01-31 11:30:19 1548934219.80 650 STREAM_BW 72 0 330668 2019-01-31T11:30:19.803189
+2019-01-31 11:30:19 1548934219.80 650 CIRC_BW ID=29 READ=338994 WRITTEN=10689 TIME=2019-01-31T11:30:19.803197 DELIVERED_READ=330668 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:20 1548934220.81 650 BW 151082 4800
+2019-01-31 11:30:20 1548934220.81 650 STREAM_BW 72 0 143970 2019-01-31T11:30:20.807059
+2019-01-31 11:30:20 1548934220.81 650 CIRC_BW ID=29 READ=147610 WRITTEN=4072 TIME=2019-01-31T11:30:20.807068 DELIVERED_READ=143970 OVERHEAD_READ=450 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=3984
+2019-01-31 11:30:21 1548934221.81 650 BW 295137 10143
+2019-01-31 11:30:21 1548934221.81 650 STREAM_BW 72 0 279026 2019-01-31T11:30:21.806326
+2019-01-31 11:30:21 1548934221.81 650 CIRC_BW ID=29 READ=286058 WRITTEN=9162 TIME=2019-01-31T11:30:21.806335 DELIVERED_READ=279026 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:22 1548934222.81 650 BW 372500 11200
+2019-01-31 11:30:22 1548934222.81 650 STREAM_BW 72 0 358954 2019-01-31T11:30:22.807501
+2019-01-31 11:30:22 1548934222.81 650 CIRC_BW ID=29 READ=368007 WRITTEN=10689 TIME=2019-01-31T11:30:22.807510 DELIVERED_READ=358954 OVERHEAD_READ=1100 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:23 1548934223.81 650 BW 357966 12286
+2019-01-31 11:30:23 1548934223.81 650 STREAM_BW 72 0 342122 2019-01-31T11:30:23.805934
+2019-01-31 11:30:23 1548934223.81 650 CIRC_BW ID=29 READ=350701 WRITTEN=10689 TIME=2019-01-31T11:30:23.805943 DELIVERED_READ=342122 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:24 1548934224.81 650 BW 299876 9600
+2019-01-31 11:30:24 1548934224.81 650 STREAM_BW 72 0 286446 2019-01-31T11:30:24.804395
+2019-01-31 11:30:24 1548934224.81 650 CIRC_BW ID=29 READ=293693 WRITTEN=9162 TIME=2019-01-31T11:30:24.804403 DELIVERED_READ=286446 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:25 1548934225.82 650 BW 283559 8543
+2019-01-31 11:30:25 1548934225.82 650 STREAM_BW 72 0 271108 2019-01-31T11:30:25.806627
+2019-01-31 11:30:25 1548934225.82 650 CIRC_BW ID=29 READ=277914 WRITTEN=7635 TIME=2019-01-31T11:30:25.806636 DELIVERED_READ=271108 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:30:25 1548934225.82 650 CIRC 31 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:25 1548934225.82 650 ORCONN $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01 LAUNCHED ID=78
+2019-01-31 11:30:25 1548934225.93 650 ORCONN $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01 CONNECTED ID=78
+2019-01-31 11:30:25 1548934225.97 650 CIRC 31 EXTENDED $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:26 1548934226.15 650 CIRC 31 EXTENDED $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01,$B149064611DC466405E1825956F36B202DCE6E4A~t0pch33s3 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:26 1548934226.36 650 CIRC 31 EXTENDED $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01,$B149064611DC466405E1825956F36B202DCE6E4A~t0pch33s3,$FDD700C791CC6BB0AC1C2099A82CBC367AD4B764~QuintexAirVPN24 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:26 1548934226.36 650 CIRC 31 BUILT $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01,$B149064611DC466405E1825956F36B202DCE6E4A~t0pch33s3,$FDD700C791CC6BB0AC1C2099A82CBC367AD4B764~QuintexAirVPN24 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:26 1548934226.81 650 BW 353877 14886
+2019-01-31 11:30:26 1548934226.81 650 STREAM_BW 72 0 334104 2019-01-31T11:30:26.804756
+2019-01-31 11:30:26 1548934226.81 650 CIRC_BW ID=29 READ=343066 WRITTEN=10689 TIME=2019-01-31T11:30:26.804765 DELIVERED_READ=334602 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:26 1548934226.81 650 CIRC_BW ID=31 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:26.804768 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:30:27 1548934227.81 650 BW 404641 12286
+2019-01-31 11:30:27 1548934227.81 650 STREAM_BW 72 0 386294 2019-01-31T11:30:27.805938
+2019-01-31 11:30:27 1548934227.81 650 CIRC_BW ID=29 READ=395493 WRITTEN=11198 TIME=2019-01-31T11:30:27.805947 DELIVERED_READ=385796 OVERHEAD_READ=1150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10956
+2019-01-31 11:30:28 1548934228.81 650 BW 274536 9600
+2019-01-31 11:30:28 1548934228.81 650 STREAM_BW 72 0 263588 2019-01-31T11:30:28.806353
+2019-01-31 11:30:28 1548934228.81 650 CIRC_BW ID=29 READ=270279 WRITTEN=8653 TIME=2019-01-31T11:30:28.806364 DELIVERED_READ=263588 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:29 1548934229.81 650 BW 208223 7486
+2019-01-31 11:30:29 1548934229.81 650 STREAM_BW 72 0 195662 2019-01-31T11:30:29.805080
+2019-01-31 11:30:29 1548934229.81 650 CIRC_BW ID=29 READ=200546 WRITTEN=6108 TIME=2019-01-31T11:30:29.805089 DELIVERED_READ=195662 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:30:30 1548934230.81 650 BW 259095 8543
+2019-01-31 11:30:30 1548934230.81 650 STREAM_BW 72 0 249694 2019-01-31T11:30:30.805168
+2019-01-31 11:30:30 1548934230.81 650 CIRC_BW ID=29 READ=256027 WRITTEN=7635 TIME=2019-01-31T11:30:30.805178 DELIVERED_READ=249694 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:30:31 1548934231.81 650 BW 276336 8543
+2019-01-31 11:30:31 1548934231.81 650 STREAM_BW 72 0 262642 2019-01-31T11:30:31.805083
+2019-01-31 11:30:31 1548934231.81 650 CIRC_BW ID=29 READ=269261 WRITTEN=8144 TIME=2019-01-31T11:30:31.805092 DELIVERED_READ=262642 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:30:32 1548934232.81 650 BW 279615 8000
+2019-01-31 11:30:32 1548934232.81 650 STREAM_BW 72 0 267622 2019-01-31T11:30:32.806222
+2019-01-31 11:30:32 1548934232.81 650 CIRC_BW ID=29 READ=274351 WRITTEN=7635 TIME=2019-01-31T11:30:32.806232 DELIVERED_READ=267622 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:30:33 1548934233.81 650 BW 357535 11743
+2019-01-31 11:30:33 1548934233.81 650 STREAM_BW 72 0 341076 2019-01-31T11:30:33.804424
+2019-01-31 11:30:33 1548934233.81 650 CIRC_BW ID=29 READ=352228 WRITTEN=10689 TIME=2019-01-31T11:30:33.804434 DELIVERED_READ=343566 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:34 1548934234.81 650 BW 339224 11200
+2019-01-31 11:30:34 1548934234.81 650 STREAM_BW 72 0 326186 2019-01-31T11:30:34.805499
+2019-01-31 11:30:34 1548934234.81 650 CIRC_BW ID=29 READ=331868 WRITTEN=10180 TIME=2019-01-31T11:30:34.805508 DELIVERED_READ=323696 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:35 1548934235.39 650 STREAM_BW 72 0 9960 2019-01-31T11:30:35.393974
+2019-01-31 11:30:35 1548934235.40 650 STREAM 72 CLOSED 29 4ja3p2v3lh5mvmcy.onion:8080 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:30:35 1548934235.40 650 STREAM 79 NEW 0 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 SOURCE_ADDR=127.0.0.1:36418 PURPOSE=USER
+2019-01-31 11:30:35 1548934235.40 650 STREAM 79 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:30:35 1548934235.81 650 BW 13602 1629
+2019-01-31 11:30:35 1548934235.81 650 STREAM_BW 79 72 2 2019-01-31T11:30:35.804285
+2019-01-31 11:30:35 1548934235.81 650 CIRC_BW ID=25 READ=0 WRITTEN=509 TIME=2019-01-31T11:30:35.804295 DELIVERED_READ=0 OVERHEAD_READ=0 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=492
+2019-01-31 11:30:35 1548934235.81 650 CIRC_BW ID=29 READ=13234 WRITTEN=509 TIME=2019-01-31T11:30:35.804299 DELIVERED_READ=11940 OVERHEAD_READ=1008 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=498
+2019-01-31 11:30:35 1548934235.97 650 STREAM 79 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:30:36 1548934236.81 650 BW 27558 1629
+2019-01-31 11:30:36 1548934236.81 650 STREAM_BW 79 52 22399 2019-01-31T11:30:36.805386
+2019-01-31 11:30:36 1548934236.82 650 CIRC_BW ID=25 READ=23923 WRITTEN=1018 TIME=2019-01-31T11:30:36.805395 DELIVERED_READ=22389 OVERHEAD_READ=1017 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=944
+2019-01-31 11:30:36 1548934236.82 650 CIRC 32 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:36 1548934236.82 650 ORCONN $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay LAUNCHED ID=80
+2019-01-31 11:30:37 1548934237.00 650 ORCONN $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay CONNECTED ID=80
+2019-01-31 11:30:37 1548934237.05 650 CIRC 32 EXTENDED $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:37 1548934237.17 650 CIRC 32 EXTENDED $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay,$88C3708A9D71ECEC1910B63C3FAA5BF60CD7E199~Freya BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:37 1548934237.30 650 CIRC 32 EXTENDED $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay,$88C3708A9D71ECEC1910B63C3FAA5BF60CD7E199~Freya,$5CECC5C30ACC4B3DE462792323967087CC53D947~PrivacyRepublic0001 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:37 1548934237.31 650 CIRC 32 BUILT $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay,$88C3708A9D71ECEC1910B63C3FAA5BF60CD7E199~Freya,$5CECC5C30ACC4B3DE462792323967087CC53D947~PrivacyRepublic0001 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:37 1548934237.81 650 BW 237155 10721
+2019-01-31 11:30:37 1548934237.81 650 STREAM_BW 79 0 225392 2019-01-31T11:30:37.807485
+2019-01-31 11:30:37 1548934237.81 650 CIRC_BW ID=25 READ=231086 WRITTEN=7126 TIME=2019-01-31T11:30:37.807495 DELIVERED_READ=225392 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:30:37 1548934237.81 650 CIRC_BW ID=32 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:37.807499 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:30:38 1548934238.81 650 BW 306471 9658
+2019-01-31 11:30:38 1548934238.81 650 STREAM_BW 79 0 293418 2019-01-31T11:30:38.805912
+2019-01-31 11:30:38 1548934238.81 650 CIRC_BW ID=25 READ=300819 WRITTEN=8653 TIME=2019-01-31T11:30:38.805921 DELIVERED_READ=293418 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:39 1548934239.81 650 BW 420856 14089
+2019-01-31 11:30:39 1548934239.81 650 STREAM_BW 79 0 401682 2019-01-31T11:30:39.807281
+2019-01-31 11:30:39 1548934239.81 650 CIRC_BW ID=25 READ=411781 WRITTEN=12725 TIME=2019-01-31T11:30:39.807291 DELIVERED_READ=401682 OVERHEAD_READ=1200 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=12450
+2019-01-31 11:30:39 1548934239.81 650 CIRC 1 CLOSED $ADB2C26629643DBB9F8FE0096E7D16F9414B4F8D~Digitalcourage3ip2 BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:37.960246 REASON=FINISHED
+2019-01-31 11:30:40 1548934240.81 650 BW 288417 10288
+2019-01-31 11:30:40 1548934240.81 650 STREAM_BW 79 0 275042 2019-01-31T11:30:40.805256
+2019-01-31 11:30:40 1548934240.81 650 CIRC_BW ID=25 READ=281986 WRITTEN=8653 TIME=2019-01-31T11:30:40.805266 DELIVERED_READ=275042 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:41 1548934241.81 650 BW 371989 11374
+2019-01-31 11:30:41 1548934241.81 650 STREAM_BW 79 0 355966 2019-01-31T11:30:41.806136
+2019-01-31 11:30:41 1548934241.81 650 CIRC_BW ID=25 READ=364953 WRITTEN=10689 TIME=2019-01-31T11:30:41.806145 DELIVERED_READ=355966 OVERHEAD_READ=1100 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:42 1548934242.81 650 BW 289689 10831
+2019-01-31 11:30:42 1548934242.81 650 STREAM_BW 79 0 277532 2019-01-31T11:30:42.806493
+2019-01-31 11:30:42 1548934242.81 650 CIRC_BW ID=25 READ=284531 WRITTEN=8144 TIME=2019-01-31T11:30:42.806504 DELIVERED_READ=277532 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:30:43 1548934243.81 650 BW 309987 9745
+2019-01-31 11:30:43 1548934243.81 650 STREAM_BW 79 0 296406 2019-01-31T11:30:43.806444
+2019-01-31 11:30:43 1548934243.81 650 CIRC_BW ID=25 READ=303873 WRITTEN=9162 TIME=2019-01-31T11:30:43.806453 DELIVERED_READ=296406 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:44 1548934244.81 650 BW 371083 13575
+2019-01-31 11:30:44 1548934244.81 650 STREAM_BW 79 0 354522 2019-01-31T11:30:44.804736
+2019-01-31 11:30:44 1548934244.81 650 CIRC_BW ID=25 READ=363426 WRITTEN=11198 TIME=2019-01-31T11:30:44.804746 DELIVERED_READ=354522 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10956
+2019-01-31 11:30:45 1548934245.07 650 CIRC 8 CLOSED $13B2354C74CCE29815B4E1F692F2F0E86C7F13DD~TORtitan BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517131 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:45 1548934245.70 650 CIRC 12 CLOSED $489D94333DF66D57FFE34D9D59CC2D97E2CB0053~txtfileTorNode65536 BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517371 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:45 1548934245.81 650 BW 296002 9774
+2019-01-31 11:30:45 1548934245.81 650 STREAM_BW 79 0 280520 2019-01-31T11:30:45.806530
+2019-01-31 11:30:45 1548934245.81 650 CIRC_BW ID=25 READ=287585 WRITTEN=8653 TIME=2019-01-31T11:30:45.806539 DELIVERED_READ=280520 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:45 1548934245.97 650 CIRC 16 CLOSED $58F3E2956EABB81F673E2FB90E16E001DB4AC3AE~torrelaymirror BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:44.031825 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:46 1548934246.77 650 CIRC 2 CLOSED $4EB55679FA91363B97372554F8DC7C63F4E5B101~torpidsDEisppro BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.012177 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:46 1548934246.81 650 BW 330222 11374
+2019-01-31 11:30:46 1548934246.81 650 STREAM_BW 79 0 315230 2019-01-31T11:30:46.807125
+2019-01-31 11:30:46 1548934246.81 650 CIRC_BW ID=25 READ=323215 WRITTEN=9671 TIME=2019-01-31T11:30:46.807134 DELIVERED_READ=315230 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:47 1548934247.81 650 BW 223317 7030
+2019-01-31 11:30:47 1548934247.81 650 STREAM_BW 79 0 211996 2019-01-31T11:30:47.806631
+2019-01-31 11:30:47 1548934247.82 650 CIRC_BW ID=25 READ=217343 WRITTEN=6617 TIME=2019-01-31T11:30:47.806641 DELIVERED_READ=211996 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:30:47 1548934247.82 650 CIRC 33 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:47 1548934247.82 650 ORCONN $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01 LAUNCHED ID=81
+2019-01-31 11:30:47 1548934247.94 650 ORCONN $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01 CONNECTED ID=81
+2019-01-31 11:30:47 1548934247.97 650 CIRC 33 EXTENDED $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:48 1548934248.12 650 CIRC 13 CLOSED $77A56CB237740E24AEA2D61C8C8936232AFC1BD8~TheEpTicZeus BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517431 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:48 1548934248.14 650 CIRC 33 EXTENDED $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01,$D9DE3C9ED311A5FE050076060E3EA1F7F17FDCE1~FastR42 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:48 1548934248.31 650 CIRC 33 EXTENDED $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01,$D9DE3C9ED311A5FE050076060E3EA1F7F17FDCE1~FastR42,$952AA35B675392156D71868D17E0CC288E0E0562~pingi BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:48 1548934248.31 650 CIRC 33 BUILT $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01,$D9DE3C9ED311A5FE050076060E3EA1F7F17FDCE1~FastR42,$952AA35B675392156D71868D17E0CC288E0E0562~pingi BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:48 1548934248.81 650 BW 339862 12897
+2019-01-31 11:30:48 1548934248.81 650 STREAM_BW 79 0 321256 2019-01-31T11:30:48.807189
+2019-01-31 11:30:48 1548934248.81 650 CIRC_BW ID=33 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:48.807199 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:30:48 1548934248.81 650 CIRC_BW ID=25 READ=329323 WRITTEN=9671 TIME=2019-01-31T11:30:48.807204 DELIVERED_READ=321256 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:48 1548934248.93 650 CIRC 3 CLOSED $51826F7C88BD7BFF3B31E0C01C44F7821DF673D3~ArguteTor BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.516773 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:49 1548934249.63 650 CIRC 17 CLOSED $3BEE3F1C81191F82BED91480FFD6261CF7FC366D~Arrakis BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:45.169742 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:49 1548934249.78 650 CIRC 6 CLOSED $C49A177510CAA653DA6727BF0E07FB7F56A0F09D~Unnamed BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517009 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:49 1548934249.81 650 BW 244174 7573
+2019-01-31 11:30:49 1548934249.81 650 STREAM_BW 79 0 231866 2019-01-31T11:30:49.805807
+2019-01-31 11:30:49 1548934249.81 650 CIRC_BW ID=25 READ=237703 WRITTEN=7126 TIME=2019-01-31T11:30:49.805816 DELIVERED_READ=231866 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:30:49 1548934249.97 650 CIRC 15 CLOSED $5247C1EE183E5E68560D7377B36245E0FB3BB215~LouYesDoll BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517548 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:50 1548934250.81 650 BW 318810 10860
+2019-01-31 11:30:50 1548934250.81 650 STREAM_BW 79 0 304324 2019-01-31T11:30:50.806644
+2019-01-31 11:30:50 1548934250.81 650 CIRC_BW ID=25 READ=312017 WRITTEN=9162 TIME=2019-01-31T11:30:50.806654 DELIVERED_READ=304324 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:51 1548934251.15 650 STREAM_BW 79 0 62548 2019-01-31T11:30:51.145363
+2019-01-31 11:30:51 1548934251.15 650 STREAM 79 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=DONE
+2019-01-31 11:30:51 1548934251.15 650 STREAM 82 NEW 0 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 SOURCE_ADDR=127.0.0.1:36428 PURPOSE=USER
+2019-01-31 11:30:51 1548934251.15 650 STREAM 82 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:30:51 1548934251.38 650 CIRC 18 CLOSED $A98ADD972045D3CCAEE65C788C3F175BAEA3E324~2Contribute BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:46.665374 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:51 1548934251.43 650 CIRC 14 CLOSED $5B1F0DAF378A1FAFCFD5FA9CDC66D1023DC0276E~fastlane BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517490 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:51 1548934251.81 650 BW 310937 6516
+2019-01-31 11:30:51 1548934251.81 650 STREAM_BW 82 72 2 2019-01-31T11:30:51.805008
+2019-01-31 11:30:51 1548934251.81 650 CIRC_BW ID=25 READ=303873 WRITTEN=5599 TIME=2019-01-31T11:30:51.805016 DELIVERED_READ=296406 OVERHEAD_READ=900 DELIVERED_WRITTEN=7 OVERHEAD_WRITTEN=5471
+2019-01-31 11:30:51 1548934251.83 650 CIRC 11 CLOSED $5AD4E3F36B803500AE5A724ACD4A3BCCE3BEFA14~EvilMoe BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517312 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:51 1548934251.92 650 STREAM 82 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:30:52 1548934252.81 650 BW 24097 1629
+2019-01-31 11:30:52 1548934252.81 650 STREAM_BW 82 52 15975 2019-01-31T11:30:52.807209
+2019-01-31 11:30:52 1548934252.81 650 CIRC_BW ID=25 READ=21378 WRITTEN=509 TIME=2019-01-31T11:30:52.807219 DELIVERED_READ=19949 OVERHEAD_READ=967 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=446
+2019-01-31 11:30:53 1548934253.49 650 CIRC 4 CLOSED $D1E706B9021A0BF8E9663DB207D9D9EC03A70DAC~bradpit BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.516891 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:53 1548934253.59 650 CIRC 7 CLOSED $12CF6DB4DAE106206D6C6B09988E865C0509843B~ATZv5 BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517065 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:53 1548934253.81 650 BW 279856 9716
+2019-01-31 11:30:53 1548934253.81 650 STREAM_BW 82 0 263588 2019-01-31T11:30:53.805682
+2019-01-31 11:30:53 1548934253.81 650 CIRC_BW ID=25 READ=273842 WRITTEN=8653 TIME=2019-01-31T11:30:53.805689 DELIVERED_READ=267074 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:54 1548934254.81 650 BW 470380 15059
+2019-01-31 11:30:54 1548934254.81 650 STREAM_BW 82 0 453822 2019-01-31T11:30:54.807166
+2019-01-31 11:30:54 1548934254.81 650 CIRC_BW ID=25 READ=461663 WRITTEN=13743 TIME=2019-01-31T11:30:54.807175 DELIVERED_READ=450336 OVERHEAD_READ=1350 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=13446
+2019-01-31 11:30:55 1548934255.81 650 BW 147789 5973
+2019-01-31 11:30:55 1548934255.81 650 STREAM_BW 82 0 136998 2019-01-31T11:30:55.806056
+2019-01-31 11:30:55 1548934255.81 650 CIRC_BW ID=25 READ=144047 WRITTEN=4581 TIME=2019-01-31T11:30:55.806064 DELIVERED_READ=140484 OVERHEAD_READ=450 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4482
+2019-01-31 11:30:56 1548934256.55 650 CIRC 10 CLOSED $B4B900AD50134E9528D7CDF665ABDADABF53A9B7~RenderLab BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517252 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:56 1548934256.69 650 CIRC 9 CLOSED $4B68D0E5392ED6F3469A37880631353A96558631~TORion BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517194 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:56 1548934256.81 650 BW 147848 4887
+2019-01-31 11:30:56 1548934256.81 650 STREAM_BW 82 0 140534 2019-01-31T11:30:56.806869
+2019-01-31 11:30:56 1548934256.81 650 CIRC_BW ID=25 READ=140484 WRITTEN=3563 TIME=2019-01-31T11:30:56.806878 DELIVERED_READ=137048 OVERHEAD_READ=400 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=3486
+2019-01-31 11:30:57 1548934257.30 650 CIRC 5 CLOSED $BBD8F4DF8FF5C69A6A989DB8C1EE2CA7ADFE0755~sprucegoose BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.516951 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:57 1548934257.81 650 BW 330224 10744
+2019-01-31 11:30:57 1548934257.81 650 STREAM_BW 82 0 318218 2019-01-31T11:30:57.804332
+2019-01-31 11:30:57 1548934257.81 650 CIRC_BW ID=25 READ=326269 WRITTEN=10180 TIME=2019-01-31T11:30:57.804342 DELIVERED_READ=318218 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:58 1548934258.82 650 BW 186281 5944
+2019-01-31 11:30:58 1548934258.82 650 STREAM_BW 82 0 175792 2019-01-31T11:30:58.805173
+2019-01-31 11:30:58 1548934258.82 650 CIRC_BW ID=25 READ=180186 WRITTEN=5090 TIME=2019-01-31T11:30:58.805181 DELIVERED_READ=175792 OVERHEAD_READ=500 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:30:58 1548934258.82 650 CIRC 34 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:58 1548934258.82 650 ORCONN $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust LAUNCHED ID=83
+2019-01-31 11:30:58 1548934258.88 650 ORCONN $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust CONNECTED ID=83
+2019-01-31 11:30:58 1548934258.90 650 CIRC 34 EXTENDED $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:58 1548934258.96 650 CIRC 34 EXTENDED $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust,$169535CC4C75FF79C6D548D41720064EE4FE61D2~bradburn BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:59 1548934259.32 650 CIRC 34 EXTENDED $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust,$169535CC4C75FF79C6D548D41720064EE4FE61D2~bradburn,$5974B3F4C66D83BBC9622E0F0F023FE48428DB9B~amazonas BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:59 1548934259.33 650 CIRC 34 BUILT $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust,$169535CC4C75FF79C6D548D41720064EE4FE61D2~bradburn,$5974B3F4C66D83BBC9622E0F0F023FE48428DB9B~amazonas BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:59 1548934259.81 650 BW 250227 11163
+2019-01-31 11:30:59 1548934259.81 650 STREAM_BW 82 0 235800 2019-01-31T11:30:59.804635
+2019-01-31 11:30:59 1548934259.81 650 CIRC_BW ID=25 READ=241775 WRITTEN=7635 TIME=2019-01-31T11:30:59.804644 DELIVERED_READ=235800 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:30:59 1548934259.81 650 CIRC_BW ID=34 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:59.804649 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:31:00 1548934260.81 650 BW 298342 9144
+2019-01-31 11:31:00 1548934260.81 650 STREAM_BW 82 0 284504 2019-01-31T11:31:00.804583
+2019-01-31 11:31:00 1548934260.81 650 CIRC_BW ID=25 READ=291657 WRITTEN=8653 TIME=2019-01-31T11:31:00.804592 DELIVERED_READ=284504 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:01 1548934261.81 650 BW 357354 11374
+2019-01-31 11:31:01 1548934261.81 650 STREAM_BW 82 0 338088 2019-01-31T11:31:01.806199
+2019-01-31 11:31:01 1548934261.81 650 CIRC_BW ID=25 READ=346629 WRITTEN=10689 TIME=2019-01-31T11:31:01.806208 DELIVERED_READ=338088 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:31:02 1548934262.81 650 BW 324277 10317
+2019-01-31 11:31:02 1548934262.81 650 STREAM_BW 82 0 312790 2019-01-31T11:31:02.805801
+2019-01-31 11:31:02 1548934262.81 650 CIRC_BW ID=25 READ=320670 WRITTEN=9162 TIME=2019-01-31T11:31:02.805810 DELIVERED_READ=312790 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:03 1548934263.81 650 BW 288365 10317
+2019-01-31 11:31:03 1548934263.81 650 STREAM_BW 82 0 276038 2019-01-31T11:31:03.804414
+2019-01-31 11:31:03 1548934263.81 650 CIRC_BW ID=25 READ=283004 WRITTEN=8653 TIME=2019-01-31T11:31:03.804423 DELIVERED_READ=276038 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:04 1548934264.81 650 BW 110012 4315
+2019-01-31 11:31:04 1548934264.81 650 STREAM_BW 82 0 104280 2019-01-31T11:31:04.804494
+2019-01-31 11:31:04 1548934264.81 650 CIRC_BW ID=25 READ=106890 WRITTEN=3563 TIME=2019-01-31T11:31:04.804503 DELIVERED_READ=104280 OVERHEAD_READ=300 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=3486
+2019-01-31 11:31:05 1548934265.81 650 BW 402091 11888
+2019-01-31 11:31:05 1548934265.81 650 STREAM_BW 82 0 383804 2019-01-31T11:31:05.805826
+2019-01-31 11:31:05 1548934265.81 650 CIRC_BW ID=25 READ=393457 WRITTEN=11198 TIME=2019-01-31T11:31:05.805835 DELIVERED_READ=383804 OVERHEAD_READ=1150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10956
+2019-01-31 11:31:06 1548934266.81 650 BW 307159 10860
+2019-01-31 11:31:06 1548934266.81 650 STREAM_BW 82 0 293916 2019-01-31T11:31:06.804631
+2019-01-31 11:31:06 1548934266.81 650 CIRC_BW ID=25 READ=301328 WRITTEN=9162 TIME=2019-01-31T11:31:06.804640 DELIVERED_READ=293916 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:07 1548934267.81 650 BW 397401 13003
+2019-01-31 11:31:07 1548934267.81 650 STREAM_BW 82 0 379272 2019-01-31T11:31:07.804803
+2019-01-31 11:31:07 1548934267.81 650 CIRC_BW ID=25 READ=388876 WRITTEN=11707 TIME=2019-01-31T11:31:07.804813 DELIVERED_READ=379272 OVERHEAD_READ=1200 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=11454
+2019-01-31 11:31:08 1548934268.81 650 BW 264329 8688
+2019-01-31 11:31:08 1548934268.81 650 STREAM_BW 82 0 252234 2019-01-31T11:31:08.804521
+2019-01-31 11:31:08 1548934268.81 650 CIRC_BW ID=25 READ=258572 WRITTEN=7635 TIME=2019-01-31T11:31:08.804532 DELIVERED_READ=252234 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:09 1548934269.81 650 BW 310266 9716
+2019-01-31 11:31:09 1548934269.81 650 STREAM_BW 82 0 294912 2019-01-31T11:31:09.806098
+2019-01-31 11:31:09 1548934269.81 650 CIRC_BW ID=25 READ=302346 WRITTEN=9162 TIME=2019-01-31T11:31:09.806109 DELIVERED_READ=294912 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:10 1548934270.81 650 BW 203952 7573
+2019-01-31 11:31:10 1548934270.81 650 STREAM_BW 82 0 191628 2019-01-31T11:31:10.805870
+2019-01-31 11:31:10 1548934270.81 650 CIRC_BW ID=25 READ=196474 WRITTEN=6108 TIME=2019-01-31T11:31:10.805879 DELIVERED_READ=191628 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:31:10 1548934270.81 650 CIRC 23 CLOSED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed,$157106182B9F33663CAEDCD883D302316331DE5E~Vor BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893 REASON=FINISHED
+2019-01-31 11:31:11 1548934271.81 650 BW 313992 10860
+2019-01-31 11:31:11 1548934271.81 650 STREAM_BW 82 0 300390 2019-01-31T11:31:11.804286
+2019-01-31 11:31:11 1548934271.81 650 CIRC_BW ID=25 READ=307945 WRITTEN=9162 TIME=2019-01-31T11:31:11.804295 DELIVERED_READ=300390 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:12 1548934272.19 650 STREAM_BW 82 0 88892 2019-01-31T11:31:12.192706
+2019-01-31 11:31:12 1548934272.19 650 STREAM 82 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:31:12 1548934272.19 650 STREAM 84 NEW 0 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 SOURCE_ADDR=127.0.0.1:36436 PURPOSE=USER
+2019-01-31 11:31:12 1548934272.20 650 STREAM 84 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:31:12 1548934272.81 650 BW 91530 4344
+2019-01-31 11:31:12 1548934272.81 650 STREAM_BW 84 72 2 2019-01-31T11:31:12.804721
+2019-01-31 11:31:12 1548934272.81 650 CIRC_BW ID=25 READ=93656 WRITTEN=3563 TIME=2019-01-31T11:31:12.804731 DELIVERED_READ=90374 OVERHEAD_READ=1258 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=3480
+2019-01-31 11:31:12 1548934272.94 650 STREAM 84 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:31:13 1548934273.81 650 BW 24805 1086
+2019-01-31 11:31:13 1548934273.81 650 STREAM_BW 84 52 18415 2019-01-31T11:31:13.804663
+2019-01-31 11:31:13 1548934273.81 650 CIRC_BW ID=25 READ=23923 WRITTEN=509 TIME=2019-01-31T11:31:13.804670 DELIVERED_READ=22389 OVERHEAD_READ=1017 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=446
+2019-01-31 11:31:14 1548934274.81 650 BW 306963 12489
+2019-01-31 11:31:14 1548934274.81 650 STREAM_BW 84 0 296406 2019-01-31T11:31:14.805530
+2019-01-31 11:31:14 1548934274.81 650 CIRC_BW ID=25 READ=299801 WRITTEN=9162 TIME=2019-01-31T11:31:14.805540 DELIVERED_READ=292422 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:15 1548934275.81 650 BW 327598 10317
+2019-01-31 11:31:15 1548934275.81 650 STREAM_BW 84 0 314284 2019-01-31T11:31:15.805519
+2019-01-31 11:31:15 1548934275.81 650 CIRC_BW ID=25 READ=322197 WRITTEN=9671 TIME=2019-01-31T11:31:15.805529 DELIVERED_READ=314284 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:31:16 1548934276.81 650 BW 348212 11946
+2019-01-31 11:31:16 1548934276.81 650 STREAM_BW 84 0 332660 2019-01-31T11:31:16.804613
+2019-01-31 11:31:16 1548934276.81 650 CIRC_BW ID=25 READ=341030 WRITTEN=10180 TIME=2019-01-31T11:31:16.804622 DELIVERED_READ=332660 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:17 1548934277.81 650 BW 319762 11403
+2019-01-31 11:31:17 1548934277.81 650 STREAM_BW 84 0 306316 2019-01-31T11:31:17.805072
+2019-01-31 11:31:17 1548934277.81 650 CIRC_BW ID=25 READ=314053 WRITTEN=9671 TIME=2019-01-31T11:31:17.805081 DELIVERED_READ=306316 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:31:18 1548934278.81 650 BW 348287 12489
+2019-01-31 11:31:18 1548934278.81 650 STREAM_BW 84 0 332660 2019-01-31T11:31:18.805374
+2019-01-31 11:31:18 1548934278.81 650 CIRC_BW ID=25 READ=341030 WRITTEN=10180 TIME=2019-01-31T11:31:18.805384 DELIVERED_READ=332660 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:19 1548934279.81 650 BW 315014 9774
+2019-01-31 11:31:19 1548934279.81 650 STREAM_BW 84 0 301336 2019-01-31T11:31:19.805787
+2019-01-31 11:31:19 1548934279.81 650 CIRC_BW ID=25 READ=308963 WRITTEN=9162 TIME=2019-01-31T11:31:19.805797 DELIVERED_READ=301336 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:20 1548934280.81 650 BW 292520 10288
+2019-01-31 11:31:20 1548934280.81 650 STREAM_BW 84 0 278528 2019-01-31T11:31:20.806243
+2019-01-31 11:31:20 1548934280.81 650 CIRC_BW ID=25 READ=285549 WRITTEN=8653 TIME=2019-01-31T11:31:20.806251 DELIVERED_READ=278528 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:21 1548934281.81 650 BW 349080 11946
+2019-01-31 11:31:21 1548934281.81 650 STREAM_BW 84 0 329672 2019-01-31T11:31:21.806059
+2019-01-31 11:31:21 1548934281.81 650 CIRC_BW ID=25 READ=337976 WRITTEN=10180 TIME=2019-01-31T11:31:21.806067 DELIVERED_READ=329672 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:22 1548934282.81 650 BW 324309 10860
+2019-01-31 11:31:22 1548934282.81 650 STREAM_BW 84 0 312790 2019-01-31T11:31:22.805224
+2019-01-31 11:31:22 1548934282.81 650 CIRC_BW ID=25 READ=320670 WRITTEN=9671 TIME=2019-01-31T11:31:22.805233 DELIVERED_READ=312790 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:31:23 1548934283.81 650 BW 301105 10317
+2019-01-31 11:31:23 1548934283.81 650 STREAM_BW 84 0 285500 2019-01-31T11:31:23.804343
+2019-01-31 11:31:23 1548934283.81 650 CIRC_BW ID=25 READ=292675 WRITTEN=8653 TIME=2019-01-31T11:31:23.804351 DELIVERED_READ=285500 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:24 1548934284.81 650 BW 308471 10860
+2019-01-31 11:31:24 1548934284.81 650 STREAM_BW 84 0 297900 2019-01-31T11:31:24.806065
+2019-01-31 11:31:24 1548934284.81 650 CIRC_BW ID=25 READ=305400 WRITTEN=9162 TIME=2019-01-31T11:31:24.806075 DELIVERED_READ=297900 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:25 1548934285.81 650 BW 301604 9202
+2019-01-31 11:31:25 1548934285.81 650 STREAM_BW 84 0 288936 2019-01-31T11:31:25.805254
+2019-01-31 11:31:25 1548934285.81 650 CIRC_BW ID=25 READ=296238 WRITTEN=8653 TIME=2019-01-31T11:31:25.805264 DELIVERED_READ=288936 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:26 1548934286.81 650 BW 219072 7059
+2019-01-31 11:31:26 1548934286.81 650 STREAM_BW 84 0 206020 2019-01-31T11:31:26.804554
+2019-01-31 11:31:26 1548934286.81 650 CIRC_BW ID=25 READ=211235 WRITTEN=6617 TIME=2019-01-31T11:31:26.804561 DELIVERED_READ=206020 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:31:27 1548934287.81 650 BW 333663 12460
+2019-01-31 11:31:27 1548934287.81 650 STREAM_BW 84 0 321754 2019-01-31T11:31:27.805105
+2019-01-31 11:31:27 1548934287.81 650 CIRC_BW ID=25 READ=329832 WRITTEN=10180 TIME=2019-01-31T11:31:27.805115 DELIVERED_READ=321754 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:28 1548934288.37 650 CIRC 29 CLOSED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178 REASON=DESTROYED REMOTE_REASON=NONE
+2019-01-31 11:31:28 1548934288.81 650 BW 170640 6487
+2019-01-31 11:31:28 1548934288.81 650 STREAM_BW 84 0 162346 2019-01-31T11:31:28.804486
+2019-01-31 11:31:28 1548934288.81 650 CIRC_BW ID=25 READ=166443 WRITTEN=4581 TIME=2019-01-31T11:31:28.804496 DELIVERED_READ=162346 OVERHEAD_READ=500 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4482
+2019-01-31 11:31:29 1548934289.81 650 BW 226583 8145
+2019-01-31 11:31:29 1548934289.81 650 STREAM_BW 84 0 212494 2019-01-31T11:31:29.804818
+2019-01-31 11:31:29 1548934289.81 650 CIRC_BW ID=25 READ=217852 WRITTEN=6617 TIME=2019-01-31T11:31:29.804827 DELIVERED_READ=212494 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:31:30 1548934290.81 650 BW 348055 11403
+2019-01-31 11:31:30 1548934290.81 650 STREAM_BW 84 0 335598 2019-01-31T11:31:30.804289
+2019-01-31 11:31:30 1548934290.81 650 CIRC_BW ID=25 READ=344084 WRITTEN=10180 TIME=2019-01-31T11:31:30.804299 DELIVERED_READ=335598 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:31 1548934291.81 650 BW 316036 9774
+2019-01-31 11:31:31 1548934291.81 650 STREAM_BW 84 0 301386 2019-01-31T11:31:31.804896
+2019-01-31 11:31:31 1548934291.81 650 CIRC_BW ID=25 READ=308963 WRITTEN=9162 TIME=2019-01-31T11:31:31.804905 DELIVERED_READ=301386 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:32 1548934292.15 650 STREAM_BW 84 0 5976 2019-01-31T11:31:32.144510
+2019-01-31 11:31:32 1548934292.15 650 STREAM 84 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:31:32 1548934292.15 650 STREAM 85 NEW 0 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 SOURCE_ADDR=127.0.0.1:36440 PURPOSE=USER
+2019-01-31 11:31:32 1548934292.15 650 STREAM 85 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:31:32 1548934292.81 650 BW 8918 1086
+2019-01-31 11:31:32 1548934292.81 650 STREAM_BW 85 72 2 2019-01-31T11:31:32.804754
+2019-01-31 11:31:32 1548934292.81 650 CIRC_BW ID=25 READ=9162 WRITTEN=1018 TIME=2019-01-31T11:31:32.804763 DELIVERED_READ=7956 OVERHEAD_READ=1008 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=990
+2019-01-31 11:31:32 1548934292.88 650 STREAM 85 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:31:33 1548934293.81 650 BW 65643 3801
+2019-01-31 11:31:33 1548934293.81 650 STREAM_BW 85 52 59649 2019-01-31T11:31:33.805075
+2019-01-31 11:31:33 1548934293.81 650 CIRC_BW ID=25 READ=62098 WRITTEN=2545 TIME=2019-01-31T11:31:33.805084 DELIVERED_READ=59639 OVERHEAD_READ=1117 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=2438
+2019-01-31 11:31:34 1548934294.81 650 BW 305707 9774
+2019-01-31 11:31:34 1548934294.81 650 STREAM_BW 85 0 292920 2019-01-31T11:31:34.805274
+2019-01-31 11:31:34 1548934294.81 650 CIRC_BW ID=25 READ=300310 WRITTEN=8653 TIME=2019-01-31T11:31:34.805283 DELIVERED_READ=292920 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:35 1548934295.81 650 BW 329923 11403
+2019-01-31 11:31:35 1548934295.81 650 STREAM_BW 85 0 314284 2019-01-31T11:31:35.804880
+2019-01-31 11:31:35 1548934295.81 650 CIRC_BW ID=25 READ=322197 WRITTEN=9671 TIME=2019-01-31T11:31:35.804889 DELIVERED_READ=314284 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:31:36 1548934296.81 650 BW 274545 10317
+2019-01-31 11:31:36 1548934296.81 650 STREAM_BW 85 0 262642 2019-01-31T11:31:36.804647
+2019-01-31 11:31:36 1548934296.81 650 CIRC_BW ID=25 READ=269261 WRITTEN=8144 TIME=2019-01-31T11:31:36.804658 DELIVERED_READ=262642 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:31:37 1548934297.81 650 BW 220742 6516
+2019-01-31 11:31:37 1548934297.81 650 STREAM_BW 85 0 210004 2019-01-31T11:31:37.804318
+2019-01-31 11:31:37 1548934297.81 650 CIRC_BW ID=25 READ=215307 WRITTEN=6108 TIME=2019-01-31T11:31:37.804327 DELIVERED_READ=210004 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:31:38 1548934298.81 650 BW 231192 7602
+2019-01-31 11:31:38 1548934298.81 650 STREAM_BW 85 0 222404 2019-01-31T11:31:38.804656
+2019-01-31 11:31:38 1548934298.81 650 CIRC_BW ID=25 READ=228032 WRITTEN=7126 TIME=2019-01-31T11:31:38.804666 DELIVERED_READ=222404 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:31:39 1548934299.81 650 BW 229542 7602
+2019-01-31 11:31:39 1548934299.81 650 STREAM_BW 85 0 216976 2019-01-31T11:31:39.804368
+2019-01-31 11:31:39 1548934299.81 650 CIRC_BW ID=25 READ=222433 WRITTEN=6617 TIME=2019-01-31T11:31:39.804377 DELIVERED_READ=216976 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:31:40 1548934300.81 650 BW 266948 9231
+2019-01-31 11:31:40 1548934300.81 650 STREAM_BW 85 0 254724 2019-01-31T11:31:40.804276
+2019-01-31 11:31:40 1548934300.81 650 CIRC_BW ID=25 READ=261117 WRITTEN=7635 TIME=2019-01-31T11:31:40.804284 DELIVERED_READ=254724 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:41 1548934301.81 650 BW 216575 9231
+2019-01-31 11:31:41 1548934301.81 650 STREAM_BW 85 0 208510 2019-01-31T11:31:41.804940
+2019-01-31 11:31:41 1548934301.81 650 CIRC_BW ID=25 READ=213780 WRITTEN=7126 TIME=2019-01-31T11:31:41.804949 DELIVERED_READ=208510 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:31:41 1548934301.81 650 CIRC 28 CLOSED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3,$C5924D853D180819F4A4D9F1CF9505F4D5083DCC~torniquet,$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317 REASON=FINISHED
+2019-01-31 11:31:42 1548934302.81 650 BW 287631 10317
+2019-01-31 11:31:42 1548934302.81 650 STREAM_BW 85 0 274544 2019-01-31T11:31:42.804949
+2019-01-31 11:31:42 1548934302.81 650 CIRC_BW ID=25 READ=281477 WRITTEN=8144 TIME=2019-01-31T11:31:42.804957 DELIVERED_READ=274544 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:31:43 1548934303.81 650 BW 254446 8145
+2019-01-31 11:31:43 1548934303.81 650 STREAM_BW 85 0 245262 2019-01-31T11:31:43.804612
+2019-01-31 11:31:43 1548934303.81 650 CIRC_BW ID=25 READ=251446 WRITTEN=7635 TIME=2019-01-31T11:31:43.804622 DELIVERED_READ=245262 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:44 1548934304.81 650 BW 258980 9774
+2019-01-31 11:31:44 1548934304.81 650 STREAM_BW 85 0 246756 2019-01-31T11:31:44.804752
+2019-01-31 11:31:44 1548934304.81 650 CIRC_BW ID=25 READ=252973 WRITTEN=7635 TIME=2019-01-31T11:31:44.804762 DELIVERED_READ=246756 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:45 1548934305.81 650 BW 225974 8116
+2019-01-31 11:31:45 1548934305.81 650 STREAM_BW 85 0 216478 2019-01-31T11:31:45.805258
+2019-01-31 11:31:45 1548934305.81 650 CIRC_BW ID=25 READ=221924 WRITTEN=6108 TIME=2019-01-31T11:31:45.805268 DELIVERED_READ=216478 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:31:46 1548934306.81 650 BW 53348 2715
+2019-01-31 11:31:46 1548934306.81 650 STREAM_BW 85 0 49650 2019-01-31T11:31:46.804838
+2019-01-31 11:31:46 1548934306.81 650 CIRC_BW ID=25 READ=50900 WRITTEN=1527 TIME=2019-01-31T11:31:46.804848 DELIVERED_READ=49650 OVERHEAD_READ=150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=1494
+2019-01-31 11:31:47 1548934307.81 650 BW 241059 8630
+2019-01-31 11:31:47 1548934307.81 650 STREAM_BW 85 0 229874 2019-01-31T11:31:47.804349
+2019-01-31 11:31:47 1548934307.81 650 CIRC_BW ID=25 READ=235667 WRITTEN=7635 TIME=2019-01-31T11:31:47.804359 DELIVERED_READ=229874 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:48 1548934308.81 650 BW 182684 5430
+2019-01-31 11:31:48 1548934308.81 650 STREAM_BW 85 0 174746 2019-01-31T11:31:48.805153
+2019-01-31 11:31:48 1548934308.81 650 CIRC_BW ID=25 READ=179168 WRITTEN=5090 TIME=2019-01-31T11:31:48.805163 DELIVERED_READ=174746 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:31:49 1548934309.80 650 BW 197445 7059
+2019-01-31 11:31:49 1548934309.80 650 STREAM_BW 85 0 185204 2019-01-31T11:31:49.802976
+2019-01-31 11:31:49 1548934309.80 650 CIRC_BW ID=25 READ=189857 WRITTEN=5599 TIME=2019-01-31T11:31:49.802986 DELIVERED_READ=185204 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5478
+2019-01-31 11:31:50 1548934310.80 650 BW 196874 8145
+2019-01-31 11:31:50 1548934310.80 650 STREAM_BW 85 0 191130 2019-01-31T11:31:50.803015
+2019-01-31 11:31:50 1548934310.80 650 CIRC_BW ID=25 READ=195965 WRITTEN=6108 TIME=2019-01-31T11:31:50.803025 DELIVERED_READ=191130 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:31:51 1548934311.15 650 STREAM_BW 85 0 43226 2019-01-31T11:31:51.145419
+2019-01-31 11:31:51 1548934311.15 650 STREAM 85 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=DONE
+2019-01-31 11:31:51 1548934311.18 650 STREAM 86 NEW 0 4ja3p2v3lh5mvmcy.onion:8080 SOURCE_ADDR=127.0.0.1:36448 PURPOSE=USER
+2019-01-31 11:31:51 1548934311.18 650 CIRC 35 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:51 1548934311.18 650 ORCONN $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick LAUNCHED ID=87
+2019-01-31 11:31:51 1548934311.18 650 CIRC 36 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:31:51 1548934311.18 650 ORCONN $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB LAUNCHED ID=88
+2019-01-31 11:31:51 1548934311.24 650 ORCONN $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB CONNECTED ID=88
+2019-01-31 11:31:51 1548934311.27 650 CIRC 36 EXTENDED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:31:51 1548934311.32 650 ORCONN $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick CONNECTED ID=87
+2019-01-31 11:31:51 1548934311.37 650 CIRC 35 EXTENDED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:51 1548934311.44 650 CIRC 36 EXTENDED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:31:51 1548934311.63 650 CIRC 35 EXTENDED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:51 1548934311.80 650 BW 261885 10155
+2019-01-31 11:31:51 1548934311.80 650 STREAM_BW 86 32 2 2019-01-31T11:31:51.802355
+2019-01-31 11:31:51 1548934311.80 650 CIRC_BW ID=25 READ=249919 WRITTEN=4072 TIME=2019-01-31T11:31:51.802365 DELIVERED_READ=243768 OVERHEAD_READ=750 DELIVERED_WRITTEN=1 OVERHEAD_WRITTEN=3983
+2019-01-31 11:31:51 1548934311.80 650 CIRC_BW ID=35 READ=509 WRITTEN=1018 TIME=2019-01-31T11:31:51.802369 DELIVERED_READ=66 OVERHEAD_READ=432 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:31:51 1548934311.81 650 CIRC_BW ID=36 READ=509 WRITTEN=1018 TIME=2019-01-31T11:31:51.802372 DELIVERED_READ=66 OVERHEAD_READ=432 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:31:52 1548934312.01 650 CIRC 35 EXTENDED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:52 1548934312.01 650 CIRC 35 BUILT $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:52 1548934312.37 650 CIRC_MINOR 35 PURPOSE_CHANGED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_IDLE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_CONNECTING
+2019-01-31 11:31:52 1548934312.80 650 BW 49410 1629
+2019-01-31 11:31:52 1548934312.80 650 CIRC_BW ID=25 READ=46828 WRITTEN=509 TIME=2019-01-31T11:31:52.801172 DELIVERED_READ=45666 OVERHEAD_READ=150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=498
+2019-01-31 11:31:52 1548934312.80 650 CIRC_BW ID=35 READ=1018 WRITTEN=509 TIME=2019-01-31T11:31:52.801184 DELIVERED_READ=66 OVERHEAD_READ=930 DELIVERED_WRITTEN=20 OVERHEAD_WRITTEN=478
+2019-01-31 11:31:53 1548934313.80 650 BW 1086 1629
+2019-01-31 11:31:54 1548934314.80 650 BW 0 0
+2019-01-31 11:31:55 1548934315.80 650 BW 1629 0
+2019-01-31 11:31:56 1548934316.80 650 BW 1086 1629
+2019-01-31 11:31:57 1548934317.80 650 BW 0 543
+2019-01-31 11:31:58 1548934318.80 650 BW 543 1086
+2019-01-31 11:31:59 1548934319.33 650 CIRC 25 CLOSED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275 REASON=DESTROYED REMOTE_REASON=NONE
+2019-01-31 11:31:59 1548934319.80 650 BW 2172 1629
+2019-01-31 11:32:00 1548934320.81 650 BW 0 0
+2019-01-31 11:32:01 1548934321.80 650 BW 543 1086
+2019-01-31 11:32:02 1548934322.38 650 CIRC 36 EXTENDED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:32:02 1548934322.64 650 CIRC 36 EXTENDED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:32:02 1548934322.64 650 CIRC 36 BUILT $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:32:02 1548934322.64 650 CIRC_MINOR 36 PURPOSE_CHANGED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_INTRO_SENT REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_CONNECTING
+2019-01-31 11:32:02 1548934322.80 650 BW 1086 1086
+2019-01-31 11:32:02 1548934322.80 650 CIRC_BW ID=36 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:32:02.801928 DELIVERED_READ=214 OVERHEAD_READ=782 DELIVERED_WRITTEN=612 OVERHEAD_WRITTEN=384
+2019-01-31 11:32:02 1548934322.90 650 CIRC_MINOR 35 PURPOSE_CHANGED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_WAITING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_IDLE
+2019-01-31 11:32:02 1548934322.90 650 CIRC_MINOR 36 PURPOSE_CHANGED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_INTRO_SENT
+2019-01-31 11:32:02 1548934322.90 650 CIRC 36 CLOSED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417 REASON=FINISHED
+2019-01-31 11:32:03 1548934323.80 650 BW 2715 1629
+2019-01-31 11:32:04 1548934324.38 650 CIRC_MINOR 35 PURPOSE_CHANGED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_WAITING
+2019-01-31 11:32:04 1548934324.38 650 STREAM 86 SENTCONNECT 35 4ja3p2v3lh5mvmcy.onion:8080
+2019-01-31 11:32:04 1548934324.80 650 BW 543 543
+2019-01-31 11:32:04 1548934324.80 650 CIRC_BW ID=35 READ=509 WRITTEN=509 TIME=2019-01-31T11:32:04.802492 DELIVERED_READ=148 OVERHEAD_READ=350 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=492
+2019-01-31 11:32:04 1548934325.00 650 STREAM 86 SUCCEEDED 35 4ja3p2v3lh5mvmcy.onion:8080
+2019-01-31 11:32:05 1548934325.80 650 BW 5799 543
+2019-01-31 11:32:05 1548934325.80 650 STREAM_BW 86 52 3525 2019-01-31T11:32:05.802539
+2019-01-31 11:32:05 1548934325.80 650 CIRC_BW ID=35 READ=4581 WRITTEN=509 TIME=2019-01-31T11:32:05.802549 DELIVERED_READ=3515 OVERHEAD_READ=967 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=446
+2019-01-31 11:32:06 1548934326.80 650 BW 178108 5343
+2019-01-31 11:32:06 1548934326.80 650 STREAM_BW 86 0 169318 2019-01-31T11:32:06.802266
+2019-01-31 11:32:06 1548934326.80 650 CIRC_BW ID=35 READ=173569 WRITTEN=4581 TIME=2019-01-31T11:32:06.802276 DELIVERED_READ=169318 OVERHEAD_READ=500 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4482
+2019-01-31 11:32:07 1548934327.80 650 BW 252538 9086
+2019-01-31 11:32:07 1548934327.80 650 STREAM_BW 86 0 238788 2019-01-31T11:32:07.801689
+2019-01-31 11:32:07 1548934327.80 650 CIRC_BW ID=35 READ=245847 WRITTEN=7635 TIME=2019-01-31T11:32:07.801698 DELIVERED_READ=239784 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:08 1548934328.80 650 BW 263690 8000
+2019-01-31 11:32:08 1548934328.80 650 STREAM_BW 86 0 248250 2019-01-31T11:32:08.800615
+2019-01-31 11:32:08 1548934328.80 650 CIRC_BW ID=35 READ=253482 WRITTEN=7635 TIME=2019-01-31T11:32:08.800624 DELIVERED_READ=247254 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:09 1548934329.81 650 BW 237469 7486
+2019-01-31 11:32:09 1548934329.81 650 STREAM_BW 86 0 224894 2019-01-31T11:32:09.806203
+2019-01-31 11:32:09 1548934329.81 650 CIRC_BW ID=35 READ=234140 WRITTEN=6617 TIME=2019-01-31T11:32:09.806212 DELIVERED_READ=228380 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:32:10 1548934330.81 650 BW 285502 9057
+2019-01-31 11:32:10 1548934330.81 650 STREAM_BW 86 0 272602 2019-01-31T11:32:10.805637
+2019-01-31 11:32:10 1548934330.81 650 CIRC_BW ID=35 READ=275878 WRITTEN=8653 TIME=2019-01-31T11:32:10.805646 DELIVERED_READ=269116 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:32:11 1548934331.81 650 BW 238534 6943
+2019-01-31 11:32:11 1548934331.81 650 STREAM_BW 86 0 229874 2019-01-31T11:32:11.804892
+2019-01-31 11:32:11 1548934331.81 650 CIRC_BW ID=35 READ=235667 WRITTEN=6617 TIME=2019-01-31T11:32:11.804900 DELIVERED_READ=229874 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:32:12 1548934332.81 650 BW 253268 8543
+2019-01-31 11:32:12 1548934332.81 650 STREAM_BW 86 0 239784 2019-01-31T11:32:12.805706
+2019-01-31 11:32:12 1548934332.81 650 CIRC_BW ID=35 READ=245847 WRITTEN=7635 TIME=2019-01-31T11:32:12.805719 DELIVERED_READ=239784 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:13 1548934333.81 650 BW 226382 8543
+2019-01-31 11:32:13 1548934333.81 650 STREAM_BW 86 0 216478 2019-01-31T11:32:13.806889
+2019-01-31 11:32:13 1548934333.81 650 CIRC_BW ID=35 READ=221924 WRITTEN=7126 TIME=2019-01-31T11:32:13.806898 DELIVERED_READ=216478 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:32:14 1548934334.81 650 BW 265714 8543
+2019-01-31 11:32:14 1548934334.81 650 STREAM_BW 86 0 251238 2019-01-31T11:32:14.806813
+2019-01-31 11:32:14 1548934334.81 650 CIRC_BW ID=35 READ=257554 WRITTEN=7635 TIME=2019-01-31T11:32:14.806822 DELIVERED_READ=251238 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:15 1548934335.81 650 BW 230555 9115
+2019-01-31 11:32:15 1548934335.81 650 STREAM_BW 86 0 220910 2019-01-31T11:32:15.805202
+2019-01-31 11:32:15 1548934335.81 650 CIRC_BW ID=35 READ=226505 WRITTEN=6617 TIME=2019-01-31T11:32:15.805212 DELIVERED_READ=220910 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:32:16 1548934336.81 650 BW 212122 6400
+2019-01-31 11:32:16 1548934336.81 650 STREAM_BW 86 0 200592 2019-01-31T11:32:16.807360
+2019-01-31 11:32:16 1548934336.81 650 CIRC_BW ID=35 READ=205636 WRITTEN=6108 TIME=2019-01-31T11:32:16.807369 DELIVERED_READ=200592 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:17 1548934337.81 650 BW 116259 3200
+2019-01-31 11:32:17 1548934337.81 650 STREAM_BW 86 0 108712 2019-01-31T11:32:17.804699
+2019-01-31 11:32:17 1548934337.81 650 CIRC_BW ID=35 READ=111471 WRITTEN=3054 TIME=2019-01-31T11:32:17.804708 DELIVERED_READ=108712 OVERHEAD_READ=350 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:18 1548934338.81 650 BW 197026 6943
+2019-01-31 11:32:18 1548934338.81 650 STREAM_BW 86 0 190184 2019-01-31T11:32:18.804610
+2019-01-31 11:32:18 1548934338.81 650 CIRC_BW ID=35 READ=194947 WRITTEN=6108 TIME=2019-01-31T11:32:18.804619 DELIVERED_READ=190184 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:19 1548934339.81 650 BW 260248 8543
+2019-01-31 11:32:19 1548934339.81 650 STREAM_BW 86 0 246756 2019-01-31T11:32:19.807316
+2019-01-31 11:32:19 1548934339.81 650 CIRC_BW ID=35 READ=252973 WRITTEN=7635 TIME=2019-01-31T11:32:19.807326 DELIVERED_READ=246756 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:20 1548934340.81 650 BW 200210 6943
+2019-01-31 11:32:20 1548934340.81 650 STREAM_BW 86 0 189636 2019-01-31T11:32:20.805500
+2019-01-31 11:32:20 1548934340.81 650 CIRC_BW ID=35 READ=194438 WRITTEN=6108 TIME=2019-01-31T11:32:20.805510 DELIVERED_READ=189636 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:21 1548934341.81 650 BW 256183 8000
+2019-01-31 11:32:21 1548934341.81 650 STREAM_BW 86 0 241278 2019-01-31T11:32:21.805994
+2019-01-31 11:32:21 1548934341.81 650 CIRC_BW ID=35 READ=247374 WRITTEN=7126 TIME=2019-01-31T11:32:21.806003 DELIVERED_READ=241278 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:32:22 1548934342.81 650 BW 161149 6972
+2019-01-31 11:32:22 1548934342.81 650 STREAM_BW 86 0 155922 2019-01-31T11:32:22.804379
+2019-01-31 11:32:22 1548934342.81 650 CIRC_BW ID=35 READ=159826 WRITTEN=5090 TIME=2019-01-31T11:32:22.804389 DELIVERED_READ=155922 OVERHEAD_READ=450 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:32:23 1548934343.81 650 BW 121241 3743
+2019-01-31 11:32:23 1548934343.81 650 STREAM_BW 86 0 114688 2019-01-31T11:32:23.807234
+2019-01-31 11:32:23 1548934343.81 650 CIRC_BW ID=35 READ=117579 WRITTEN=3054 TIME=2019-01-31T11:32:23.807243 DELIVERED_READ=114688 OVERHEAD_READ=350 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:24 1548934344.81 650 BW 107218 3743
+2019-01-31 11:32:24 1548934344.81 650 STREAM_BW 86 0 98304 2019-01-31T11:32:24.804442
+2019-01-31 11:32:24 1548934344.81 650 CIRC_BW ID=35 READ=104345 WRITTEN=3054 TIME=2019-01-31T11:32:24.804451 DELIVERED_READ=101790 OVERHEAD_READ=300 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:25 1548934345.81 650 BW 210155 6400
+2019-01-31 11:32:25 1548934345.81 650 STREAM_BW 86 0 200094 2019-01-31T11:32:25.805560
+2019-01-31 11:32:25 1548934345.81 650 CIRC_BW ID=35 READ=201564 WRITTEN=6108 TIME=2019-01-31T11:32:25.805568 DELIVERED_READ=196608 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:26 1548934346.81 650 BW 79710 2657
+2019-01-31 11:32:26 1548934346.81 650 STREAM_BW 86 0 78434 2019-01-31T11:32:26.807097
+2019-01-31 11:32:26 1548934346.81 650 CIRC_BW ID=35 READ=80422 WRITTEN=2545 TIME=2019-01-31T11:32:26.807106 DELIVERED_READ=78434 OVERHEAD_READ=250 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2490
+2019-01-31 11:32:27 1548934347.81 650 BW 161678 5343
+2019-01-31 11:32:27 1548934347.81 650 STREAM_BW 86 0 151938 2019-01-31T11:32:27.804433
+2019-01-31 11:32:27 1548934347.81 650 CIRC_BW ID=35 READ=155754 WRITTEN=4581 TIME=2019-01-31T11:32:27.804442 DELIVERED_READ=151938 OVERHEAD_READ=450 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4482
+2019-01-31 11:32:28 1548934348.81 650 BW 195157 6943
+2019-01-31 11:32:28 1548934348.81 650 STREAM_BW 86 0 183162 2019-01-31T11:32:28.806764
+2019-01-31 11:32:28 1548934348.81 650 CIRC_BW ID=35 READ=187821 WRITTEN=6108 TIME=2019-01-31T11:32:28.806772 DELIVERED_READ=183162 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:29 1548934349.81 650 BW 111061 4829
+2019-01-31 11:32:29 1548934349.81 650 STREAM_BW 86 0 107766 2019-01-31T11:32:29.806990
+2019-01-31 11:32:29 1548934349.81 650 CIRC_BW ID=35 READ=110453 WRITTEN=3054 TIME=2019-01-31T11:32:29.807001 DELIVERED_READ=107766 OVERHEAD_READ=300 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:30 1548934350.81 650 BW 252338 8000
+2019-01-31 11:32:30 1548934350.81 650 STREAM_BW 86 0 237294 2019-01-31T11:32:30.805056
+2019-01-31 11:32:30 1548934350.81 650 CIRC_BW ID=35 READ=243302 WRITTEN=7635 TIME=2019-01-31T11:32:30.805067 DELIVERED_READ=237294 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:31 1548934351.81 650 BW 113460 4286
+2019-01-31 11:32:31 1548934351.81 650 STREAM_BW 86 0 110754 2019-01-31T11:32:31.805664
+2019-01-31 11:32:31 1548934351.81 650 CIRC_BW ID=35 READ=113507 WRITTEN=3054 TIME=2019-01-31T11:32:31.805674 DELIVERED_READ=110754 OVERHEAD_READ=300 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:32 1548934352.81 650 BW 294190 9629
+2019-01-31 11:32:32 1548934352.81 650 STREAM_BW 86 0 277532 2019-01-31T11:32:32.807132
+2019-01-31 11:32:32 1548934352.81 650 CIRC_BW ID=35 READ=284531 WRITTEN=8144 TIME=2019-01-31T11:32:32.807140 DELIVERED_READ=277532 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:32:33 1548934353.21 650 STREAM_BW 86 0 34249 2019-01-31T11:32:33.211323
+2019-01-31 11:32:33 1548934353.21 650 STREAM 86 CLOSED 35 4ja3p2v3lh5mvmcy.onion:8080 REASON=DONE
+2019-01-31 11:32:33 1548934353.21 650 STREAM 89 NEW 0 4ja3p2v3lh5mvmcy.onion:8080 SOURCE_ADDR=127.0.0.1:36468 PURPOSE=USER
+2019-01-31 11:32:33 1548934353.21 650 STREAM 89 SENTCONNECT 35 4ja3p2v3lh5mvmcy.onion:8080
+2019-02-11 14:58:38 1549893518.92 Starting torctl program on host phlox using Tor version 0.3.5.7 status=recommended
+2019-02-11 14:58:38 1549893518.93 NOTICE BOOTSTRAP PROGRESS=100 TAG=done SUMMARY="Done"
+2019-02-11 14:58:38 1549893518.95 650 CIRC 15 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-02-11T13:58:38.936729
+2019-02-11 14:58:38 1549893518.96 [WARNING] event TB_EMPTY is recognized by stem but not by tor
+2019-02-11 14:58:39 1549893519.19 650 ORCONN $A9F7185499C5784E35B5C25744ED4AB75437CE5D~damita CONNECTED ID=41
+2019-02-11 14:58:39 1549893519.26 650 CIRC 15 EXTENDED $A9F7185499C5784E35B5C25744ED4AB75437CE5D~damita BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-02-11T13:58:38.936729
+2019-02-11 14:58:39 1549893519.39 650 CIRC 15 EXTENDED $A9F7185499C5784E35B5C25744ED4AB75437CE5D~damita,$EE556626236B477A40770AACDE5BB140006EFB4D~sqrrm BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-02-11T13:58:38.936729
+2019-02-11 14:58:39 1549893519.48 650 BW 5311 2634
+2019-02-11 14:58:39 1549893519.48 650 CIRC_BW ID=15 READ=509 WRITTEN=1018 TIME=2019-02-11T13:58:39.465271 DELIVERED_READ=66 OVERHEAD_READ=432 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-02-11 14:58:39 1549893519.48 650 CIRC 16 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
+2019-02-11 14:58:39 1549893519.49 650 ORCONN $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang LAUNCHED ID=42
+2019-02-11 14:58:39 1549893519.59 650 ORCONN $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang CONNECTED ID=42
+2019-02-11 14:58:39 1549893519.62 650 CIRC 16 EXTENDED $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
+2019-02-11 14:58:39 1549893519.65 650 CIRC 15 EXTENDED $A9F7185499C5784E35B5C25744ED4AB75437CE5D~damita,$EE556626236B477A40770AACDE5BB140006EFB4D~sqrrm,$51826F7C88BD7BFF3B31E0C01C44F7821DF673D3~ArguteTor BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-02-11T13:58:38.936729
+2019-02-11 14:58:39 1549893519.69 650 CIRC 16 EXTENDED $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang,$87D73471FDC64BD9CEDF84435D20CA4EB5C36FE8~niftyphoberomys BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
+2019-02-11 14:58:39 1549893519.78 650 CIRC 16 EXTENDED $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang,$87D73471FDC64BD9CEDF84435D20CA4EB5C36FE8~niftyphoberomys,$C3636ECA4B40900056590AA7DBFC6ED09379852F~jmarshall2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
+2019-02-11 14:58:39 1549893519.78 650 CIRC 16 BUILT $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang,$87D73471FDC64BD9CEDF84435D20CA4EB5C36FE8~niftyphoberomys,$C3636ECA4B40900056590AA7DBFC6ED09379852F~jmarshall2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
diff --git a/onionperf/tests/data/logs/onionperf20190101.tgen.log b/onionperf/tests/data/logs/onionperf20190101.tgen.log
new file mode 100644
index 0000000..f668945
--- /dev/null
+++ b/onionperf/tests/data/logs/onionperf20190101.tgen.log
@@ -0,0 +1,6510 @@
+2019-01-31 11:29:51 1548934191.144294 [message] [shd-tgen-main.c:82] [_tgenmain_run] Initializing traffic generator on host phlox process id 10659
+2019-01-31 11:29:51 1548934191.144855 [message] [shd-tgen-graph.c:757] [tgengraph_new] successfully loaded graphml file '/home/ana/onionperf-data/tgen-client/tgen.graphml.xml' and validated actions: graph is weakly connected with 1 cluster, 2 vertices, and 2 edges
+2019-01-31 11:29:51 1548934191.144936 [info] [shd-tgen-driver.c:737] [_tgendriver_setHeartbeatTimerHelper] set heartbeat timer using descriptor 5
+2019-01-31 11:29:51 1548934191.145016 [message] [shd-tgen-server.c:136] [tgenserver_new] server listening at 0.0.0.0:46152
+2019-01-31 11:29:51 1548934191.145061 [info] [shd-tgen-driver.c:679] [_tgendriver_startServerHelper] started server using descriptor 9
+2019-01-31 11:29:51 1548934191.145118 [info] [shd-tgen-driver.c:707] [_tgendriver_setStartClientTimerHelper] set startClient timer using descriptor 12
+2019-01-31 11:29:51 1548934191.145174 [message] [shd-tgen-main.c:153] [_tgenmain_run] entering main loop to watch descriptors
+2019-01-31 11:29:51 1548934191.145236 [message] [shd-tgen-driver.c:797] [_tgendriver_onStartClientTimerExpired] starting client using action graph '/home/ana/onionperf-data/tgen-client/tgen.graphml.xml'
+2019-01-31 11:29:51 1548934191.145366 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:29:51 1548934191.145449 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:29:51 1548934191.145522 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:29:51 1548934191.145565 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:29:51 1548934191.145626 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:29:55 1548934195.606144 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:29:55 1548934195.606223 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:29:55 1548934195.606309 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36384 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:29:55 1548934195.606355 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:29:55 1548934195.606437 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,1,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:29:56 1548934196.295183 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:29:56 1548934196.295279 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:29:56 1548934196.418955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:29:56 1548934196.467390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5009 total-bytes-write=52 payload-bytes-read=4980/5242880 (0.09%)
+2019-01-31 11:29:56 1548934196.472538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=8993 total-bytes-write=52 payload-bytes-read=8964/5242880 (0.17%)
+2019-01-31 11:29:56 1548934196.550385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=13973 total-bytes-write=52 payload-bytes-read=13944/5242880 (0.27%)
+2019-01-31 11:29:56 1548934196.556140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=17907 total-bytes-write=52 payload-bytes-read=17878/5242880 (0.34%)
+2019-01-31 11:29:56 1548934196.556197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=18405 total-bytes-write=52 payload-bytes-read=18376/5242880 (0.35%)
+2019-01-31 11:29:56 1548934196.585028 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=22887 total-bytes-write=52 payload-bytes-read=22858/5242880 (0.44%)
+2019-01-31 11:29:56 1548934196.585088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=23385 total-bytes-write=52 payload-bytes-read=23356/5242880 (0.45%)
+2019-01-31 11:29:56 1548934196.586105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=25377 total-bytes-write=52 payload-bytes-read=25348/5242880 (0.48%)
+2019-01-31 11:29:56 1548934196.635623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=28863 total-bytes-write=52 payload-bytes-read=28834/5242880 (0.55%)
+2019-01-31 11:29:56 1548934196.640270 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=32797 total-bytes-write=52 payload-bytes-read=32768/5242880 (0.62%)
+2019-01-31 11:29:56 1548934196.640325 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=33295 total-bytes-write=52 payload-bytes-read=33266/5242880 (0.63%)
+2019-01-31 11:29:56 1548934196.642378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=36283 total-bytes-write=52 payload-bytes-read=36254/5242880 (0.69%)
+2019-01-31 11:29:56 1548934196.643280 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=39769 total-bytes-write=52 payload-bytes-read=39740/5242880 (0.76%)
+2019-01-31 11:29:56 1548934196.644343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=40765 total-bytes-write=52 payload-bytes-read=40736/5242880 (0.78%)
+2019-01-31 11:29:56 1548934196.644637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=41761 total-bytes-write=52 payload-bytes-read=41732/5242880 (0.80%)
+2019-01-31 11:29:56 1548934196.666894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=45809 total-bytes-write=52 payload-bytes-read=45780/5242880 (0.87%)
+2019-01-31 11:29:56 1548934196.708376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=49679 total-bytes-write=52 payload-bytes-read=49650/5242880 (0.95%)
+2019-01-31 11:29:56 1548934196.710372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=53165 total-bytes-write=52 payload-bytes-read=53136/5242880 (1.01%)
+2019-01-31 11:29:56 1548934196.710790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=57149 total-bytes-write=52 payload-bytes-read=57120/5242880 (1.09%)
+2019-01-31 11:29:56 1548934196.744773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=58145 total-bytes-write=52 payload-bytes-read=58116/5242880 (1.11%)
+2019-01-31 11:29:56 1548934196.745199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=61133 total-bytes-write=52 payload-bytes-read=61104/5242880 (1.17%)
+2019-01-31 11:29:56 1548934196.757388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=64619 total-bytes-write=52 payload-bytes-read=64590/5242880 (1.23%)
+2019-01-31 11:29:56 1548934196.813633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=68055 total-bytes-write=52 payload-bytes-read=68026/5242880 (1.30%)
+2019-01-31 11:29:56 1548934196.822409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=71541 total-bytes-write=52 payload-bytes-read=71512/5242880 (1.36%)
+2019-01-31 11:29:56 1548934196.823171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=75589 total-bytes-write=52 payload-bytes-read=75560/5242880 (1.44%)
+2019-01-31 11:29:56 1548934196.864411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=93901 total-bytes-write=52 payload-bytes-read=93872/5242880 (1.79%)
+2019-01-31 11:29:56 1548934196.908380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=111779 total-bytes-write=52 payload-bytes-read=111750/5242880 (2.13%)
+2019-01-31 11:29:56 1548934196.934018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=115215 total-bytes-write=52 payload-bytes-read=115186/5242880 (2.20%)
+2019-01-31 11:29:56 1548934196.934769 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=119199 total-bytes-write=52 payload-bytes-read=119170/5242880 (2.27%)
+2019-01-31 11:29:56 1548934196.935187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=123183 total-bytes-write=52 payload-bytes-read=123154/5242880 (2.35%)
+2019-01-31 11:29:56 1548934196.968990 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=124179 total-bytes-write=52 payload-bytes-read=124150/5242880 (2.37%)
+2019-01-31 11:29:56 1548934196.969443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=127665 total-bytes-write=52 payload-bytes-read=127636/5242880 (2.43%)
+2019-01-31 11:29:56 1548934196.970084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=131599 total-bytes-write=52 payload-bytes-read=131570/5242880 (2.51%)
+2019-01-31 11:29:56 1548934196.971245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=135085 total-bytes-write=52 payload-bytes-read=135056/5242880 (2.58%)
+2019-01-31 11:29:57 1548934197.012406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=136081 total-bytes-write=52 payload-bytes-read=136052/5242880 (2.59%)
+2019-01-31 11:29:57 1548934197.012986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=139567 total-bytes-write=52 payload-bytes-read=139538/5242880 (2.66%)
+2019-01-31 11:29:57 1548934197.013383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=141559 total-bytes-write=52 payload-bytes-read=141530/5242880 (2.70%)
+2019-01-31 11:29:57 1548934197.014492 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=145045 total-bytes-write=52 payload-bytes-read=145016/5242880 (2.77%)
+2019-01-31 11:29:57 1548934197.015018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=146041 total-bytes-write=52 payload-bytes-read=146012/5242880 (2.78%)
+2019-01-31 11:29:57 1548934197.016411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=149477 total-bytes-write=52 payload-bytes-read=149448/5242880 (2.85%)
+2019-01-31 11:29:57 1548934197.050794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=153525 total-bytes-write=52 payload-bytes-read=153496/5242880 (2.93%)
+2019-01-31 11:29:57 1548934197.092436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=176817 total-bytes-write=52 payload-bytes-read=176788/5242880 (3.37%)
+2019-01-31 11:29:57 1548934197.136411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=200123 total-bytes-write=52 payload-bytes-read=200094/5242880 (3.82%)
+2019-01-31 11:29:57 1548934197.180393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=216009 total-bytes-write=52 payload-bytes-read=215980/5242880 (4.12%)
+2019-01-31 11:29:57 1548934197.195993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=217005 total-bytes-write=52 payload-bytes-read=216976/5242880 (4.14%)
+2019-01-31 11:29:57 1548934197.196945 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=220491 total-bytes-write=52 payload-bytes-read=220462/5242880 (4.20%)
+2019-01-31 11:29:57 1548934197.197734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=224475 total-bytes-write=52 payload-bytes-read=224446/5242880 (4.28%)
+2019-01-31 11:29:57 1548934197.198372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=228459 total-bytes-write=52 payload-bytes-read=228430/5242880 (4.36%)
+2019-01-31 11:29:57 1548934197.240408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=253259 total-bytes-write=52 payload-bytes-read=253230/5242880 (4.83%)
+2019-01-31 11:29:57 1548934197.284383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=256745 total-bytes-write=52 payload-bytes-read=256716/5242880 (4.90%)
+2019-01-31 11:29:57 1548934197.346009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=258239 total-bytes-write=52 payload-bytes-read=258210/5242880 (4.92%)
+2019-01-31 11:29:57 1548934197.386149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=261725 total-bytes-write=52 payload-bytes-read=261696/5242880 (4.99%)
+2019-01-31 11:29:57 1548934197.395829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=262173 total-bytes-write=52 payload-bytes-read=262144/5242880 (5.00%)
+2019-01-31 11:29:57 1548934197.396277 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=265659 total-bytes-write=52 payload-bytes-read=265630/5242880 (5.07%)
+2019-01-31 11:29:57 1548934197.430365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=269145 total-bytes-write=52 payload-bytes-read=269116/5242880 (5.13%)
+2019-01-31 11:29:57 1548934197.472396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:29:57 1548934197.516381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=294493 total-bytes-write=52 payload-bytes-read=294464/5242880 (5.62%)
+2019-01-31 11:29:57 1548934197.552909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=297929 total-bytes-write=52 payload-bytes-read=297900/5242880 (5.68%)
+2019-01-31 11:29:57 1548934197.554833 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=305897 total-bytes-write=52 payload-bytes-read=305868/5242880 (5.83%)
+2019-01-31 11:29:57 1548934197.554906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=308387 total-bytes-write=52 payload-bytes-read=308358/5242880 (5.88%)
+2019-01-31 11:29:57 1548934197.558174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=309881 total-bytes-write=52 payload-bytes-read=309852/5242880 (5.91%)
+2019-01-31 11:29:57 1548934197.565274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=313317 total-bytes-write=52 payload-bytes-read=313288/5242880 (5.98%)
+2019-01-31 11:29:57 1548934197.604014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=317799 total-bytes-write=52 payload-bytes-read=317770/5242880 (6.06%)
+2019-01-31 11:29:57 1548934197.605049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=325767 total-bytes-write=52 payload-bytes-read=325738/5242880 (6.21%)
+2019-01-31 11:29:57 1548934197.605158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=330199 total-bytes-write=52 payload-bytes-read=330170/5242880 (6.30%)
+2019-01-31 11:29:57 1548934197.605411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=336673 total-bytes-write=52 payload-bytes-read=336644/5242880 (6.42%)
+2019-01-31 11:29:57 1548934197.642540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=340159 total-bytes-write=52 payload-bytes-read=340130/5242880 (6.49%)
+2019-01-31 11:29:57 1548934197.652014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=343645 total-bytes-write=52 payload-bytes-read=343616/5242880 (6.55%)
+2019-01-31 11:29:57 1548934197.696398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=365457 total-bytes-write=52 payload-bytes-read=365428/5242880 (6.97%)
+2019-01-31 11:29:57 1548934197.759472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=368943 total-bytes-write=52 payload-bytes-read=368914/5242880 (7.04%)
+2019-01-31 11:29:57 1548934197.763309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=372927 total-bytes-write=52 payload-bytes-read=372898/5242880 (7.11%)
+2019-01-31 11:29:57 1548934197.766623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=376861 total-bytes-write=52 payload-bytes-read=376832/5242880 (7.19%)
+2019-01-31 11:29:57 1548934197.767863 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=380845 total-bytes-write=52 payload-bytes-read=380816/5242880 (7.26%)
+2019-01-31 11:29:57 1548934197.770656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=382339 total-bytes-write=52 payload-bytes-read=382310/5242880 (7.29%)
+2019-01-31 11:29:57 1548934197.772025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=389809 total-bytes-write=52 payload-bytes-read=389780/5242880 (7.43%)
+2019-01-31 11:29:57 1548934197.819681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=391303 total-bytes-write=52 payload-bytes-read=391274/5242880 (7.46%)
+2019-01-31 11:29:57 1548934197.821523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=398723 total-bytes-write=52 payload-bytes-read=398694/5242880 (7.60%)
+2019-01-31 11:29:57 1548934197.822416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=406691 total-bytes-write=52 payload-bytes-read=406662/5242880 (7.76%)
+2019-01-31 11:29:57 1548934197.823879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=407189 total-bytes-write=52 payload-bytes-read=407160/5242880 (7.77%)
+2019-01-31 11:29:57 1548934197.824913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=413115 total-bytes-write=52 payload-bytes-read=413086/5242880 (7.88%)
+2019-01-31 11:29:57 1548934197.833651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=415605 total-bytes-write=52 payload-bytes-read=415576/5242880 (7.93%)
+2019-01-31 11:29:57 1548934197.844989 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=423075 total-bytes-write=52 payload-bytes-read=423046/5242880 (8.07%)
+2019-01-31 11:29:57 1548934197.845128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=427009 total-bytes-write=52 payload-bytes-read=426980/5242880 (8.14%)
+2019-01-31 11:29:57 1548934197.853290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=430495 total-bytes-write=52 payload-bytes-read=430466/5242880 (8.21%)
+2019-01-31 11:29:57 1548934197.853931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=434479 total-bytes-write=52 payload-bytes-read=434450/5242880 (8.29%)
+2019-01-31 11:29:57 1548934197.875116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=434977 total-bytes-write=52 payload-bytes-read=434948/5242880 (8.30%)
+2019-01-31 11:29:57 1548934197.876614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=442397 total-bytes-write=52 payload-bytes-read=442368/5242880 (8.44%)
+2019-01-31 11:29:57 1548934197.878030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=450365 total-bytes-write=52 payload-bytes-read=450336/5242880 (8.59%)
+2019-01-31 11:29:57 1548934197.889231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=453851 total-bytes-write=52 payload-bytes-read=453822/5242880 (8.66%)
+2019-01-31 11:29:57 1548934197.890591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=461271 total-bytes-write=52 payload-bytes-read=461242/5242880 (8.80%)
+2019-01-31 11:29:57 1548934197.897498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=462267 total-bytes-write=52 payload-bytes-read=462238/5242880 (8.82%)
+2019-01-31 11:29:57 1548934197.897984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=465753 total-bytes-write=52 payload-bytes-read=465724/5242880 (8.88%)
+2019-01-31 11:29:57 1548934197.920074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=469239 total-bytes-write=52 payload-bytes-read=469210/5242880 (8.95%)
+2019-01-31 11:29:57 1548934197.964397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=492545 total-bytes-write=52 payload-bytes-read=492516/5242880 (9.39%)
+2019-01-31 11:29:58 1548934198.008391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=496031 total-bytes-write=52 payload-bytes-read=496002/5242880 (9.46%)
+2019-01-31 11:29:58 1548934198.049616 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=499517 total-bytes-write=52 payload-bytes-read=499488/5242880 (9.53%)
+2019-01-31 11:29:58 1548934198.092395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=519387 total-bytes-write=52 payload-bytes-read=519358/5242880 (9.91%)
+2019-01-31 11:29:58 1548934198.136402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=536269 total-bytes-write=52 payload-bytes-read=536240/5242880 (10.23%)
+2019-01-31 11:29:58 1548934198.136746 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=536767 total-bytes-write=52 payload-bytes-read=536738/5242880 (10.24%)
+2019-01-31 11:29:58 1548934198.137248 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=539755 total-bytes-write=52 payload-bytes-read=539726/5242880 (10.29%)
+2019-01-31 11:29:58 1548934198.242568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=540253 total-bytes-write=52 payload-bytes-read=540224/5242880 (10.30%)
+2019-01-31 11:29:58 1548934198.449132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=543689 total-bytes-write=52 payload-bytes-read=543660/5242880 (10.37%)
+2019-01-31 11:29:58 1548934198.449754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=544685 total-bytes-write=52 payload-bytes-read=544656/5242880 (10.39%)
+2019-01-31 11:29:58 1548934198.450090 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=548171 total-bytes-write=52 payload-bytes-read=548142/5242880 (10.45%)
+2019-01-31 11:29:58 1548934198.471608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=549167 total-bytes-write=52 payload-bytes-read=549138/5242880 (10.47%)
+2019-01-31 11:29:58 1548934198.472390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=552653 total-bytes-write=52 payload-bytes-read=552624/5242880 (10.54%)
+2019-01-31 11:29:58 1548934198.473029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=556139 total-bytes-write=52 payload-bytes-read=556110/5242880 (10.61%)
+2019-01-31 11:29:58 1548934198.516392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=563559 total-bytes-write=52 payload-bytes-read=563530/5242880 (10.75%)
+2019-01-31 11:29:58 1548934198.560358 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=567543 total-bytes-write=52 payload-bytes-read=567514/5242880 (10.82%)
+2019-01-31 11:29:58 1548934198.577079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=568041 total-bytes-write=52 payload-bytes-read=568012/5242880 (10.83%)
+2019-01-31 11:29:58 1548934198.577472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=570531 total-bytes-write=52 payload-bytes-read=570502/5242880 (10.88%)
+2019-01-31 11:29:58 1548934198.610631 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=573967 total-bytes-write=52 payload-bytes-read=573938/5242880 (10.95%)
+2019-01-31 11:29:58 1548934198.611309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=577951 total-bytes-write=52 payload-bytes-read=577922/5242880 (11.02%)
+2019-01-31 11:29:58 1548934198.611851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=581935 total-bytes-write=52 payload-bytes-read=581906/5242880 (11.10%)
+2019-01-31 11:29:58 1548934198.652415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=610221 total-bytes-write=52 payload-bytes-read=610192/5242880 (11.64%)
+2019-01-31 11:29:58 1548934198.696378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=625111 total-bytes-write=52 payload-bytes-read=625082/5242880 (11.92%)
+2019-01-31 11:29:58 1548934198.700418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=625609 total-bytes-write=52 payload-bytes-read=625580/5242880 (11.93%)
+2019-01-31 11:29:58 1548934198.701851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=629095 total-bytes-write=52 payload-bytes-read=629066/5242880 (12.00%)
+2019-01-31 11:29:58 1548934198.702640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=633079 total-bytes-write=52 payload-bytes-read=633050/5242880 (12.07%)
+2019-01-31 11:29:58 1548934198.703272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=639005 total-bytes-write=52 payload-bytes-read=638976/5242880 (12.19%)
+2019-01-31 11:29:58 1548934198.714038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=646475 total-bytes-write=52 payload-bytes-read=646446/5242880 (12.33%)
+2019-01-31 11:29:58 1548934198.714740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=652949 total-bytes-write=52 payload-bytes-read=652920/5242880 (12.45%)
+2019-01-31 11:29:58 1548934198.726158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=656385 total-bytes-write=52 payload-bytes-read=656356/5242880 (12.52%)
+2019-01-31 11:29:58 1548934198.734488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=657381 total-bytes-write=52 payload-bytes-read=657352/5242880 (12.54%)
+2019-01-31 11:29:58 1548934198.735458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=660867 total-bytes-write=52 payload-bytes-read=660838/5242880 (12.60%)
+2019-01-31 11:29:58 1548934198.737024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=668835 total-bytes-write=52 payload-bytes-read=668806/5242880 (12.76%)
+2019-01-31 11:29:58 1548934198.778243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=672271 total-bytes-write=52 payload-bytes-read=672242/5242880 (12.82%)
+2019-01-31 11:29:58 1548934198.814693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=672769 total-bytes-write=52 payload-bytes-read=672740/5242880 (12.83%)
+2019-01-31 11:29:58 1548934198.815558 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=676255 total-bytes-write=52 payload-bytes-read=676226/5242880 (12.90%)
+2019-01-31 11:29:58 1548934198.831842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=679741 total-bytes-write=52 payload-bytes-read=679712/5242880 (12.96%)
+2019-01-31 11:29:58 1548934198.872451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=723415 total-bytes-write=52 payload-bytes-read=723386/5242880 (13.80%)
+2019-01-31 11:29:58 1548934198.916435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=762657 total-bytes-write=52 payload-bytes-read=762628/5242880 (14.55%)
+2019-01-31 11:29:58 1548934198.959281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=763653 total-bytes-write=52 payload-bytes-read=763624/5242880 (14.56%)
+2019-01-31 11:29:59 1548934199.032274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=765147 total-bytes-write=52 payload-bytes-read=765118/5242880 (14.59%)
+2019-01-31 11:29:59 1548934199.065077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=768633 total-bytes-write=52 payload-bytes-read=768604/5242880 (14.66%)
+2019-01-31 11:29:59 1548934199.076457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=770077 total-bytes-write=52 payload-bytes-read=770048/5242880 (14.69%)
+2019-01-31 11:29:59 1548934199.077789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=773563 total-bytes-write=52 payload-bytes-read=773534/5242880 (14.75%)
+2019-01-31 11:29:59 1548934199.087598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=777049 total-bytes-write=52 payload-bytes-read=777020/5242880 (14.82%)
+2019-01-31 11:29:59 1548934199.128406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=785017 total-bytes-write=52 payload-bytes-read=784988/5242880 (14.97%)
+2019-01-31 11:29:59 1548934199.196176 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=785515 total-bytes-write=52 payload-bytes-read=785486/5242880 (14.98%)
+2019-01-31 11:29:59 1548934199.199555 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=788951 total-bytes-write=52 payload-bytes-read=788922/5242880 (15.05%)
+2019-01-31 11:29:59 1548934199.243373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=789449 total-bytes-write=52 payload-bytes-read=789420/5242880 (15.06%)
+2019-01-31 11:29:59 1548934199.243763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=792935 total-bytes-write=52 payload-bytes-read=792906/5242880 (15.12%)
+2019-01-31 11:29:59 1548934199.253932 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=796421 total-bytes-write=52 payload-bytes-read=796392/5242880 (15.19%)
+2019-01-31 11:29:59 1548934199.296408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=815793 total-bytes-write=52 payload-bytes-read=815764/5242880 (15.56%)
+2019-01-31 11:29:59 1548934199.340398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=824707 total-bytes-write=52 payload-bytes-read=824678/5242880 (15.73%)
+2019-01-31 11:29:59 1548934199.346789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=825205 total-bytes-write=52 payload-bytes-read=825176/5242880 (15.74%)
+2019-01-31 11:29:59 1548934199.347910 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=828691 total-bytes-write=52 payload-bytes-read=828662/5242880 (15.81%)
+2019-01-31 11:29:59 1548934199.357019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=829189 total-bytes-write=52 payload-bytes-read=829160/5242880 (15.81%)
+2019-01-31 11:29:59 1548934199.357894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=832675 total-bytes-write=52 payload-bytes-read=832646/5242880 (15.88%)
+2019-01-31 11:29:59 1548934199.358846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=834667 total-bytes-write=52 payload-bytes-read=834638/5242880 (15.92%)
+2019-01-31 11:29:59 1548934199.379664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=838103 total-bytes-write=52 payload-bytes-read=838074/5242880 (15.98%)
+2019-01-31 11:29:59 1548934199.380124 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=840095 total-bytes-write=52 payload-bytes-read=840066/5242880 (16.02%)
+2019-01-31 11:29:59 1548934199.391379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=843581 total-bytes-write=52 payload-bytes-read=843552/5242880 (16.09%)
+2019-01-31 11:29:59 1548934199.392333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=847067 total-bytes-write=52 payload-bytes-read=847038/5242880 (16.16%)
+2019-01-31 11:29:59 1548934199.436375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=857973 total-bytes-write=52 payload-bytes-read=857944/5242880 (16.36%)
+2019-01-31 11:29:59 1548934199.480454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=891737 total-bytes-write=52 payload-bytes-read=891708/5242880 (17.01%)
+2019-01-31 11:29:59 1548934199.524447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=925003 total-bytes-write=52 payload-bytes-read=924974/5242880 (17.64%)
+2019-01-31 11:29:59 1548934199.524636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=932473 total-bytes-write=52 payload-bytes-read=932444/5242880 (17.78%)
+2019-01-31 11:29:59 1548934199.526362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=939893 total-bytes-write=52 payload-bytes-read=939864/5242880 (17.93%)
+2019-01-31 11:29:59 1548934199.546403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=943379 total-bytes-write=52 payload-bytes-read=943350/5242880 (17.99%)
+2019-01-31 11:29:59 1548934199.577964 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=943877 total-bytes-write=52 payload-bytes-read=943848/5242880 (18.00%)
+2019-01-31 11:29:59 1548934199.580911 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=947363 total-bytes-write=52 payload-bytes-read=947334/5242880 (18.07%)
+2019-01-31 11:29:59 1548934199.581468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=955281 total-bytes-write=52 payload-bytes-read=955252/5242880 (18.22%)
+2019-01-31 11:29:59 1548934199.601547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=956775 total-bytes-write=52 payload-bytes-read=956746/5242880 (18.25%)
+2019-01-31 11:29:59 1548934199.602016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=960261 total-bytes-write=52 payload-bytes-read=960232/5242880 (18.31%)
+2019-01-31 11:29:59 1548934199.614916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=961257 total-bytes-write=52 payload-bytes-read=961228/5242880 (18.33%)
+2019-01-31 11:29:59 1548934199.616369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=968677 total-bytes-write=52 payload-bytes-read=968648/5242880 (18.48%)
+2019-01-31 11:29:59 1548934199.617432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=972163 total-bytes-write=52 payload-bytes-read=972134/5242880 (18.54%)
+2019-01-31 11:29:59 1548934199.622842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=975649 total-bytes-write=52 payload-bytes-read=975620/5242880 (18.61%)
+2019-01-31 11:29:59 1548934199.664363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=982621 total-bytes-write=52 payload-bytes-read=982592/5242880 (18.74%)
+2019-01-31 11:29:59 1548934199.708415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1007421 total-bytes-write=52 payload-bytes-read=1007392/5242880 (19.21%)
+2019-01-31 11:29:59 1548934199.752387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1010907 total-bytes-write=52 payload-bytes-read=1010878/5242880 (19.28%)
+2019-01-31 11:29:59 1548934199.794350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1011903 total-bytes-write=52 payload-bytes-read=1011874/5242880 (19.30%)
+2019-01-31 11:29:59 1548934199.821929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1015389 total-bytes-write=52 payload-bytes-read=1015360/5242880 (19.37%)
+2019-01-31 11:29:59 1548934199.822849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1019323 total-bytes-write=52 payload-bytes-read=1019294/5242880 (19.44%)
+2019-01-31 11:29:59 1548934199.823552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1027291 total-bytes-write=52 payload-bytes-read=1027262/5242880 (19.59%)
+2019-01-31 11:29:59 1548934199.826194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1027789 total-bytes-write=52 payload-bytes-read=1027760/5242880 (19.60%)
+2019-01-31 11:29:59 1548934199.829307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1029283 total-bytes-write=52 payload-bytes-read=1029254/5242880 (19.63%)
+2019-01-31 11:29:59 1548934199.849607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1032719 total-bytes-write=52 payload-bytes-read=1032690/5242880 (19.70%)
+2019-01-31 11:29:59 1548934199.883318 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1036205 total-bytes-write=52 payload-bytes-read=1036176/5242880 (19.76%)
+2019-01-31 11:29:59 1548934199.918600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1040189 total-bytes-write=52 payload-bytes-read=1040160/5242880 (19.84%)
+2019-01-31 11:29:59 1548934199.918878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1048157 total-bytes-write=52 payload-bytes-read=1048128/5242880 (19.99%)
+2019-01-31 11:29:59 1548934199.918993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1052091 total-bytes-write=52 payload-bytes-read=1052062/5242880 (20.07%)
+2019-01-31 11:29:59 1548934199.920289 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1056075 total-bytes-write=52 payload-bytes-read=1056046/5242880 (20.14%)
+2019-01-31 11:29:59 1548934199.926418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1056573 total-bytes-write=52 payload-bytes-read=1056544/5242880 (20.15%)
+2019-01-31 11:29:59 1548934199.926836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1060059 total-bytes-write=52 payload-bytes-read=1060030/5242880 (20.22%)
+2019-01-31 11:29:59 1548934199.948843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1061553 total-bytes-write=52 payload-bytes-read=1061524/5242880 (20.25%)
+2019-01-31 11:30:00 1548934200.023478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1064989 total-bytes-write=52 payload-bytes-read=1064960/5242880 (20.31%)
+2019-01-31 11:30:00 1548934200.034178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1068475 total-bytes-write=52 payload-bytes-read=1068446/5242880 (20.38%)
+2019-01-31 11:30:00 1548934200.046600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1071961 total-bytes-write=52 payload-bytes-read=1071932/5242880 (20.45%)
+2019-01-31 11:30:00 1548934200.088386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1084361 total-bytes-write=52 payload-bytes-read=1084332/5242880 (20.68%)
+2019-01-31 11:30:00 1548934200.132402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1098753 total-bytes-write=52 payload-bytes-read=1098724/5242880 (20.96%)
+2019-01-31 11:30:00 1548934200.207422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1099749 total-bytes-write=52 payload-bytes-read=1099720/5242880 (20.98%)
+2019-01-31 11:30:00 1548934200.224625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1107219 total-bytes-write=52 payload-bytes-read=1107190/5242880 (21.12%)
+2019-01-31 11:30:00 1548934200.226001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1114141 total-bytes-write=52 payload-bytes-read=1114112/5242880 (21.25%)
+2019-01-31 11:30:00 1548934200.233298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1117627 total-bytes-write=52 payload-bytes-read=1117598/5242880 (21.32%)
+2019-01-31 11:30:00 1548934200.233674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1120615 total-bytes-write=52 payload-bytes-read=1120586/5242880 (21.37%)
+2019-01-31 11:30:00 1548934200.245100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1124101 total-bytes-write=52 payload-bytes-read=1124072/5242880 (21.44%)
+2019-01-31 11:30:00 1548934200.246472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1132019 total-bytes-write=52 payload-bytes-read=1131990/5242880 (21.59%)
+2019-01-31 11:30:00 1548934200.247233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1136003 total-bytes-write=52 payload-bytes-read=1135974/5242880 (21.67%)
+2019-01-31 11:30:00 1548934200.248239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1139987 total-bytes-write=52 payload-bytes-read=1139958/5242880 (21.74%)
+2019-01-31 11:30:00 1548934200.288412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1151889 total-bytes-write=52 payload-bytes-read=1151860/5242880 (21.97%)
+2019-01-31 11:30:00 1548934200.336450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1179677 total-bytes-write=52 payload-bytes-read=1179648/5242880 (22.50%)
+2019-01-31 11:30:00 1548934200.380482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1212445 total-bytes-write=52 payload-bytes-read=1212416/5242880 (23.12%)
+2019-01-31 11:30:00 1548934200.424407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1236299 total-bytes-write=52 payload-bytes-read=1236270/5242880 (23.58%)
+2019-01-31 11:30:00 1548934200.455835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1239287 total-bytes-write=52 payload-bytes-read=1239258/5242880 (23.64%)
+2019-01-31 11:30:00 1548934200.466965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1242773 total-bytes-write=52 payload-bytes-read=1242744/5242880 (23.70%)
+2019-01-31 11:30:00 1548934200.467909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1246707 total-bytes-write=52 payload-bytes-read=1246678/5242880 (23.78%)
+2019-01-31 11:30:00 1548934200.468540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1250691 total-bytes-write=52 payload-bytes-read=1250662/5242880 (23.85%)
+2019-01-31 11:30:00 1548934200.469115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1254675 total-bytes-write=52 payload-bytes-read=1254646/5242880 (23.93%)
+2019-01-31 11:30:00 1548934200.512445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1282961 total-bytes-write=52 payload-bytes-read=1282932/5242880 (24.47%)
+2019-01-31 11:30:00 1548934200.556384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1297851 total-bytes-write=52 payload-bytes-read=1297822/5242880 (24.75%)
+2019-01-31 11:30:00 1548934200.556502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1303827 total-bytes-write=52 payload-bytes-read=1303798/5242880 (24.87%)
+2019-01-31 11:30:00 1548934200.577259 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1307313 total-bytes-write=52 payload-bytes-read=1307284/5242880 (24.93%)
+2019-01-31 11:30:00 1548934200.599658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1308309 total-bytes-write=52 payload-bytes-read=1308280/5242880 (24.95%)
+2019-01-31 11:30:00 1548934200.600381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1309803 total-bytes-write=52 payload-bytes-read=1309774/5242880 (24.98%)
+2019-01-31 11:30:00 1548934200.646241 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1313239 total-bytes-write=52 payload-bytes-read=1313210/5242880 (25.05%)
+2019-01-31 11:30:00 1548934200.648028 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1320709 total-bytes-write=52 payload-bytes-read=1320680/5242880 (25.19%)
+2019-01-31 11:30:00 1548934200.659921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1328129 total-bytes-write=52 payload-bytes-read=1328100/5242880 (25.33%)
+2019-01-31 11:30:00 1548934200.660005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:30:00 1548934200.682032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1333607 total-bytes-write=52 payload-bytes-read=1333578/5242880 (25.44%)
+2019-01-31 11:30:00 1548934200.726918 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1337093 total-bytes-write=52 payload-bytes-read=1337064/5242880 (25.50%)
+2019-01-31 11:30:00 1548934200.768397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1353975 total-bytes-write=52 payload-bytes-read=1353946/5242880 (25.82%)
+2019-01-31 11:30:00 1548934200.814992 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1357461 total-bytes-write=52 payload-bytes-read=1357432/5242880 (25.89%)
+2019-01-31 11:30:00 1548934200.850800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1357959 total-bytes-write=52 payload-bytes-read=1357930/5242880 (25.90%)
+2019-01-31 11:30:00 1548934200.851473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1361395 total-bytes-write=52 payload-bytes-read=1361366/5242880 (25.97%)
+2019-01-31 11:30:00 1548934200.877802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1365379 total-bytes-write=52 payload-bytes-read=1365350/5242880 (26.04%)
+2019-01-31 11:30:00 1548934200.878803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1373347 total-bytes-write=52 payload-bytes-read=1373318/5242880 (26.19%)
+2019-01-31 11:30:00 1548934200.878880 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1376285 total-bytes-write=52 payload-bytes-read=1376256/5242880 (26.25%)
+2019-01-31 11:30:00 1548934200.898084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1379771 total-bytes-write=52 payload-bytes-read=1379742/5242880 (26.32%)
+2019-01-31 11:30:00 1548934200.920025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1383257 total-bytes-write=52 payload-bytes-read=1383228/5242880 (26.38%)
+2019-01-31 11:30:00 1548934200.964732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1383755 total-bytes-write=52 payload-bytes-read=1383726/5242880 (26.39%)
+2019-01-31 11:30:00 1548934200.965462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1387241 total-bytes-write=52 payload-bytes-read=1387212/5242880 (26.46%)
+2019-01-31 11:30:01 1548934201.008426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1408605 total-bytes-write=52 payload-bytes-read=1408576/5242880 (26.87%)
+2019-01-31 11:30:01 1548934201.052402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1416523 total-bytes-write=52 payload-bytes-read=1416494/5242880 (27.02%)
+2019-01-31 11:30:01 1548934201.053114 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1420507 total-bytes-write=52 payload-bytes-read=1420478/5242880 (27.09%)
+2019-01-31 11:30:01 1548934201.053475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1424989 total-bytes-write=52 payload-bytes-read=1424960/5242880 (27.18%)
+2019-01-31 11:30:01 1548934201.053655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1430417 total-bytes-write=52 payload-bytes-read=1430388/5242880 (27.28%)
+2019-01-31 11:30:01 1548934201.060296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1433903 total-bytes-write=52 payload-bytes-read=1433874/5242880 (27.35%)
+2019-01-31 11:30:01 1548934201.063085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1441821 total-bytes-write=52 payload-bytes-read=1441792/5242880 (27.50%)
+2019-01-31 11:30:01 1548934201.063169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1445805 total-bytes-write=52 payload-bytes-read=1445776/5242880 (27.58%)
+2019-01-31 11:30:01 1548934201.063608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1449291 total-bytes-write=52 payload-bytes-read=1449262/5242880 (27.64%)
+2019-01-31 11:30:01 1548934201.088604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1456761 total-bytes-write=52 payload-bytes-read=1456732/5242880 (27.78%)
+2019-01-31 11:30:01 1548934201.094609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1457259 total-bytes-write=52 payload-bytes-read=1457230/5242880 (27.79%)
+2019-01-31 11:30:01 1548934201.096075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1464679 total-bytes-write=52 payload-bytes-read=1464650/5242880 (27.94%)
+2019-01-31 11:30:01 1548934201.098056 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1472647 total-bytes-write=52 payload-bytes-read=1472618/5242880 (28.09%)
+2019-01-31 11:30:01 1548934201.098160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1476581 total-bytes-write=52 payload-bytes-read=1476552/5242880 (28.16%)
+2019-01-31 11:30:01 1548934201.122155 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1478075 total-bytes-write=52 payload-bytes-read=1478046/5242880 (28.19%)
+2019-01-31 11:30:01 1548934201.122798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1481561 total-bytes-write=52 payload-bytes-read=1481532/5242880 (28.26%)
+2019-01-31 11:30:01 1548934201.181150 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1482059 total-bytes-write=52 payload-bytes-read=1482030/5242880 (28.27%)
+2019-01-31 11:30:01 1548934201.183695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1483553 total-bytes-write=52 payload-bytes-read=1483524/5242880 (28.30%)
+2019-01-31 11:30:01 1548934201.239364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1490973 total-bytes-write=52 payload-bytes-read=1490944/5242880 (28.44%)
+2019-01-31 11:30:01 1548934201.239471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1494957 total-bytes-write=52 payload-bytes-read=1494928/5242880 (28.51%)
+2019-01-31 11:30:01 1548934201.247927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1497945 total-bytes-write=52 payload-bytes-read=1497916/5242880 (28.57%)
+2019-01-31 11:30:01 1548934201.258327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1505415 total-bytes-write=52 payload-bytes-read=1505386/5242880 (28.71%)
+2019-01-31 11:30:01 1548934201.332981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1506909 total-bytes-write=52 payload-bytes-read=1506880/5242880 (28.74%)
+2019-01-31 11:30:01 1548934201.334140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1510345 total-bytes-write=52 payload-bytes-read=1510316/5242880 (28.81%)
+2019-01-31 11:30:01 1548934201.345442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1511341 total-bytes-write=52 payload-bytes-read=1511312/5242880 (28.83%)
+2019-01-31 11:30:01 1548934201.346480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1514827 total-bytes-write=52 payload-bytes-read=1514798/5242880 (28.89%)
+2019-01-31 11:30:01 1548934201.355933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1516321 total-bytes-write=52 payload-bytes-read=1516292/5242880 (28.92%)
+2019-01-31 11:30:01 1548934201.357048 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1523741 total-bytes-write=52 payload-bytes-read=1523712/5242880 (29.06%)
+2019-01-31 11:30:01 1548934201.368222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1524239 total-bytes-write=52 payload-bytes-read=1524210/5242880 (29.07%)
+2019-01-31 11:30:01 1548934201.369633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1531709 total-bytes-write=52 payload-bytes-read=1531680/5242880 (29.21%)
+2019-01-31 11:30:01 1548934201.369807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1537685 total-bytes-write=52 payload-bytes-read=1537656/5242880 (29.33%)
+2019-01-31 11:30:01 1548934201.378441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1540125 total-bytes-write=52 payload-bytes-read=1540096/5242880 (29.38%)
+2019-01-31 11:30:01 1548934201.391487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1547595 total-bytes-write=52 payload-bytes-read=1547566/5242880 (29.52%)
+2019-01-31 11:30:01 1548934201.396247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1554567 total-bytes-write=52 payload-bytes-read=1554538/5242880 (29.65%)
+2019-01-31 11:30:01 1548934201.401360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1558003 total-bytes-write=52 payload-bytes-read=1557974/5242880 (29.72%)
+2019-01-31 11:30:01 1548934201.441218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1558501 total-bytes-write=52 payload-bytes-read=1558472/5242880 (29.73%)
+2019-01-31 11:30:01 1548934201.441852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1561987 total-bytes-write=52 payload-bytes-read=1561958/5242880 (29.79%)
+2019-01-31 11:30:01 1548934201.453238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1563481 total-bytes-write=52 payload-bytes-read=1563452/5242880 (29.82%)
+2019-01-31 11:30:01 1548934201.454765 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1566967 total-bytes-write=52 payload-bytes-read=1566938/5242880 (29.89%)
+2019-01-31 11:30:01 1548934201.457441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1574885 total-bytes-write=52 payload-bytes-read=1574856/5242880 (30.04%)
+2019-01-31 11:30:01 1548934201.457534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1579367 total-bytes-write=52 payload-bytes-read=1579338/5242880 (30.12%)
+2019-01-31 11:30:01 1548934201.457606 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1581857 total-bytes-write=52 payload-bytes-read=1581828/5242880 (30.17%)
+2019-01-31 11:30:01 1548934201.475749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1583849 total-bytes-write=52 payload-bytes-read=1583820/5242880 (30.21%)
+2019-01-31 11:30:01 1548934201.497300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1591269 total-bytes-write=52 payload-bytes-read=1591240/5242880 (30.35%)
+2019-01-31 11:30:01 1548934201.508682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1591767 total-bytes-write=52 payload-bytes-read=1591738/5242880 (30.36%)
+2019-01-31 11:30:01 1548934201.509987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1597245 total-bytes-write=52 payload-bytes-read=1597216/5242880 (30.46%)
+2019-01-31 11:30:01 1548934201.518488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1600731 total-bytes-write=52 payload-bytes-read=1600702/5242880 (30.53%)
+2019-01-31 11:30:01 1548934201.522815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1604715 total-bytes-write=52 payload-bytes-read=1604686/5242880 (30.61%)
+2019-01-31 11:30:01 1548934201.552443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1605213 total-bytes-write=52 payload-bytes-read=1605184/5242880 (30.62%)
+2019-01-31 11:30:01 1548934201.555335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1608649 total-bytes-write=52 payload-bytes-read=1608620/5242880 (30.68%)
+2019-01-31 11:30:01 1548934201.573543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1612135 total-bytes-write=52 payload-bytes-read=1612106/5242880 (30.75%)
+2019-01-31 11:30:01 1548934201.584007 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1613131 total-bytes-write=52 payload-bytes-read=1613102/5242880 (30.77%)
+2019-01-31 11:30:01 1548934201.585849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1616617 total-bytes-write=52 payload-bytes-read=1616588/5242880 (30.83%)
+2019-01-31 11:30:01 1548934201.593971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1624535 total-bytes-write=52 payload-bytes-read=1624506/5242880 (30.98%)
+2019-01-31 11:30:01 1548934201.594046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1627523 total-bytes-write=52 payload-bytes-read=1627494/5242880 (31.04%)
+2019-01-31 11:30:01 1548934201.596033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1631009 total-bytes-write=52 payload-bytes-read=1630980/5242880 (31.11%)
+2019-01-31 11:30:01 1548934201.642849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1635491 total-bytes-write=52 payload-bytes-read=1635462/5242880 (31.19%)
+2019-01-31 11:30:01 1548934201.660438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1639425 total-bytes-write=52 payload-bytes-read=1639396/5242880 (31.27%)
+2019-01-31 11:30:01 1548934201.663132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1647393 total-bytes-write=52 payload-bytes-read=1647364/5242880 (31.42%)
+2019-01-31 11:30:01 1548934201.668811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1651875 total-bytes-write=52 payload-bytes-read=1651846/5242880 (31.51%)
+2019-01-31 11:30:01 1548934201.668883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1654365 total-bytes-write=52 payload-bytes-read=1654336/5242880 (31.55%)
+2019-01-31 11:30:01 1548934201.693376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1657801 total-bytes-write=52 payload-bytes-read=1657772/5242880 (31.62%)
+2019-01-31 11:30:01 1548934201.702238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1661287 total-bytes-write=52 payload-bytes-read=1661258/5242880 (31.69%)
+2019-01-31 11:30:01 1548934201.764193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1665271 total-bytes-write=52 payload-bytes-read=1665242/5242880 (31.76%)
+2019-01-31 11:30:01 1548934201.764409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1673189 total-bytes-write=52 payload-bytes-read=1673160/5242880 (31.91%)
+2019-01-31 11:30:01 1548934201.774134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1674185 total-bytes-write=52 payload-bytes-read=1674156/5242880 (31.93%)
+2019-01-31 11:30:01 1548934201.775591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1677671 total-bytes-write=52 payload-bytes-read=1677642/5242880 (32.00%)
+2019-01-31 11:30:01 1548934201.827658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1678667 total-bytes-write=52 payload-bytes-read=1678638/5242880 (32.02%)
+2019-01-31 11:30:01 1548934201.827862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1682153 total-bytes-write=52 payload-bytes-read=1682124/5242880 (32.08%)
+2019-01-31 11:30:01 1548934201.866646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1683647 total-bytes-write=52 payload-bytes-read=1683618/5242880 (32.11%)
+2019-01-31 11:30:01 1548934201.867016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1687133 total-bytes-write=52 payload-bytes-read=1687104/5242880 (32.18%)
+2019-01-31 11:30:01 1548934201.867718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1691067 total-bytes-write=52 payload-bytes-read=1691038/5242880 (32.25%)
+2019-01-31 11:30:01 1548934201.869780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1699035 total-bytes-write=52 payload-bytes-read=1699006/5242880 (32.41%)
+2019-01-31 11:30:01 1548934201.878150 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1700031 total-bytes-write=52 payload-bytes-read=1700002/5242880 (32.42%)
+2019-01-31 11:30:01 1548934201.879415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1703517 total-bytes-write=52 payload-bytes-read=1703488/5242880 (32.49%)
+2019-01-31 11:30:01 1548934201.929980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1704463 total-bytes-write=52 payload-bytes-read=1704434/5242880 (32.51%)
+2019-01-31 11:30:01 1548934201.930390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1706455 total-bytes-write=52 payload-bytes-read=1706426/5242880 (32.55%)
+2019-01-31 11:30:01 1548934201.942833 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1713925 total-bytes-write=52 payload-bytes-read=1713896/5242880 (32.69%)
+2019-01-31 11:30:01 1548934201.952706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1714921 total-bytes-write=52 payload-bytes-read=1714892/5242880 (32.71%)
+2019-01-31 11:30:01 1548934201.955267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1718407 total-bytes-write=52 payload-bytes-read=1718378/5242880 (32.78%)
+2019-01-31 11:30:01 1548934201.958040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1722341 total-bytes-write=52 payload-bytes-read=1722312/5242880 (32.85%)
+2019-01-31 11:30:01 1548934201.963664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1726325 total-bytes-write=52 payload-bytes-read=1726296/5242880 (32.93%)
+2019-01-31 11:30:01 1548934201.972152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1730807 total-bytes-write=52 payload-bytes-read=1730778/5242880 (33.01%)
+2019-01-31 11:30:01 1548934201.972313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1737231 total-bytes-write=52 payload-bytes-read=1737202/5242880 (33.13%)
+2019-01-31 11:30:01 1548934201.972622 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1745199 total-bytes-write=52 payload-bytes-read=1745170/5242880 (33.29%)
+2019-01-31 11:30:01 1548934201.977363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1749681 total-bytes-write=52 payload-bytes-read=1749652/5242880 (33.37%)
+2019-01-31 11:30:02 1548934202.005815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1753615 total-bytes-write=52 payload-bytes-read=1753586/5242880 (33.45%)
+2019-01-31 11:30:02 1548934202.031651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1754611 total-bytes-write=52 payload-bytes-read=1754582/5242880 (33.47%)
+2019-01-31 11:30:02 1548934202.032340 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1758097 total-bytes-write=52 payload-bytes-read=1758068/5242880 (33.53%)
+2019-01-31 11:30:02 1548934202.033853 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1762081 total-bytes-write=52 payload-bytes-read=1762052/5242880 (33.61%)
+2019-01-31 11:30:02 1548934202.037878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1763575 total-bytes-write=52 payload-bytes-read=1763546/5242880 (33.64%)
+2019-01-31 11:30:02 1548934202.043924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1767061 total-bytes-write=52 payload-bytes-read=1767032/5242880 (33.70%)
+2019-01-31 11:30:02 1548934202.045069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1770995 total-bytes-write=52 payload-bytes-read=1770966/5242880 (33.78%)
+2019-01-31 11:30:02 1548934202.046233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1778963 total-bytes-write=52 payload-bytes-read=1778934/5242880 (33.93%)
+2019-01-31 11:30:02 1548934202.066576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1779461 total-bytes-write=52 payload-bytes-read=1779432/5242880 (33.94%)
+2019-01-31 11:30:02 1548934202.067552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1785437 total-bytes-write=52 payload-bytes-read=1785408/5242880 (34.05%)
+2019-01-31 11:30:02 1548934202.077337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1788873 total-bytes-write=52 payload-bytes-read=1788844/5242880 (34.12%)
+2019-01-31 11:30:02 1548934202.078964 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1792857 total-bytes-write=52 payload-bytes-read=1792828/5242880 (34.20%)
+2019-01-31 11:30:02 1548934202.088961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1793853 total-bytes-write=52 payload-bytes-read=1793824/5242880 (34.21%)
+2019-01-31 11:30:02 1548934202.090690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1797339 total-bytes-write=52 payload-bytes-read=1797310/5242880 (34.28%)
+2019-01-31 11:30:02 1548934202.100695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1797837 total-bytes-write=52 payload-bytes-read=1797808/5242880 (34.29%)
+2019-01-31 11:30:02 1548934202.103660 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1805257 total-bytes-write=52 payload-bytes-read=1805228/5242880 (34.43%)
+2019-01-31 11:30:02 1548934202.144909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1808743 total-bytes-write=52 payload-bytes-read=1808714/5242880 (34.50%)
+2019-01-31 11:30:02 1548934202.256977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1809739 total-bytes-write=52 payload-bytes-read=1809710/5242880 (34.52%)
+2019-01-31 11:30:02 1548934202.257254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1811731 total-bytes-write=52 payload-bytes-read=1811702/5242880 (34.56%)
+2019-01-31 11:30:02 1548934202.269581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1819151 total-bytes-write=52 payload-bytes-read=1819122/5242880 (34.70%)
+2019-01-31 11:30:02 1548934202.270691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1822139 total-bytes-write=52 payload-bytes-read=1822110/5242880 (34.75%)
+2019-01-31 11:30:02 1548934202.278343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1825625 total-bytes-write=52 payload-bytes-read=1825596/5242880 (34.82%)
+2019-01-31 11:30:02 1548934202.279506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1829609 total-bytes-write=52 payload-bytes-read=1829580/5242880 (34.90%)
+2019-01-31 11:30:02 1548934202.279683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1833593 total-bytes-write=52 payload-bytes-read=1833564/5242880 (34.97%)
+2019-01-31 11:30:02 1548934202.320429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1858393 total-bytes-write=52 payload-bytes-read=1858364/5242880 (35.45%)
+2019-01-31 11:30:02 1548934202.364411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1861381 total-bytes-write=52 payload-bytes-read=1861352/5242880 (35.50%)
+2019-01-31 11:30:02 1548934202.449431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1868801 total-bytes-write=52 payload-bytes-read=1868772/5242880 (35.64%)
+2019-01-31 11:30:02 1548934202.451469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1872785 total-bytes-write=52 payload-bytes-read=1872756/5242880 (35.72%)
+2019-01-31 11:30:02 1548934202.477066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1880255 total-bytes-write=52 payload-bytes-read=1880226/5242880 (35.86%)
+2019-01-31 11:30:02 1548934202.477164 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1884189 total-bytes-write=52 payload-bytes-read=1884160/5242880 (35.94%)
+2019-01-31 11:30:02 1548934202.484796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1887675 total-bytes-write=52 payload-bytes-read=1887646/5242880 (36.00%)
+2019-01-31 11:30:02 1548934202.493574 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1888173 total-bytes-write=52 payload-bytes-read=1888144/5242880 (36.01%)
+2019-01-31 11:30:02 1548934202.495247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1895643 total-bytes-write=52 payload-bytes-read=1895614/5242880 (36.16%)
+2019-01-31 11:30:02 1548934202.495737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1898631 total-bytes-write=52 payload-bytes-read=1898602/5242880 (36.21%)
+2019-01-31 11:30:02 1548934202.505892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1902067 total-bytes-write=52 payload-bytes-read=1902038/5242880 (36.28%)
+2019-01-31 11:30:02 1548934202.506716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1906051 total-bytes-write=52 payload-bytes-read=1906022/5242880 (36.35%)
+2019-01-31 11:30:02 1548934202.508019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1914019 total-bytes-write=52 payload-bytes-read=1913990/5242880 (36.51%)
+2019-01-31 11:30:02 1548934202.514827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1917953 total-bytes-write=52 payload-bytes-read=1917924/5242880 (36.58%)
+2019-01-31 11:30:02 1548934202.516634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1925921 total-bytes-write=52 payload-bytes-read=1925892/5242880 (36.73%)
+2019-01-31 11:30:02 1548934202.516725 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1930403 total-bytes-write=52 payload-bytes-read=1930374/5242880 (36.82%)
+2019-01-31 11:30:02 1548934202.517417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1936329 total-bytes-write=52 payload-bytes-read=1936300/5242880 (36.93%)
+2019-01-31 11:30:02 1548934202.526931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1939815 total-bytes-write=52 payload-bytes-read=1939786/5242880 (37.00%)
+2019-01-31 11:30:02 1548934202.527724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1943799 total-bytes-write=52 payload-bytes-read=1943770/5242880 (37.07%)
+2019-01-31 11:30:02 1548934202.528816 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1947783 total-bytes-write=52 payload-bytes-read=1947754/5242880 (37.15%)
+2019-01-31 11:30:02 1548934202.572395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1954705 total-bytes-write=52 payload-bytes-read=1954676/5242880 (37.28%)
+2019-01-31 11:30:02 1548934202.616446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=1997931 total-bytes-write=52 payload-bytes-read=1997902/5242880 (38.11%)
+2019-01-31 11:30:02 1548934202.660378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2007841 total-bytes-write=52 payload-bytes-read=2007812/5242880 (38.30%)
+2019-01-31 11:30:02 1548934202.660854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2011825 total-bytes-write=52 payload-bytes-read=2011796/5242880 (38.37%)
+2019-01-31 11:30:02 1548934202.669120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2015261 total-bytes-write=52 payload-bytes-read=2015232/5242880 (38.44%)
+2019-01-31 11:30:02 1548934202.669551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2017253 total-bytes-write=52 payload-bytes-read=2017224/5242880 (38.48%)
+2019-01-31 11:30:02 1548934202.681701 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2020739 total-bytes-write=52 payload-bytes-read=2020710/5242880 (38.54%)
+2019-01-31 11:30:02 1548934202.690742 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2021237 total-bytes-write=52 payload-bytes-read=2021208/5242880 (38.55%)
+2019-01-31 11:30:02 1548934202.691315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2024723 total-bytes-write=52 payload-bytes-read=2024694/5242880 (38.62%)
+2019-01-31 11:30:02 1548934202.701710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2028209 total-bytes-write=52 payload-bytes-read=2028180/5242880 (38.68%)
+2019-01-31 11:30:02 1548934202.744376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2032143 total-bytes-write=52 payload-bytes-read=2032114/5242880 (38.76%)
+2019-01-31 11:30:02 1548934202.788347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2033139 total-bytes-write=52 payload-bytes-read=2033110/5242880 (38.78%)
+2019-01-31 11:30:02 1548934202.816548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2035131 total-bytes-write=52 payload-bytes-read=2035102/5242880 (38.82%)
+2019-01-31 11:30:02 1548934202.828581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2038617 total-bytes-write=52 payload-bytes-read=2038588/5242880 (38.88%)
+2019-01-31 11:30:02 1548934202.829279 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2042601 total-bytes-write=52 payload-bytes-read=2042572/5242880 (38.96%)
+2019-01-31 11:30:02 1548934202.872407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2055499 total-bytes-write=52 payload-bytes-read=2055470/5242880 (39.20%)
+2019-01-31 11:30:02 1548934202.916402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2073875 total-bytes-write=52 payload-bytes-read=2073846/5242880 (39.56%)
+2019-01-31 11:30:02 1548934202.964374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2080349 total-bytes-write=52 payload-bytes-read=2080320/5242880 (39.68%)
+2019-01-31 11:30:03 1548934203.026905 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2083785 total-bytes-write=52 payload-bytes-read=2083756/5242880 (39.74%)
+2019-01-31 11:30:03 1548934203.053884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2091255 total-bytes-write=52 payload-bytes-read=2091226/5242880 (39.89%)
+2019-01-31 11:30:03 1548934203.055005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2099173 total-bytes-write=52 payload-bytes-read=2099144/5242880 (40.04%)
+2019-01-31 11:30:03 1548934203.088412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2100667 total-bytes-write=52 payload-bytes-read=2100638/5242880 (40.07%)
+2019-01-31 11:30:03 1548934203.092281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2104153 total-bytes-write=52 payload-bytes-read=2104124/5242880 (40.13%)
+2019-01-31 11:30:03 1548934203.146108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2107639 total-bytes-write=52 payload-bytes-read=2107610/5242880 (40.20%)
+2019-01-31 11:30:03 1548934203.188357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2109631 total-bytes-write=52 payload-bytes-read=2109602/5242880 (40.24%)
+2019-01-31 11:30:03 1548934203.215466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2113117 total-bytes-write=52 payload-bytes-read=2113088/5242880 (40.30%)
+2019-01-31 11:30:03 1548934203.256393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2135925 total-bytes-write=52 payload-bytes-read=2135896/5242880 (40.74%)
+2019-01-31 11:30:03 1548934203.297194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2203453 total-bytes-write=52 payload-bytes-read=2203424/5242880 (42.03%)
+2019-01-31 11:30:03 1548934203.301332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2206939 total-bytes-write=52 payload-bytes-read=2206910/5242880 (42.09%)
+2019-01-31 11:30:03 1548934203.302195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2209927 total-bytes-write=52 payload-bytes-read=2209898/5242880 (42.15%)
+2019-01-31 11:30:03 1548934203.313788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2213363 total-bytes-write=52 payload-bytes-read=2213334/5242880 (42.22%)
+2019-01-31 11:30:03 1548934203.323791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2214857 total-bytes-write=52 payload-bytes-read=2214828/5242880 (42.24%)
+2019-01-31 11:30:03 1548934203.325143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2218343 total-bytes-write=52 payload-bytes-read=2218314/5242880 (42.31%)
+2019-01-31 11:30:03 1548934203.325765 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2222327 total-bytes-write=52 payload-bytes-read=2222298/5242880 (42.39%)
+2019-01-31 11:30:03 1548934203.326527 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2225813 total-bytes-write=52 payload-bytes-read=2225784/5242880 (42.45%)
+2019-01-31 11:30:03 1548934203.358815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2233233 total-bytes-write=52 payload-bytes-read=2233204/5242880 (42.59%)
+2019-01-31 11:30:03 1548934203.369615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2233731 total-bytes-write=52 payload-bytes-read=2233702/5242880 (42.60%)
+2019-01-31 11:30:03 1548934203.371137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2237217 total-bytes-write=52 payload-bytes-read=2237188/5242880 (42.67%)
+2019-01-31 11:30:03 1548934203.371547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2244637 total-bytes-write=52 payload-bytes-read=2244608/5242880 (42.81%)
+2019-01-31 11:30:03 1548934203.381464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2246131 total-bytes-write=52 payload-bytes-read=2246102/5242880 (42.84%)
+2019-01-31 11:30:03 1548934203.402444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2249119 total-bytes-write=52 payload-bytes-read=2249090/5242880 (42.90%)
+2019-01-31 11:30:03 1548934203.447375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2255593 total-bytes-write=52 payload-bytes-read=2255564/5242880 (43.02%)
+2019-01-31 11:30:03 1548934203.457072 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2259079 total-bytes-write=52 payload-bytes-read=2259050/5242880 (43.09%)
+2019-01-31 11:30:03 1548934203.457682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2263013 total-bytes-write=52 payload-bytes-read=2262984/5242880 (43.16%)
+2019-01-31 11:30:03 1548934203.471021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2267993 total-bytes-write=52 payload-bytes-read=2267964/5242880 (43.26%)
+2019-01-31 11:30:03 1548934203.513381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2268491 total-bytes-write=52 payload-bytes-read=2268462/5242880 (43.27%)
+2019-01-31 11:30:03 1548934203.513892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2271977 total-bytes-write=52 payload-bytes-read=2271948/5242880 (43.33%)
+2019-01-31 11:30:03 1548934203.559788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2275463 total-bytes-write=52 payload-bytes-read=2275434/5242880 (43.40%)
+2019-01-31 11:30:03 1548934203.600390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:30:03 1548934203.644389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2302255 total-bytes-write=52 payload-bytes-read=2302226/5242880 (43.91%)
+2019-01-31 11:30:03 1548934203.688388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2311667 total-bytes-write=52 payload-bytes-read=2311638/5242880 (44.09%)
+2019-01-31 11:30:03 1548934203.697791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2315153 total-bytes-write=52 payload-bytes-read=2315124/5242880 (44.16%)
+2019-01-31 11:30:03 1548934203.698211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2317145 total-bytes-write=52 payload-bytes-read=2317116/5242880 (44.20%)
+2019-01-31 11:30:03 1548934203.709935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2320631 total-bytes-write=52 payload-bytes-read=2320602/5242880 (44.26%)
+2019-01-31 11:30:03 1548934203.712703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2328549 total-bytes-write=52 payload-bytes-read=2328520/5242880 (44.41%)
+2019-01-31 11:30:03 1548934203.797106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2329545 total-bytes-write=52 payload-bytes-read=2329516/5242880 (44.43%)
+2019-01-31 11:30:03 1548934203.812780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2332533 total-bytes-write=52 payload-bytes-read=2332504/5242880 (44.49%)
+2019-01-31 11:30:03 1548934203.824498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2336019 total-bytes-write=52 payload-bytes-read=2335990/5242880 (44.56%)
+2019-01-31 11:30:03 1548934203.825961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2340003 total-bytes-write=52 payload-bytes-read=2339974/5242880 (44.63%)
+2019-01-31 11:30:03 1548934203.827213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2347921 total-bytes-write=52 payload-bytes-read=2347892/5242880 (44.78%)
+2019-01-31 11:30:03 1548934203.869686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2350411 total-bytes-write=52 payload-bytes-read=2350382/5242880 (44.83%)
+2019-01-31 11:30:03 1548934203.883410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2357881 total-bytes-write=52 payload-bytes-read=2357852/5242880 (44.97%)
+2019-01-31 11:30:03 1548934203.883662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2361815 total-bytes-write=52 payload-bytes-read=2361786/5242880 (45.05%)
+2019-01-31 11:30:03 1548934203.901139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2365301 total-bytes-write=52 payload-bytes-read=2365272/5242880 (45.11%)
+2019-01-31 11:30:03 1548934203.901867 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2369285 total-bytes-write=52 payload-bytes-read=2369256/5242880 (45.19%)
+2019-01-31 11:30:03 1548934203.913092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2372771 total-bytes-write=52 payload-bytes-read=2372742/5242880 (45.26%)
+2019-01-31 11:30:03 1548934203.914083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2376705 total-bytes-write=52 payload-bytes-read=2376676/5242880 (45.33%)
+2019-01-31 11:30:03 1548934203.915139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2384673 total-bytes-write=52 payload-bytes-read=2384644/5242880 (45.48%)
+2019-01-31 11:30:03 1548934203.923139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2388159 total-bytes-write=52 payload-bytes-read=2388130/5242880 (45.55%)
+2019-01-31 11:30:03 1548934203.924083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2392093 total-bytes-write=52 payload-bytes-read=2392064/5242880 (45.62%)
+2019-01-31 11:30:03 1548934203.933366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2392591 total-bytes-write=52 payload-bytes-read=2392562/5242880 (45.63%)
+2019-01-31 11:30:03 1548934203.934377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2396077 total-bytes-write=52 payload-bytes-read=2396048/5242880 (45.70%)
+2019-01-31 11:30:03 1548934203.934718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2400061 total-bytes-write=52 payload-bytes-read=2400032/5242880 (45.78%)
+2019-01-31 11:30:03 1548934203.936687 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2408029 total-bytes-write=52 payload-bytes-read=2408000/5242880 (45.93%)
+2019-01-31 11:30:03 1548934203.947451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2408975 total-bytes-write=52 payload-bytes-read=2408946/5242880 (45.95%)
+2019-01-31 11:30:03 1548934203.947559 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2412461 total-bytes-write=52 payload-bytes-read=2412432/5242880 (46.01%)
+2019-01-31 11:30:03 1548934203.949158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2420429 total-bytes-write=52 payload-bytes-read=2420400/5242880 (46.17%)
+2019-01-31 11:30:03 1548934203.949263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2424413 total-bytes-write=52 payload-bytes-read=2424384/5242880 (46.24%)
+2019-01-31 11:30:03 1548934203.949695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2424861 total-bytes-write=52 payload-bytes-read=2424832/5242880 (46.25%)
+2019-01-31 11:30:03 1548934203.950189 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2428347 total-bytes-write=52 payload-bytes-read=2428318/5242880 (46.32%)
+2019-01-31 11:30:03 1548934203.957814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2428845 total-bytes-write=52 payload-bytes-read=2428816/5242880 (46.33%)
+2019-01-31 11:30:03 1548934203.958484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2432331 total-bytes-write=52 payload-bytes-read=2432302/5242880 (46.39%)
+2019-01-31 11:30:03 1548934203.959225 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2435817 total-bytes-write=52 payload-bytes-read=2435788/5242880 (46.46%)
+2019-01-31 11:30:04 1548934204.000374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2447221 total-bytes-write=52 payload-bytes-read=2447192/5242880 (46.68%)
+2019-01-31 11:30:04 1548934204.044430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2450209 total-bytes-write=52 payload-bytes-read=2450180/5242880 (46.73%)
+2019-01-31 11:30:04 1548934204.048784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2453695 total-bytes-write=52 payload-bytes-read=2453666/5242880 (46.80%)
+2019-01-31 11:30:04 1548934204.067587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2457181 total-bytes-write=52 payload-bytes-read=2457152/5242880 (46.87%)
+2019-01-31 11:30:04 1548934204.108397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2472071 total-bytes-write=52 payload-bytes-read=2472042/5242880 (47.15%)
+2019-01-31 11:30:04 1548934204.152400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2476005 total-bytes-write=52 payload-bytes-read=2475976/5242880 (47.23%)
+2019-01-31 11:30:04 1548934204.158278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2476503 total-bytes-write=52 payload-bytes-read=2476474/5242880 (47.23%)
+2019-01-31 11:30:04 1548934204.158784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2479989 total-bytes-write=52 payload-bytes-read=2479960/5242880 (47.30%)
+2019-01-31 11:30:04 1548934204.227667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2480487 total-bytes-write=52 payload-bytes-read=2480458/5242880 (47.31%)
+2019-01-31 11:30:04 1548934204.228267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2481981 total-bytes-write=52 payload-bytes-read=2481952/5242880 (47.34%)
+2019-01-31 11:30:04 1548934204.248345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:30:04 1548934204.250289 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2493385 total-bytes-write=52 payload-bytes-read=2493356/5242880 (47.56%)
+2019-01-31 11:30:04 1548934204.250419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2496871 total-bytes-write=52 payload-bytes-read=2496842/5242880 (47.62%)
+2019-01-31 11:30:04 1548934204.261046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2504341 total-bytes-write=52 payload-bytes-read=2504312/5242880 (47.77%)
+2019-01-31 11:30:04 1548934204.261957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2510765 total-bytes-write=52 payload-bytes-read=2510736/5242880 (47.89%)
+2019-01-31 11:30:04 1548934204.269405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2514251 total-bytes-write=52 payload-bytes-read=2514222/5242880 (47.95%)
+2019-01-31 11:30:04 1548934204.269978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2517239 total-bytes-write=52 payload-bytes-read=2517210/5242880 (48.01%)
+2019-01-31 11:30:04 1548934204.305856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2520725 total-bytes-write=52 payload-bytes-read=2520696/5242880 (48.08%)
+2019-01-31 11:30:04 1548934204.306390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2524659 total-bytes-write=52 payload-bytes-read=2524630/5242880 (48.15%)
+2019-01-31 11:30:04 1548934204.317083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2525655 total-bytes-write=52 payload-bytes-read=2525626/5242880 (48.17%)
+2019-01-31 11:30:04 1548934204.317625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:30:04 1548934204.371327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2531631 total-bytes-write=52 payload-bytes-read=2531602/5242880 (48.29%)
+2019-01-31 11:30:04 1548934204.513681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2535117 total-bytes-write=52 payload-bytes-read=2535088/5242880 (48.35%)
+2019-01-31 11:30:04 1548934204.523649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2536113 total-bytes-write=52 payload-bytes-read=2536084/5242880 (48.37%)
+2019-01-31 11:30:04 1548934204.523922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2539549 total-bytes-write=52 payload-bytes-read=2539520/5242880 (48.44%)
+2019-01-31 11:30:04 1548934204.525490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2543533 total-bytes-write=52 payload-bytes-read=2543504/5242880 (48.51%)
+2019-01-31 11:30:04 1548934204.526965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2547019 total-bytes-write=52 payload-bytes-read=2546990/5242880 (48.58%)
+2019-01-31 11:30:04 1548934204.527633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2548015 total-bytes-write=52 payload-bytes-read=2547986/5242880 (48.60%)
+2019-01-31 11:30:04 1548934204.528735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2551003 total-bytes-write=52 payload-bytes-read=2550974/5242880 (48.66%)
+2019-01-31 11:30:04 1548934204.533916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2554489 total-bytes-write=52 payload-bytes-read=2554460/5242880 (48.72%)
+2019-01-31 11:30:04 1548934204.536160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2558423 total-bytes-write=52 payload-bytes-read=2558394/5242880 (48.80%)
+2019-01-31 11:30:04 1548934204.537474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2562407 total-bytes-write=52 payload-bytes-read=2562378/5242880 (48.87%)
+2019-01-31 11:30:04 1548934204.538389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2564399 total-bytes-write=52 payload-bytes-read=2564370/5242880 (48.91%)
+2019-01-31 11:30:04 1548934204.546620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2567885 total-bytes-write=52 payload-bytes-read=2567856/5242880 (48.98%)
+2019-01-31 11:30:04 1548934204.548115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2571869 total-bytes-write=52 payload-bytes-read=2571840/5242880 (49.05%)
+2019-01-31 11:30:04 1548934204.549368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2574807 total-bytes-write=52 payload-bytes-read=2574778/5242880 (49.11%)
+2019-01-31 11:30:04 1548934204.562392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2582277 total-bytes-write=52 payload-bytes-read=2582248/5242880 (49.25%)
+2019-01-31 11:30:04 1548934204.563394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2586261 total-bytes-write=52 payload-bytes-read=2586232/5242880 (49.33%)
+2019-01-31 11:30:04 1548934204.564463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2590195 total-bytes-write=52 payload-bytes-read=2590166/5242880 (49.40%)
+2019-01-31 11:30:04 1548934204.565142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2590693 total-bytes-write=52 payload-bytes-read=2590664/5242880 (49.41%)
+2019-01-31 11:30:04 1548934204.566218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2594179 total-bytes-write=52 payload-bytes-read=2594150/5242880 (49.48%)
+2019-01-31 11:30:04 1548934204.567417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2596171 total-bytes-write=52 payload-bytes-read=2596142/5242880 (49.52%)
+2019-01-31 11:30:04 1548934204.571453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2599657 total-bytes-write=52 payload-bytes-read=2599628/5242880 (49.58%)
+2019-01-31 11:30:04 1548934204.572317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2603641 total-bytes-write=52 payload-bytes-read=2603612/5242880 (49.66%)
+2019-01-31 11:30:04 1548934204.574247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2607575 total-bytes-write=52 payload-bytes-read=2607546/5242880 (49.73%)
+2019-01-31 11:30:04 1548934204.574600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2611559 total-bytes-write=52 payload-bytes-read=2611530/5242880 (49.81%)
+2019-01-31 11:30:04 1548934204.574814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2612057 total-bytes-write=52 payload-bytes-read=2612028/5242880 (49.82%)
+2019-01-31 11:30:04 1548934204.575608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2614049 total-bytes-write=52 payload-bytes-read=2614020/5242880 (49.86%)
+2019-01-31 11:30:04 1548934204.582349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2617535 total-bytes-write=52 payload-bytes-read=2617506/5242880 (49.92%)
+2019-01-31 11:30:04 1548934204.583333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2621469 total-bytes-write=52 payload-bytes-read=2621440/5242880 (50.00%)
+2019-01-31 11:30:04 1548934204.587775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2624955 total-bytes-write=52 payload-bytes-read=2624926/5242880 (50.07%)
+2019-01-31 11:30:04 1548934204.665336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2628441 total-bytes-write=52 payload-bytes-read=2628412/5242880 (50.13%)
+2019-01-31 11:30:04 1548934204.708458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2656727 total-bytes-write=52 payload-bytes-read=2656698/5242880 (50.67%)
+2019-01-31 11:30:04 1548934204.752506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2698957 total-bytes-write=52 payload-bytes-read=2698928/5242880 (51.48%)
+2019-01-31 11:30:04 1548934204.796358 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2702443 total-bytes-write=52 payload-bytes-read=2702414/5242880 (51.54%)
+2019-01-31 11:30:04 1548934204.815459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2702941 total-bytes-write=52 payload-bytes-read=2702912/5242880 (51.55%)
+2019-01-31 11:30:04 1548934204.827538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:30:04 1548934204.838740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2708867 total-bytes-write=52 payload-bytes-read=2708838/5242880 (51.67%)
+2019-01-31 11:30:04 1548934204.840965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2716835 total-bytes-write=52 payload-bytes-read=2716806/5242880 (51.82%)
+2019-01-31 11:30:04 1548934204.852093 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2717831 total-bytes-write=52 payload-bytes-read=2717802/5242880 (51.84%)
+2019-01-31 11:30:04 1548934204.852633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2721267 total-bytes-write=52 payload-bytes-read=2721238/5242880 (51.90%)
+2019-01-31 11:30:04 1548934204.862627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2724255 total-bytes-write=52 payload-bytes-read=2724226/5242880 (51.96%)
+2019-01-31 11:30:04 1548934204.933999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2727741 total-bytes-write=52 payload-bytes-read=2727712/5242880 (52.03%)
+2019-01-31 11:30:04 1548934204.979221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2728239 total-bytes-write=52 payload-bytes-read=2728210/5242880 (52.04%)
+2019-01-31 11:30:04 1548934204.979838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2731725 total-bytes-write=52 payload-bytes-read=2731696/5242880 (52.10%)
+2019-01-31 11:30:04 1548934204.980542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2735709 total-bytes-write=52 payload-bytes-read=2735680/5242880 (52.18%)
+2019-01-31 11:30:04 1548934204.981368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2741635 total-bytes-write=52 payload-bytes-read=2741606/5242880 (52.29%)
+2019-01-31 11:30:04 1548934204.987266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2745121 total-bytes-write=52 payload-bytes-read=2745092/5242880 (52.36%)
+2019-01-31 11:30:05 1548934205.050485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2746117 total-bytes-write=52 payload-bytes-read=2746088/5242880 (52.38%)
+2019-01-31 11:30:05 1548934205.050898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2749603 total-bytes-write=52 payload-bytes-read=2749574/5242880 (52.44%)
+2019-01-31 11:30:05 1548934205.066974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2753039 total-bytes-write=52 payload-bytes-read=2753010/5242880 (52.51%)
+2019-01-31 11:30:05 1548934205.076158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2755031 total-bytes-write=52 payload-bytes-read=2755002/5242880 (52.55%)
+2019-01-31 11:30:05 1548934205.086439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2762501 total-bytes-write=52 payload-bytes-read=2762472/5242880 (52.69%)
+2019-01-31 11:30:05 1548934205.087479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2766485 total-bytes-write=52 payload-bytes-read=2766456/5242880 (52.77%)
+2019-01-31 11:30:05 1548934205.088734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2770419 total-bytes-write=52 payload-bytes-read=2770390/5242880 (52.84%)
+2019-01-31 11:30:05 1548934205.098581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2774403 total-bytes-write=52 payload-bytes-read=2774374/5242880 (52.92%)
+2019-01-31 11:30:05 1548934205.152318 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2777889 total-bytes-write=52 payload-bytes-read=2777860/5242880 (52.98%)
+2019-01-31 11:30:05 1548934205.201137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2778387 total-bytes-write=52 payload-bytes-read=2778358/5242880 (52.99%)
+2019-01-31 11:30:05 1548934205.201705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2781873 total-bytes-write=52 payload-bytes-read=2781844/5242880 (53.06%)
+2019-01-31 11:30:05 1548934205.218577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2786803 total-bytes-write=52 payload-bytes-read=2786774/5242880 (53.15%)
+2019-01-31 11:30:05 1548934205.218852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2794273 total-bytes-write=52 payload-bytes-read=2794244/5242880 (53.30%)
+2019-01-31 11:30:05 1548934205.234518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2797759 total-bytes-write=52 payload-bytes-read=2797730/5242880 (53.36%)
+2019-01-31 11:30:05 1548934205.235001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2801693 total-bytes-write=52 payload-bytes-read=2801664/5242880 (53.44%)
+2019-01-31 11:30:05 1548934205.237505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2805677 total-bytes-write=52 payload-bytes-read=2805648/5242880 (53.51%)
+2019-01-31 11:30:05 1548934205.246439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2809163 total-bytes-write=52 payload-bytes-read=2809134/5242880 (53.58%)
+2019-01-31 11:30:05 1548934205.248051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2813147 total-bytes-write=52 payload-bytes-read=2813118/5242880 (53.66%)
+2019-01-31 11:30:05 1548934205.249409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2821065 total-bytes-write=52 payload-bytes-read=2821036/5242880 (53.81%)
+2019-01-31 11:30:05 1548934205.249571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2825049 total-bytes-write=52 payload-bytes-read=2825020/5242880 (53.88%)
+2019-01-31 11:30:05 1548934205.267459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2832519 total-bytes-write=52 payload-bytes-read=2832490/5242880 (54.03%)
+2019-01-31 11:30:05 1548934205.267566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2835457 total-bytes-write=52 payload-bytes-read=2835428/5242880 (54.08%)
+2019-01-31 11:30:05 1548934205.274334 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2838943 total-bytes-write=52 payload-bytes-read=2838914/5242880 (54.15%)
+2019-01-31 11:30:05 1548934205.275070 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2844919 total-bytes-write=52 payload-bytes-read=2844890/5242880 (54.26%)
+2019-01-31 11:30:05 1548934205.280829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2848405 total-bytes-write=52 payload-bytes-read=2848376/5242880 (54.33%)
+2019-01-31 11:30:05 1548934205.326760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2849401 total-bytes-write=52 payload-bytes-read=2849372/5242880 (54.35%)
+2019-01-31 11:30:05 1548934205.327489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2852837 total-bytes-write=52 payload-bytes-read=2852808/5242880 (54.41%)
+2019-01-31 11:30:05 1548934205.352120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2860307 total-bytes-write=52 payload-bytes-read=2860278/5242880 (54.56%)
+2019-01-31 11:30:05 1548934205.352234 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2864291 total-bytes-write=52 payload-bytes-read=2864262/5242880 (54.63%)
+2019-01-31 11:30:05 1548934205.359177 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2865785 total-bytes-write=52 payload-bytes-read=2865756/5242880 (54.66%)
+2019-01-31 11:30:05 1548934205.360462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2869221 total-bytes-write=52 payload-bytes-read=2869192/5242880 (54.73%)
+2019-01-31 11:30:05 1548934205.363743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2877189 total-bytes-write=52 payload-bytes-read=2877160/5242880 (54.88%)
+2019-01-31 11:30:05 1548934205.364045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2881671 total-bytes-write=52 payload-bytes-read=2881642/5242880 (54.96%)
+2019-01-31 11:30:05 1548934205.364169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2885107 total-bytes-write=52 payload-bytes-read=2885078/5242880 (55.03%)
+2019-01-31 11:30:05 1548934205.364922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2893075 total-bytes-write=52 payload-bytes-read=2893046/5242880 (55.18%)
+2019-01-31 11:30:05 1548934205.366056 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2896561 total-bytes-write=52 payload-bytes-read=2896532/5242880 (55.25%)
+2019-01-31 11:30:05 1548934205.433444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2897557 total-bytes-write=52 payload-bytes-read=2897528/5242880 (55.27%)
+2019-01-31 11:30:05 1548934205.434460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2900993 total-bytes-write=52 payload-bytes-read=2900964/5242880 (55.33%)
+2019-01-31 11:30:05 1548934205.435042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2904977 total-bytes-write=52 payload-bytes-read=2904948/5242880 (55.41%)
+2019-01-31 11:30:05 1548934205.435388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2908463 total-bytes-write=52 payload-bytes-read=2908434/5242880 (55.47%)
+2019-01-31 11:30:05 1548934205.448011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2914937 total-bytes-write=52 payload-bytes-read=2914908/5242880 (55.60%)
+2019-01-31 11:30:05 1548934205.456564 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2918373 total-bytes-write=52 payload-bytes-read=2918344/5242880 (55.66%)
+2019-01-31 11:30:05 1548934205.468691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2919867 total-bytes-write=52 payload-bytes-read=2919838/5242880 (55.69%)
+2019-01-31 11:30:05 1548934205.479214 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2923353 total-bytes-write=52 payload-bytes-read=2923324/5242880 (55.76%)
+2019-01-31 11:30:05 1548934205.538895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2926839 total-bytes-write=52 payload-bytes-read=2926810/5242880 (55.82%)
+2019-01-31 11:30:05 1548934205.580381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2938741 total-bytes-write=52 payload-bytes-read=2938712/5242880 (56.05%)
+2019-01-31 11:30:05 1548934205.624376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2951639 total-bytes-write=52 payload-bytes-read=2951610/5242880 (56.30%)
+2019-01-31 11:30:05 1548934205.668382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2968521 total-bytes-write=52 payload-bytes-read=2968492/5242880 (56.62%)
+2019-01-31 11:30:05 1548934205.712387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2975991 total-bytes-write=52 payload-bytes-read=2975962/5242880 (56.76%)
+2019-01-31 11:30:05 1548934205.712588 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2979477 total-bytes-write=52 payload-bytes-read=2979448/5242880 (56.83%)
+2019-01-31 11:30:05 1548934205.713445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2981917 total-bytes-write=52 payload-bytes-read=2981888/5242880 (56.88%)
+2019-01-31 11:30:05 1548934205.723222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2985403 total-bytes-write=52 payload-bytes-read=2985374/5242880 (56.94%)
+2019-01-31 11:30:05 1548934205.727812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2989387 total-bytes-write=52 payload-bytes-read=2989358/5242880 (57.02%)
+2019-01-31 11:30:05 1548934205.757342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2989885 total-bytes-write=52 payload-bytes-read=2989856/5242880 (57.03%)
+2019-01-31 11:30:05 1548934205.759773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2997355 total-bytes-write=52 payload-bytes-read=2997326/5242880 (57.17%)
+2019-01-31 11:30:05 1548934205.821724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=2997853 total-bytes-write=52 payload-bytes-read=2997824/5242880 (57.18%)
+2019-01-31 11:30:05 1548934205.822879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3001289 total-bytes-write=52 payload-bytes-read=3001260/5242880 (57.24%)
+2019-01-31 11:30:05 1548934205.824548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3005273 total-bytes-write=52 payload-bytes-read=3005244/5242880 (57.32%)
+2019-01-31 11:30:05 1548934205.825881 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3009257 total-bytes-write=52 payload-bytes-read=3009228/5242880 (57.40%)
+2019-01-31 11:30:05 1548934205.868398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3029127 total-bytes-write=52 payload-bytes-read=3029098/5242880 (57.78%)
+2019-01-31 11:30:05 1548934205.912381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3041029 total-bytes-write=52 payload-bytes-read=3041000/5242880 (58.00%)
+2019-01-31 11:30:05 1548934205.914902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3042523 total-bytes-write=52 payload-bytes-read=3042494/5242880 (58.03%)
+2019-01-31 11:30:05 1548934205.916599 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3046009 total-bytes-write=52 payload-bytes-read=3045980/5242880 (58.10%)
+2019-01-31 11:30:05 1548934205.962385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3049445 total-bytes-write=52 payload-bytes-read=3049416/5242880 (58.16%)
+2019-01-31 11:30:05 1548934205.963535 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3057413 total-bytes-write=52 payload-bytes-read=3057384/5242880 (58.31%)
+2019-01-31 11:30:05 1548934205.963611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3059405 total-bytes-write=52 payload-bytes-read=3059376/5242880 (58.35%)
+2019-01-31 11:30:05 1548934205.971957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3062891 total-bytes-write=52 payload-bytes-read=3062862/5242880 (58.42%)
+2019-01-31 11:30:05 1548934205.972612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3066825 total-bytes-write=52 payload-bytes-read=3066796/5242880 (58.49%)
+2019-01-31 11:30:05 1548934205.993874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3070311 total-bytes-write=52 payload-bytes-read=3070282/5242880 (58.56%)
+2019-01-31 11:30:06 1548934206.039653 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3071805 total-bytes-write=52 payload-bytes-read=3071776/5242880 (58.59%)
+2019-01-31 11:30:06 1548934206.040858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3075291 total-bytes-write=52 payload-bytes-read=3075262/5242880 (58.66%)
+2019-01-31 11:30:06 1548934206.041421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3079275 total-bytes-write=52 payload-bytes-read=3079246/5242880 (58.73%)
+2019-01-31 11:30:06 1548934206.041994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3083209 total-bytes-write=52 payload-bytes-read=3083180/5242880 (58.81%)
+2019-01-31 11:30:06 1548934206.042660 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3087193 total-bytes-write=52 payload-bytes-read=3087164/5242880 (58.88%)
+2019-01-31 11:30:06 1548934206.043034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3087691 total-bytes-write=52 payload-bytes-read=3087662/5242880 (58.89%)
+2019-01-31 11:30:06 1548934206.043737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3091177 total-bytes-write=52 payload-bytes-read=3091148/5242880 (58.96%)
+2019-01-31 11:30:06 1548934206.044332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3095161 total-bytes-write=52 payload-bytes-read=3095132/5242880 (59.03%)
+2019-01-31 11:30:06 1548934206.052411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3095659 total-bytes-write=52 payload-bytes-read=3095630/5242880 (59.04%)
+2019-01-31 11:30:06 1548934206.053565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3099095 total-bytes-write=52 payload-bytes-read=3099066/5242880 (59.11%)
+2019-01-31 11:30:06 1548934206.054509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3107063 total-bytes-write=52 payload-bytes-read=3107034/5242880 (59.26%)
+2019-01-31 11:30:06 1548934206.055999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3111047 total-bytes-write=52 payload-bytes-read=3111018/5242880 (59.34%)
+2019-01-31 11:30:06 1548934206.064012 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3112043 total-bytes-write=52 payload-bytes-read=3112014/5242880 (59.36%)
+2019-01-31 11:30:06 1548934206.064792 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3115479 total-bytes-write=52 payload-bytes-read=3115450/5242880 (59.42%)
+2019-01-31 11:30:06 1548934206.065589 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3119463 total-bytes-write=52 payload-bytes-read=3119434/5242880 (59.50%)
+2019-01-31 11:30:06 1548934206.066233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3123447 total-bytes-write=52 payload-bytes-read=3123418/5242880 (59.57%)
+2019-01-31 11:30:06 1548934206.108405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3146753 total-bytes-write=52 payload-bytes-read=3146724/5242880 (60.02%)
+2019-01-31 11:30:06 1548934206.152371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3150737 total-bytes-write=52 payload-bytes-read=3150708/5242880 (60.09%)
+2019-01-31 11:30:06 1548934206.221023 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3151733 total-bytes-write=52 payload-bytes-read=3151704/5242880 (60.11%)
+2019-01-31 11:30:06 1548934206.238234 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3155717 total-bytes-write=52 payload-bytes-read=3155688/5242880 (60.19%)
+2019-01-31 11:30:06 1548934206.248522 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3159203 total-bytes-write=52 payload-bytes-read=3159174/5242880 (60.26%)
+2019-01-31 11:30:06 1548934206.249897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3167121 total-bytes-write=52 payload-bytes-read=3167092/5242880 (60.41%)
+2019-01-31 11:30:06 1548934206.272581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3171105 total-bytes-write=52 payload-bytes-read=3171076/5242880 (60.48%)
+2019-01-31 11:30:06 1548934206.316199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3173595 total-bytes-write=52 payload-bytes-read=3173566/5242880 (60.53%)
+2019-01-31 11:30:06 1548934206.326629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3177081 total-bytes-write=52 payload-bytes-read=3177052/5242880 (60.60%)
+2019-01-31 11:30:06 1548934206.329262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3184999 total-bytes-write=52 payload-bytes-read=3184970/5242880 (60.75%)
+2019-01-31 11:30:06 1548934206.329345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3188983 total-bytes-write=52 payload-bytes-read=3188954/5242880 (60.82%)
+2019-01-31 11:30:06 1548934206.331010 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3192967 total-bytes-write=52 payload-bytes-read=3192938/5242880 (60.90%)
+2019-01-31 11:30:06 1548934206.372458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3196901 total-bytes-write=52 payload-bytes-read=3196872/5242880 (60.98%)
+2019-01-31 11:30:06 1548934206.372546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3197897 total-bytes-write=52 payload-bytes-read=3197868/5242880 (60.99%)
+2019-01-31 11:30:06 1548934206.374955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3201945 total-bytes-write=52 payload-bytes-read=3201916/5242880 (61.07%)
+2019-01-31 11:30:06 1548934206.416389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3220257 total-bytes-write=52 payload-bytes-read=3220228/5242880 (61.42%)
+2019-01-31 11:30:06 1548934206.460443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3247049 total-bytes-write=52 payload-bytes-read=3247020/5242880 (61.93%)
+2019-01-31 11:30:06 1548934206.510411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3250535 total-bytes-write=52 payload-bytes-read=3250506/5242880 (62.00%)
+2019-01-31 11:30:06 1548934206.533736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3254021 total-bytes-write=52 payload-bytes-read=3253992/5242880 (62.06%)
+2019-01-31 11:30:06 1548934206.576376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3266919 total-bytes-write=52 payload-bytes-read=3266890/5242880 (62.31%)
+2019-01-31 11:30:06 1548934206.620413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3290773 total-bytes-write=52 payload-bytes-read=3290744/5242880 (62.77%)
+2019-01-31 11:30:06 1548934206.664385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3298691 total-bytes-write=52 payload-bytes-read=3298662/5242880 (62.92%)
+2019-01-31 11:30:06 1548934206.670408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3299687 total-bytes-write=52 payload-bytes-read=3299658/5242880 (62.94%)
+2019-01-31 11:30:06 1548934206.671289 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3301181 total-bytes-write=52 payload-bytes-read=3301152/5242880 (62.96%)
+2019-01-31 11:30:06 1548934206.694068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3308651 total-bytes-write=52 payload-bytes-read=3308622/5242880 (63.11%)
+2019-01-31 11:30:06 1548934206.695959 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3316569 total-bytes-write=52 payload-bytes-read=3316540/5242880 (63.26%)
+2019-01-31 11:30:06 1548934206.705113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3317067 total-bytes-write=52 payload-bytes-read=3317038/5242880 (63.27%)
+2019-01-31 11:30:06 1548934206.705902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3320055 total-bytes-write=52 payload-bytes-read=3320026/5242880 (63.32%)
+2019-01-31 11:30:06 1548934206.727106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3323541 total-bytes-write=52 payload-bytes-read=3323512/5242880 (63.39%)
+2019-01-31 11:30:06 1548934206.728902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3331459 total-bytes-write=52 payload-bytes-read=3331430/5242880 (63.54%)
+2019-01-31 11:30:06 1548934206.729692 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3335941 total-bytes-write=52 payload-bytes-read=3335912/5242880 (63.63%)
+2019-01-31 11:30:06 1548934206.729766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3337435 total-bytes-write=52 payload-bytes-read=3337406/5242880 (63.66%)
+2019-01-31 11:30:06 1548934206.738026 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3340921 total-bytes-write=52 payload-bytes-read=3340892/5242880 (63.72%)
+2019-01-31 11:30:06 1548934206.740195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3347345 total-bytes-write=52 payload-bytes-read=3347316/5242880 (63.84%)
+2019-01-31 11:30:06 1548934206.755859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3354815 total-bytes-write=52 payload-bytes-read=3354786/5242880 (63.99%)
+2019-01-31 11:30:06 1548934206.755953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3358749 total-bytes-write=52 payload-bytes-read=3358720/5242880 (64.06%)
+2019-01-31 11:30:06 1548934206.774104 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3359745 total-bytes-write=52 payload-bytes-read=3359716/5242880 (64.08%)
+2019-01-31 11:30:06 1548934206.777170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3363231 total-bytes-write=52 payload-bytes-read=3363202/5242880 (64.15%)
+2019-01-31 11:30:06 1548934206.814497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3367215 total-bytes-write=52 payload-bytes-read=3367186/5242880 (64.22%)
+2019-01-31 11:30:06 1548934206.860196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3367713 total-bytes-write=52 payload-bytes-read=3367684/5242880 (64.23%)
+2019-01-31 11:30:06 1548934206.862031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3375133 total-bytes-write=52 payload-bytes-read=3375104/5242880 (64.38%)
+2019-01-31 11:30:06 1548934206.864095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3379117 total-bytes-write=52 payload-bytes-read=3379088/5242880 (64.45%)
+2019-01-31 11:30:06 1548934206.873553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3386587 total-bytes-write=52 payload-bytes-read=3386558/5242880 (64.59%)
+2019-01-31 11:30:06 1548934206.873653 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3390571 total-bytes-write=52 payload-bytes-read=3390542/5242880 (64.67%)
+2019-01-31 11:30:06 1548934206.876159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3395003 total-bytes-write=52 payload-bytes-read=3394974/5242880 (64.75%)
+2019-01-31 11:30:06 1548934206.876279 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3398489 total-bytes-write=52 payload-bytes-read=3398460/5242880 (64.82%)
+2019-01-31 11:30:06 1548934206.885601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3401975 total-bytes-write=52 payload-bytes-read=3401946/5242880 (64.89%)
+2019-01-31 11:30:06 1548934206.932396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3417861 total-bytes-write=52 payload-bytes-read=3417832/5242880 (65.19%)
+2019-01-31 11:30:06 1548934206.976416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3433747 total-bytes-write=52 payload-bytes-read=3433718/5242880 (65.49%)
+2019-01-31 11:30:07 1548934207.020421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3442661 total-bytes-write=52 payload-bytes-read=3442632/5242880 (65.66%)
+2019-01-31 11:30:07 1548934207.060709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3444155 total-bytes-write=52 payload-bytes-read=3444126/5242880 (65.69%)
+2019-01-31 11:30:07 1548934207.061425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3447641 total-bytes-write=52 payload-bytes-read=3447612/5242880 (65.76%)
+2019-01-31 11:30:07 1548934207.070902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3451127 total-bytes-write=52 payload-bytes-read=3451098/5242880 (65.82%)
+2019-01-31 11:30:07 1548934207.112391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3466017 total-bytes-write=52 payload-bytes-read=3465988/5242880 (66.11%)
+2019-01-31 11:30:07 1548934207.167258 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3467013 total-bytes-write=52 payload-bytes-read=3466984/5242880 (66.13%)
+2019-01-31 11:30:07 1548934207.171861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3468507 total-bytes-write=52 payload-bytes-read=3468478/5242880 (66.16%)
+2019-01-31 11:30:07 1548934207.285065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3471993 total-bytes-write=52 payload-bytes-read=3471964/5242880 (66.22%)
+2019-01-31 11:30:07 1548934207.319436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3475429 total-bytes-write=52 payload-bytes-read=3475400/5242880 (66.29%)
+2019-01-31 11:30:07 1548934207.330305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3478417 total-bytes-write=52 payload-bytes-read=3478388/5242880 (66.34%)
+2019-01-31 11:30:07 1548934207.340091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:30:07 1548934207.340676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3485887 total-bytes-write=52 payload-bytes-read=3485858/5242880 (66.49%)
+2019-01-31 11:30:07 1548934207.352561 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3486385 total-bytes-write=52 payload-bytes-read=3486356/5242880 (66.50%)
+2019-01-31 11:30:07 1548934207.353193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3489821 total-bytes-write=52 payload-bytes-read=3489792/5242880 (66.56%)
+2019-01-31 11:30:07 1548934207.353685 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3490817 total-bytes-write=52 payload-bytes-read=3490788/5242880 (66.58%)
+2019-01-31 11:30:07 1548934207.354263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3494303 total-bytes-write=52 payload-bytes-read=3494274/5242880 (66.65%)
+2019-01-31 11:30:07 1548934207.355261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3497789 total-bytes-write=52 payload-bytes-read=3497760/5242880 (66.71%)
+2019-01-31 11:30:07 1548934207.396411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3518157 total-bytes-write=52 payload-bytes-read=3518128/5242880 (67.10%)
+2019-01-31 11:30:07 1548934207.455008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3519153 total-bytes-write=52 payload-bytes-read=3519124/5242880 (67.12%)
+2019-01-31 11:30:07 1548934207.457360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3526573 total-bytes-write=52 payload-bytes-read=3526544/5242880 (67.26%)
+2019-01-31 11:30:07 1548934207.466627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3528067 total-bytes-write=52 payload-bytes-read=3528038/5242880 (67.29%)
+2019-01-31 11:30:07 1548934207.467570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3535537 total-bytes-write=52 payload-bytes-read=3535508/5242880 (67.43%)
+2019-01-31 11:30:07 1548934207.497033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3542957 total-bytes-write=52 payload-bytes-read=3542928/5242880 (67.58%)
+2019-01-31 11:30:07 1548934207.497220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3550925 total-bytes-write=52 payload-bytes-read=3550896/5242880 (67.73%)
+2019-01-31 11:30:07 1548934207.513693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3551423 total-bytes-write=52 payload-bytes-read=3551394/5242880 (67.74%)
+2019-01-31 11:30:07 1548934207.514852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3554909 total-bytes-write=52 payload-bytes-read=3554880/5242880 (67.80%)
+2019-01-31 11:30:07 1548934207.516515 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3558843 total-bytes-write=52 payload-bytes-read=3558814/5242880 (67.88%)
+2019-01-31 11:30:07 1548934207.518834 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3562827 total-bytes-write=52 payload-bytes-read=3562798/5242880 (67.95%)
+2019-01-31 11:30:07 1548934207.519570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3564819 total-bytes-write=52 payload-bytes-read=3564790/5242880 (67.99%)
+2019-01-31 11:30:07 1548934207.535152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3565815 total-bytes-write=52 payload-bytes-read=3565786/5242880 (68.01%)
+2019-01-31 11:30:07 1548934207.536431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3569301 total-bytes-write=52 payload-bytes-read=3569272/5242880 (68.08%)
+2019-01-31 11:30:07 1548934207.537807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3573235 total-bytes-write=52 payload-bytes-read=3573206/5242880 (68.15%)
+2019-01-31 11:30:07 1548934207.539750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3577219 total-bytes-write=52 payload-bytes-read=3577190/5242880 (68.23%)
+2019-01-31 11:30:07 1548934207.541149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3581203 total-bytes-write=52 payload-bytes-read=3581174/5242880 (68.31%)
+2019-01-31 11:30:07 1548934207.584457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3622387 total-bytes-write=52 payload-bytes-read=3622358/5242880 (69.09%)
+2019-01-31 11:30:07 1548934207.628420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3645245 total-bytes-write=52 payload-bytes-read=3645216/5242880 (69.53%)
+2019-01-31 11:30:07 1548934207.661428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3648731 total-bytes-write=52 payload-bytes-read=3648702/5242880 (69.59%)
+2019-01-31 11:30:07 1548934207.661536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3652217 total-bytes-write=52 payload-bytes-read=3652188/5242880 (69.66%)
+2019-01-31 11:30:07 1548934207.704362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3663123 total-bytes-write=52 payload-bytes-read=3663094/5242880 (69.87%)
+2019-01-31 11:30:07 1548934207.748369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3669597 total-bytes-write=52 payload-bytes-read=3669568/5242880 (69.99%)
+2019-01-31 11:30:07 1548934207.765997 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3673033 total-bytes-write=52 payload-bytes-read=3673004/5242880 (70.06%)
+2019-01-31 11:30:07 1548934207.768050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3681001 total-bytes-write=52 payload-bytes-read=3680972/5242880 (70.21%)
+2019-01-31 11:30:07 1548934207.777670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3684487 total-bytes-write=52 payload-bytes-read=3684458/5242880 (70.28%)
+2019-01-31 11:30:07 1548934207.778514 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3688421 total-bytes-write=52 payload-bytes-read=3688392/5242880 (70.35%)
+2019-01-31 11:30:07 1548934207.779782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3692405 total-bytes-write=52 payload-bytes-read=3692376/5242880 (70.43%)
+2019-01-31 11:30:07 1548934207.808410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3696389 total-bytes-write=52 payload-bytes-read=3696360/5242880 (70.50%)
+2019-01-31 11:30:07 1548934207.852370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3701867 total-bytes-write=52 payload-bytes-read=3701838/5242880 (70.61%)
+2019-01-31 11:30:07 1548934207.896365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3717255 total-bytes-write=52 payload-bytes-read=3717226/5242880 (70.90%)
+2019-01-31 11:30:07 1548934207.940446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3717753 total-bytes-write=52 payload-bytes-read=3717724/5242880 (70.91%)
+2019-01-31 11:30:07 1548934207.978072 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3721189 total-bytes-write=52 payload-bytes-read=3721160/5242880 (70.98%)
+2019-01-31 11:30:08 1548934208.093529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3724675 total-bytes-write=52 payload-bytes-read=3724646/5242880 (71.04%)
+2019-01-31 11:30:08 1548934208.093960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3728659 total-bytes-write=52 payload-bytes-read=3728630/5242880 (71.12%)
+2019-01-31 11:30:08 1548934208.094704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3732643 total-bytes-write=52 payload-bytes-read=3732614/5242880 (71.19%)
+2019-01-31 11:30:08 1548934208.136425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3752463 total-bytes-write=52 payload-bytes-read=3752434/5242880 (71.57%)
+2019-01-31 11:30:08 1548934208.193575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3753459 total-bytes-write=52 payload-bytes-read=3753430/5242880 (71.59%)
+2019-01-31 11:30:08 1548934208.201540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3754953 total-bytes-write=52 payload-bytes-read=3754924/5242880 (71.62%)
+2019-01-31 11:30:08 1548934208.412980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3758439 total-bytes-write=52 payload-bytes-read=3758410/5242880 (71.69%)
+2019-01-31 11:30:08 1548934208.446858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3758937 total-bytes-write=52 payload-bytes-read=3758908/5242880 (71.70%)
+2019-01-31 11:30:08 1548934208.451545 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3762423 total-bytes-write=52 payload-bytes-read=3762394/5242880 (71.76%)
+2019-01-31 11:30:08 1548934208.458286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3765909 total-bytes-write=52 payload-bytes-read=3765880/5242880 (71.83%)
+2019-01-31 11:30:08 1548934208.460111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3769843 total-bytes-write=52 payload-bytes-read=3769814/5242880 (71.90%)
+2019-01-31 11:30:08 1548934208.470586 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3770341 total-bytes-write=52 payload-bytes-read=3770312/5242880 (71.91%)
+2019-01-31 11:30:08 1548934208.471308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3773827 total-bytes-write=52 payload-bytes-read=3773798/5242880 (71.98%)
+2019-01-31 11:30:08 1548934208.493810 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3777313 total-bytes-write=52 payload-bytes-read=3777284/5242880 (72.05%)
+2019-01-31 11:30:08 1548934208.494459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3780301 total-bytes-write=52 payload-bytes-read=3780272/5242880 (72.10%)
+2019-01-31 11:30:08 1548934208.505238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3783787 total-bytes-write=52 payload-bytes-read=3783758/5242880 (72.17%)
+2019-01-31 11:30:08 1548934208.505994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3787721 total-bytes-write=52 payload-bytes-read=3787692/5242880 (72.24%)
+2019-01-31 11:30:08 1548934208.506370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3791207 total-bytes-write=52 payload-bytes-read=3791178/5242880 (72.31%)
+2019-01-31 11:30:08 1548934208.540304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3794693 total-bytes-write=52 payload-bytes-read=3794664/5242880 (72.38%)
+2019-01-31 11:30:08 1548934208.654139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3795689 total-bytes-write=52 payload-bytes-read=3795660/5242880 (72.40%)
+2019-01-31 11:30:08 1548934208.711425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3796187 total-bytes-write=52 payload-bytes-read=3796158/5242880 (72.41%)
+2019-01-31 11:30:08 1548934208.712345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3799673 total-bytes-write=52 payload-bytes-read=3799644/5242880 (72.47%)
+2019-01-31 11:30:08 1548934208.723895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3803109 total-bytes-write=52 payload-bytes-read=3803080/5242880 (72.54%)
+2019-01-31 11:30:08 1548934208.724909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3807093 total-bytes-write=52 payload-bytes-read=3807064/5242880 (72.61%)
+2019-01-31 11:30:08 1548934208.768463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3851265 total-bytes-write=52 payload-bytes-read=3851236/5242880 (73.46%)
+2019-01-31 11:30:08 1548934208.812412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3870139 total-bytes-write=52 payload-bytes-read=3870110/5242880 (73.82%)
+2019-01-31 11:30:08 1548934208.813042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3871633 total-bytes-write=52 payload-bytes-read=3871604/5242880 (73.84%)
+2019-01-31 11:30:08 1548934208.814358 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3874621 total-bytes-write=52 payload-bytes-read=3874592/5242880 (73.90%)
+2019-01-31 11:30:08 1548934208.827502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3878107 total-bytes-write=52 payload-bytes-read=3878078/5242880 (73.97%)
+2019-01-31 11:30:08 1548934208.828218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3882091 total-bytes-write=52 payload-bytes-read=3882062/5242880 (74.04%)
+2019-01-31 11:30:08 1548934208.829337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3890507 total-bytes-write=52 payload-bytes-read=3890478/5242880 (74.20%)
+2019-01-31 11:30:08 1548934208.830871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3897977 total-bytes-write=52 payload-bytes-read=3897948/5242880 (74.35%)
+2019-01-31 11:30:08 1548934208.833045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3905895 total-bytes-write=52 payload-bytes-read=3905866/5242880 (74.50%)
+2019-01-31 11:30:08 1548934208.839223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3906393 total-bytes-write=52 payload-bytes-read=3906364/5242880 (74.51%)
+2019-01-31 11:30:08 1548934208.840096 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3909879 total-bytes-write=52 payload-bytes-read=3909850/5242880 (74.57%)
+2019-01-31 11:30:08 1548934208.840947 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3913863 total-bytes-write=52 payload-bytes-read=3913834/5242880 (74.65%)
+2019-01-31 11:30:08 1548934208.841666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3921781 total-bytes-write=52 payload-bytes-read=3921752/5242880 (74.80%)
+2019-01-31 11:30:08 1548934208.842752 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3925765 total-bytes-write=52 payload-bytes-read=3925736/5242880 (74.88%)
+2019-01-31 11:30:08 1548934208.851110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3929251 total-bytes-write=52 payload-bytes-read=3929222/5242880 (74.94%)
+2019-01-31 11:30:08 1548934208.851786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3931243 total-bytes-write=52 payload-bytes-read=3931214/5242880 (74.98%)
+2019-01-31 11:30:08 1548934208.862470 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3934679 total-bytes-write=52 payload-bytes-read=3934650/5242880 (75.05%)
+2019-01-31 11:30:08 1548934208.863345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3941651 total-bytes-write=52 payload-bytes-read=3941622/5242880 (75.18%)
+2019-01-31 11:30:08 1548934208.872743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3945137 total-bytes-write=52 payload-bytes-read=3945108/5242880 (75.25%)
+2019-01-31 11:30:08 1548934208.873494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3949071 total-bytes-write=52 payload-bytes-read=3949042/5242880 (75.32%)
+2019-01-31 11:30:08 1548934208.893981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3950067 total-bytes-write=52 payload-bytes-read=3950038/5242880 (75.34%)
+2019-01-31 11:30:08 1548934208.896016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3957537 total-bytes-write=52 payload-bytes-read=3957508/5242880 (75.48%)
+2019-01-31 11:30:08 1548934208.896598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3961521 total-bytes-write=52 payload-bytes-read=3961492/5242880 (75.56%)
+2019-01-31 11:30:08 1548934208.898106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3965953 total-bytes-write=52 payload-bytes-read=3965924/5242880 (75.64%)
+2019-01-31 11:30:08 1548934208.898245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3971431 total-bytes-write=52 payload-bytes-read=3971402/5242880 (75.75%)
+2019-01-31 11:30:08 1548934208.907836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3978901 total-bytes-write=52 payload-bytes-read=3978872/5242880 (75.89%)
+2019-01-31 11:30:08 1548934208.908221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3981839 total-bytes-write=52 payload-bytes-read=3981810/5242880 (75.95%)
+2019-01-31 11:30:08 1548934208.930974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3988313 total-bytes-write=52 payload-bytes-read=3988284/5242880 (76.07%)
+2019-01-31 11:30:08 1548934208.954020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3991799 total-bytes-write=52 payload-bytes-read=3991770/5242880 (76.14%)
+2019-01-31 11:30:08 1548934208.981300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3992297 total-bytes-write=52 payload-bytes-read=3992268/5242880 (76.15%)
+2019-01-31 11:30:08 1548934208.997175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3992795 total-bytes-write=52 payload-bytes-read=3992766/5242880 (76.16%)
+2019-01-31 11:30:08 1548934208.998020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3996281 total-bytes-write=52 payload-bytes-read=3996252/5242880 (76.22%)
+2019-01-31 11:30:09 1548934209.053843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=3999717 total-bytes-write=52 payload-bytes-read=3999688/5242880 (76.29%)
+2019-01-31 11:30:09 1548934209.054577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4003701 total-bytes-write=52 payload-bytes-read=4003672/5242880 (76.36%)
+2019-01-31 11:30:09 1548934209.055308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4011669 total-bytes-write=52 payload-bytes-read=4011640/5242880 (76.52%)
+2019-01-31 11:30:09 1548934209.055879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4012167 total-bytes-write=52 payload-bytes-read=4012138/5242880 (76.53%)
+2019-01-31 11:30:09 1548934209.056469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4015105 total-bytes-write=52 payload-bytes-read=4015076/5242880 (76.58%)
+2019-01-31 11:30:09 1548934209.138430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4015603 total-bytes-write=52 payload-bytes-read=4015574/5242880 (76.59%)
+2019-01-31 11:30:09 1548934209.142578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4019089 total-bytes-write=52 payload-bytes-read=4019060/5242880 (76.66%)
+2019-01-31 11:30:09 1548934209.165241 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4021081 total-bytes-write=52 payload-bytes-read=4021052/5242880 (76.70%)
+2019-01-31 11:30:09 1548934209.481390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4024567 total-bytes-write=52 payload-bytes-read=4024538/5242880 (76.76%)
+2019-01-31 11:30:09 1548934209.503538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4028053 total-bytes-write=52 payload-bytes-read=4028024/5242880 (76.83%)
+2019-01-31 11:30:09 1548934209.526977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4029049 total-bytes-write=52 payload-bytes-read=4029020/5242880 (76.85%)
+2019-01-31 11:30:09 1548934209.527299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4032485 total-bytes-write=52 payload-bytes-read=4032456/5242880 (76.91%)
+2019-01-31 11:30:09 1548934209.541229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4037963 total-bytes-write=52 payload-bytes-read=4037934/5242880 (77.02%)
+2019-01-31 11:30:09 1548934209.549651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4041449 total-bytes-write=52 payload-bytes-read=4041420/5242880 (77.08%)
+2019-01-31 11:30:09 1548934209.550681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4045433 total-bytes-write=52 payload-bytes-read=4045404/5242880 (77.16%)
+2019-01-31 11:30:09 1548934209.561828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4046877 total-bytes-write=52 payload-bytes-read=4046848/5242880 (77.19%)
+2019-01-31 11:30:09 1548934209.562302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4050363 total-bytes-write=52 payload-bytes-read=4050334/5242880 (77.25%)
+2019-01-31 11:30:09 1548934209.610523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4053849 total-bytes-write=52 payload-bytes-read=4053820/5242880 (77.32%)
+2019-01-31 11:30:09 1548934209.621132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4054347 total-bytes-write=52 payload-bytes-read=4054318/5242880 (77.33%)
+2019-01-31 11:30:09 1548934209.621641 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4057833 total-bytes-write=52 payload-bytes-read=4057804/5242880 (77.40%)
+2019-01-31 11:30:09 1548934209.622120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4061817 total-bytes-write=52 payload-bytes-read=4061788/5242880 (77.47%)
+2019-01-31 11:30:09 1548934209.632601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4065253 total-bytes-write=52 payload-bytes-read=4065224/5242880 (77.54%)
+2019-01-31 11:30:09 1548934209.633790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4069237 total-bytes-write=52 payload-bytes-read=4069208/5242880 (77.61%)
+2019-01-31 11:30:09 1548934209.634523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4073221 total-bytes-write=52 payload-bytes-read=4073192/5242880 (77.69%)
+2019-01-31 11:30:09 1548934209.676432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4101009 total-bytes-write=52 payload-bytes-read=4100980/5242880 (78.22%)
+2019-01-31 11:30:09 1548934209.724394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4114903 total-bytes-write=52 payload-bytes-read=4114874/5242880 (78.48%)
+2019-01-31 11:30:09 1548934209.729571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4118389 total-bytes-write=52 payload-bytes-read=4118360/5242880 (78.55%)
+2019-01-31 11:30:09 1548934209.752299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4118887 total-bytes-write=52 payload-bytes-read=4118858/5242880 (78.56%)
+2019-01-31 11:30:09 1548934209.752839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4122373 total-bytes-write=52 payload-bytes-read=4122344/5242880 (78.63%)
+2019-01-31 11:30:09 1548934209.753295 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4126357 total-bytes-write=52 payload-bytes-read=4126328/5242880 (78.70%)
+2019-01-31 11:30:09 1548934209.764801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4126855 total-bytes-write=52 payload-bytes-read=4126826/5242880 (78.71%)
+2019-01-31 11:30:09 1548934209.765467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4130291 total-bytes-write=52 payload-bytes-read=4130262/5242880 (78.78%)
+2019-01-31 11:30:09 1548934209.767277 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4138259 total-bytes-write=52 payload-bytes-read=4138230/5242880 (78.93%)
+2019-01-31 11:30:09 1548934209.767359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4142243 total-bytes-write=52 payload-bytes-read=4142214/5242880 (79.01%)
+2019-01-31 11:30:09 1548934209.768315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4142741 total-bytes-write=52 payload-bytes-read=4142712/5242880 (79.02%)
+2019-01-31 11:30:09 1548934209.769016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4146177 total-bytes-write=52 payload-bytes-read=4146148/5242880 (79.08%)
+2019-01-31 11:30:09 1548934209.769473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4150161 total-bytes-write=52 payload-bytes-read=4150132/5242880 (79.16%)
+2019-01-31 11:30:09 1548934209.776656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4151157 total-bytes-write=52 payload-bytes-read=4151128/5242880 (79.18%)
+2019-01-31 11:30:09 1548934209.777791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4158627 total-bytes-write=52 payload-bytes-read=4158598/5242880 (79.32%)
+2019-01-31 11:30:09 1548934209.780929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4166545 total-bytes-write=52 payload-bytes-read=4166516/5242880 (79.47%)
+2019-01-31 11:30:09 1548934209.781062 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4170529 total-bytes-write=52 payload-bytes-read=4170500/5242880 (79.55%)
+2019-01-31 11:30:09 1548934209.783715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4174513 total-bytes-write=52 payload-bytes-read=4174484/5242880 (79.62%)
+2019-01-31 11:30:09 1548934209.824376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4182431 total-bytes-write=52 payload-bytes-read=4182402/5242880 (79.77%)
+2019-01-31 11:30:09 1548934209.868413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4213207 total-bytes-write=52 payload-bytes-read=4213178/5242880 (80.36%)
+2019-01-31 11:30:09 1548934209.912393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4231085 total-bytes-write=52 payload-bytes-read=4231056/5242880 (80.70%)
+2019-01-31 11:30:09 1548934209.924821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4234571 total-bytes-write=52 payload-bytes-read=4234542/5242880 (80.77%)
+2019-01-31 11:30:09 1548934209.933040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4235567 total-bytes-write=52 payload-bytes-read=4235538/5242880 (80.79%)
+2019-01-31 11:30:09 1548934209.934460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4239053 total-bytes-write=52 payload-bytes-read=4239024/5242880 (80.85%)
+2019-01-31 11:30:09 1548934209.935191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4243037 total-bytes-write=52 payload-bytes-read=4243008/5242880 (80.93%)
+2019-01-31 11:30:09 1548934209.936140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4251453 total-bytes-write=52 payload-bytes-read=4251424/5242880 (81.09%)
+2019-01-31 11:30:09 1548934209.936814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4258425 total-bytes-write=52 payload-bytes-read=4258396/5242880 (81.22%)
+2019-01-31 11:30:09 1548934209.945171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4261861 total-bytes-write=52 payload-bytes-read=4261832/5242880 (81.29%)
+2019-01-31 11:30:09 1548934209.989067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4263355 total-bytes-write=52 payload-bytes-read=4263326/5242880 (81.32%)
+2019-01-31 11:30:10 1548934210.071453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4266841 total-bytes-write=52 payload-bytes-read=4266812/5242880 (81.38%)
+2019-01-31 11:30:10 1548934210.153667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4267339 total-bytes-write=52 payload-bytes-read=4267310/5242880 (81.39%)
+2019-01-31 11:30:10 1548934210.195732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4269331 total-bytes-write=52 payload-bytes-read=4269302/5242880 (81.43%)
+2019-01-31 11:30:10 1548934210.342496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4272817 total-bytes-write=52 payload-bytes-read=4272788/5242880 (81.50%)
+2019-01-31 11:30:10 1548934210.352274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4276253 total-bytes-write=52 payload-bytes-read=4276224/5242880 (81.56%)
+2019-01-31 11:30:10 1548934210.354049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4284221 total-bytes-write=52 payload-bytes-read=4284192/5242880 (81.71%)
+2019-01-31 11:30:10 1548934210.364482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4285217 total-bytes-write=52 payload-bytes-read=4285188/5242880 (81.73%)
+2019-01-31 11:30:10 1548934210.366293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4288703 total-bytes-write=52 payload-bytes-read=4288674/5242880 (81.80%)
+2019-01-31 11:30:10 1548934210.366958 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4292637 total-bytes-write=52 payload-bytes-read=4292608/5242880 (81.88%)
+2019-01-31 11:30:10 1548934210.368085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4300605 total-bytes-write=52 payload-bytes-read=4300576/5242880 (82.03%)
+2019-01-31 11:30:10 1548934210.376118 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4302099 total-bytes-write=52 payload-bytes-read=4302070/5242880 (82.06%)
+2019-01-31 11:30:10 1548934210.377140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4305585 total-bytes-write=52 payload-bytes-read=4305556/5242880 (82.12%)
+2019-01-31 11:30:10 1548934210.378319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4309519 total-bytes-write=52 payload-bytes-read=4309490/5242880 (82.20%)
+2019-01-31 11:30:10 1548934210.391339 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4310515 total-bytes-write=52 payload-bytes-read=4310486/5242880 (82.22%)
+2019-01-31 11:30:10 1548934210.391826 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4314001 total-bytes-write=52 payload-bytes-read=4313972/5242880 (82.28%)
+2019-01-31 11:30:10 1548934210.402267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4316491 total-bytes-write=52 payload-bytes-read=4316462/5242880 (82.33%)
+2019-01-31 11:30:10 1548934210.481472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4319977 total-bytes-write=52 payload-bytes-read=4319948/5242880 (82.40%)
+2019-01-31 11:30:10 1548934210.481965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4323961 total-bytes-write=52 payload-bytes-read=4323932/5242880 (82.47%)
+2019-01-31 11:30:10 1548934210.482872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4326899 total-bytes-write=52 payload-bytes-read=4326870/5242880 (82.53%)
+2019-01-31 11:30:10 1548934210.492926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4329887 total-bytes-write=52 payload-bytes-read=4329858/5242880 (82.59%)
+2019-01-31 11:30:10 1548934210.504352 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4333373 total-bytes-write=52 payload-bytes-read=4333344/5242880 (82.65%)
+2019-01-31 11:30:10 1548934210.505122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4337357 total-bytes-write=52 payload-bytes-read=4337328/5242880 (82.73%)
+2019-01-31 11:30:10 1548934210.505944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4345275 total-bytes-write=52 payload-bytes-read=4345246/5242880 (82.88%)
+2019-01-31 11:30:10 1548934210.506659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4349259 total-bytes-write=52 payload-bytes-read=4349230/5242880 (82.95%)
+2019-01-31 11:30:10 1548934210.507466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4357227 total-bytes-write=52 payload-bytes-read=4357198/5242880 (83.11%)
+2019-01-31 11:30:10 1548934210.516467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4364647 total-bytes-write=52 payload-bytes-read=4364618/5242880 (83.25%)
+2019-01-31 11:30:10 1548934210.517798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4372615 total-bytes-write=52 payload-bytes-read=4372586/5242880 (83.40%)
+2019-01-31 11:30:10 1548934210.527805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4374109 total-bytes-write=52 payload-bytes-read=4374080/5242880 (83.43%)
+2019-01-31 11:30:10 1548934210.530240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4381529 total-bytes-write=52 payload-bytes-read=4381500/5242880 (83.57%)
+2019-01-31 11:30:10 1548934210.530322 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4385513 total-bytes-write=52 payload-bytes-read=4385484/5242880 (83.65%)
+2019-01-31 11:30:10 1548934210.531569 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4389497 total-bytes-write=52 payload-bytes-read=4389468/5242880 (83.72%)
+2019-01-31 11:30:10 1548934210.572381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4398411 total-bytes-write=52 payload-bytes-read=4398382/5242880 (83.89%)
+2019-01-31 11:30:10 1548934210.616484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4457971 total-bytes-write=52 payload-bytes-read=4457942/5242880 (85.03%)
+2019-01-31 11:30:10 1548934210.660402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4475351 total-bytes-write=52 payload-bytes-read=4475322/5242880 (85.36%)
+2019-01-31 11:30:10 1548934210.666394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4475849 total-bytes-write=52 payload-bytes-read=4475820/5242880 (85.37%)
+2019-01-31 11:30:10 1548934210.668536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4479335 total-bytes-write=52 payload-bytes-read=4479306/5242880 (85.44%)
+2019-01-31 11:30:10 1548934210.711281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4483817 total-bytes-write=52 payload-bytes-read=4483788/5242880 (85.52%)
+2019-01-31 11:30:10 1548934210.746539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4487303 total-bytes-write=52 payload-bytes-read=4487274/5242880 (85.59%)
+2019-01-31 11:30:10 1548934210.756263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4490739 total-bytes-write=52 payload-bytes-read=4490710/5242880 (85.65%)
+2019-01-31 11:30:10 1548934210.757274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4494723 total-bytes-write=52 payload-bytes-read=4494694/5242880 (85.73%)
+2019-01-31 11:30:10 1548934210.758471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4498707 total-bytes-write=52 payload-bytes-read=4498678/5242880 (85.81%)
+2019-01-31 11:30:10 1548934210.800378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4510609 total-bytes-write=52 payload-bytes-read=4510580/5242880 (86.03%)
+2019-01-31 11:30:10 1548934210.844371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4512103 total-bytes-write=52 payload-bytes-read=4512074/5242880 (86.06%)
+2019-01-31 11:30:10 1548934210.864184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4515589 total-bytes-write=52 payload-bytes-read=4515560/5242880 (86.13%)
+2019-01-31 11:30:10 1548934210.903720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4517581 total-bytes-write=52 payload-bytes-read=4517552/5242880 (86.17%)
+2019-01-31 11:30:10 1548934210.926603 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4521067 total-bytes-write=52 payload-bytes-read=4521038/5242880 (86.23%)
+2019-01-31 11:30:10 1548934210.937107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4524503 total-bytes-write=52 payload-bytes-read=4524474/5242880 (86.30%)
+2019-01-31 11:30:10 1548934210.938071 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4528487 total-bytes-write=52 payload-bytes-read=4528458/5242880 (86.37%)
+2019-01-31 11:30:10 1548934210.938770 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4531973 total-bytes-write=52 payload-bytes-read=4531944/5242880 (86.44%)
+2019-01-31 11:30:10 1548934210.949213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4535459 total-bytes-write=52 payload-bytes-read=4535430/5242880 (86.51%)
+2019-01-31 11:30:10 1548934210.996384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4540389 total-bytes-write=52 payload-bytes-read=4540360/5242880 (86.60%)
+2019-01-31 11:30:11 1548934211.059165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4543875 total-bytes-write=52 payload-bytes-read=4543846/5242880 (86.67%)
+2019-01-31 11:30:11 1548934211.070979 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4544871 total-bytes-write=52 payload-bytes-read=4544842/5242880 (86.69%)
+2019-01-31 11:30:11 1548934211.072064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4552341 total-bytes-write=52 payload-bytes-read=4552312/5242880 (86.83%)
+2019-01-31 11:30:11 1548934211.093931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4553337 total-bytes-write=52 payload-bytes-read=4553308/5242880 (86.85%)
+2019-01-31 11:30:11 1548934211.094466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4556773 total-bytes-write=52 payload-bytes-read=4556744/5242880 (86.91%)
+2019-01-31 11:30:11 1548934211.095254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4560757 total-bytes-write=52 payload-bytes-read=4560728/5242880 (86.99%)
+2019-01-31 11:30:11 1548934211.147380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4564243 total-bytes-write=52 payload-bytes-read=4564214/5242880 (87.06%)
+2019-01-31 11:30:11 1548934211.181115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4567231 total-bytes-write=52 payload-bytes-read=4567202/5242880 (87.11%)
+2019-01-31 11:30:11 1548934211.387807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4570717 total-bytes-write=52 payload-bytes-read=4570688/5242880 (87.18%)
+2019-01-31 11:30:11 1548934211.391085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4578635 total-bytes-write=52 payload-bytes-read=4578606/5242880 (87.33%)
+2019-01-31 11:30:11 1548934211.391175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4582121 total-bytes-write=52 payload-bytes-read=4582092/5242880 (87.40%)
+2019-01-31 11:30:11 1548934211.425710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4589541 total-bytes-write=52 payload-bytes-read=4589512/5242880 (87.54%)
+2019-01-31 11:30:11 1548934211.425941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4597509 total-bytes-write=52 payload-bytes-read=4597480/5242880 (87.69%)
+2019-01-31 11:30:11 1548934211.426073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4601493 total-bytes-write=52 payload-bytes-read=4601464/5242880 (87.77%)
+2019-01-31 11:30:11 1548934211.426308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4607917 total-bytes-write=52 payload-bytes-read=4607888/5242880 (87.89%)
+2019-01-31 11:30:11 1548934211.432505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4611403 total-bytes-write=52 payload-bytes-read=4611374/5242880 (87.95%)
+2019-01-31 11:30:11 1548934211.433278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4614391 total-bytes-write=52 payload-bytes-read=4614362/5242880 (88.01%)
+2019-01-31 11:30:11 1548934211.444300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4617877 total-bytes-write=52 payload-bytes-read=4617848/5242880 (88.08%)
+2019-01-31 11:30:11 1548934211.454237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4618375 total-bytes-write=52 payload-bytes-read=4618346/5242880 (88.09%)
+2019-01-31 11:30:11 1548934211.454734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4621811 total-bytes-write=52 payload-bytes-read=4621782/5242880 (88.15%)
+2019-01-31 11:30:11 1548934211.455806 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4625795 total-bytes-write=52 payload-bytes-read=4625766/5242880 (88.23%)
+2019-01-31 11:30:11 1548934211.456392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4629779 total-bytes-write=52 payload-bytes-read=4629750/5242880 (88.31%)
+2019-01-31 11:30:11 1548934211.500421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4658065 total-bytes-write=52 payload-bytes-read=4658036/5242880 (88.84%)
+2019-01-31 11:30:11 1548934211.544401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4669967 total-bytes-write=52 payload-bytes-read=4669938/5242880 (89.07%)
+2019-01-31 11:30:11 1548934211.545052 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4673951 total-bytes-write=52 payload-bytes-read=4673922/5242880 (89.15%)
+2019-01-31 11:30:11 1548934211.546185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4678433 total-bytes-write=52 payload-bytes-read=4678404/5242880 (89.23%)
+2019-01-31 11:30:11 1548934211.546262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4681919 total-bytes-write=52 payload-bytes-read=4681890/5242880 (89.30%)
+2019-01-31 11:30:11 1548934211.546998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4685853 total-bytes-write=52 payload-bytes-read=4685824/5242880 (89.38%)
+2019-01-31 11:30:11 1548934211.557763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4693323 total-bytes-write=52 payload-bytes-read=4693294/5242880 (89.52%)
+2019-01-31 11:30:11 1548934211.565941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4696809 total-bytes-write=52 payload-bytes-read=4696780/5242880 (89.58%)
+2019-01-31 11:30:11 1548934211.566635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4700793 total-bytes-write=52 payload-bytes-read=4700764/5242880 (89.66%)
+2019-01-31 11:30:11 1548934211.567483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4708711 total-bytes-write=52 payload-bytes-read=4708682/5242880 (89.81%)
+2019-01-31 11:30:11 1548934211.577549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4712197 total-bytes-write=52 payload-bytes-read=4712168/5242880 (89.88%)
+2019-01-31 11:30:11 1548934211.581595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4720115 total-bytes-write=52 payload-bytes-read=4720086/5242880 (90.03%)
+2019-01-31 11:30:11 1548934211.581674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4723103 total-bytes-write=52 payload-bytes-read=4723074/5242880 (90.09%)
+2019-01-31 11:30:11 1548934211.592326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4730573 total-bytes-write=52 payload-bytes-read=4730544/5242880 (90.23%)
+2019-01-31 11:30:11 1548934211.592505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4738491 total-bytes-write=52 payload-bytes-read=4738462/5242880 (90.38%)
+2019-01-31 11:30:11 1548934211.593198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4740483 total-bytes-write=52 payload-bytes-read=4740454/5242880 (90.42%)
+2019-01-31 11:30:11 1548934211.600804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4743969 total-bytes-write=52 payload-bytes-read=4743940/5242880 (90.48%)
+2019-01-31 11:30:11 1548934211.611312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4744965 total-bytes-write=52 payload-bytes-read=4744936/5242880 (90.50%)
+2019-01-31 11:30:11 1548934211.612067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4748451 total-bytes-write=52 payload-bytes-read=4748422/5242880 (90.57%)
+2019-01-31 11:30:11 1548934211.612747 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4752385 total-bytes-write=52 payload-bytes-read=4752356/5242880 (90.64%)
+2019-01-31 11:30:11 1548934211.613365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4758859 total-bytes-write=52 payload-bytes-read=4758830/5242880 (90.77%)
+2019-01-31 11:30:11 1548934211.642174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4759357 total-bytes-write=52 payload-bytes-read=4759328/5242880 (90.78%)
+2019-01-31 11:30:11 1548934211.658953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4760353 total-bytes-write=52 payload-bytes-read=4760324/5242880 (90.80%)
+2019-01-31 11:30:11 1548934211.659911 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4763839 total-bytes-write=52 payload-bytes-read=4763810/5242880 (90.86%)
+2019-01-31 11:30:11 1548934211.660811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4771757 total-bytes-write=52 payload-bytes-read=4771728/5242880 (91.01%)
+2019-01-31 11:30:11 1548934211.664430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4773749 total-bytes-write=52 payload-bytes-read=4773720/5242880 (91.05%)
+2019-01-31 11:30:11 1548934211.682884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4774745 total-bytes-write=52 payload-bytes-read=4774716/5242880 (91.07%)
+2019-01-31 11:30:11 1548934211.683615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4778231 total-bytes-write=52 payload-bytes-read=4778202/5242880 (91.14%)
+2019-01-31 11:30:11 1548934211.729405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4781717 total-bytes-write=52 payload-bytes-read=4781688/5242880 (91.20%)
+2019-01-31 11:30:11 1548934211.772370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4785651 total-bytes-write=52 payload-bytes-read=4785622/5242880 (91.28%)
+2019-01-31 11:30:11 1548934211.816397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4801537 total-bytes-write=52 payload-bytes-read=4801508/5242880 (91.58%)
+2019-01-31 11:30:11 1548934211.860376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4809007 total-bytes-write=52 payload-bytes-read=4808978/5242880 (91.72%)
+2019-01-31 11:30:11 1548934211.863682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4809505 total-bytes-write=52 payload-bytes-read=4809476/5242880 (91.73%)
+2019-01-31 11:30:11 1548934211.864744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4815481 total-bytes-write=52 payload-bytes-read=4815452/5242880 (91.85%)
+2019-01-31 11:30:11 1548934211.963720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4818917 total-bytes-write=52 payload-bytes-read=4818888/5242880 (91.91%)
+2019-01-31 11:30:11 1548934211.964232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4822901 total-bytes-write=52 payload-bytes-read=4822872/5242880 (91.99%)
+2019-01-31 11:30:11 1548934211.965416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4826885 total-bytes-write=52 payload-bytes-read=4826856/5242880 (92.06%)
+2019-01-31 11:30:12 1548934212.012374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4836297 total-bytes-write=52 payload-bytes-read=4836268/5242880 (92.24%)
+2019-01-31 11:30:12 1548934212.056426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4839783 total-bytes-write=52 payload-bytes-read=4839754/5242880 (92.31%)
+2019-01-31 11:30:12 1548934212.133674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4847751 total-bytes-write=52 payload-bytes-read=4847722/5242880 (92.46%)
+2019-01-31 11:30:12 1548934212.134849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4851187 total-bytes-write=52 payload-bytes-read=4851158/5242880 (92.53%)
+2019-01-31 11:30:12 1548934212.141285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4851685 total-bytes-write=52 payload-bytes-read=4851656/5242880 (92.54%)
+2019-01-31 11:30:12 1548934212.142433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4855171 total-bytes-write=52 payload-bytes-read=4855142/5242880 (92.60%)
+2019-01-31 11:30:12 1548934212.164767 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4856167 total-bytes-write=52 payload-bytes-read=4856138/5242880 (92.62%)
+2019-01-31 11:30:12 1548934212.165601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4859155 total-bytes-write=52 payload-bytes-read=4859126/5242880 (92.68%)
+2019-01-31 11:30:12 1548934212.338704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4859653 total-bytes-write=52 payload-bytes-read=4859624/5242880 (92.69%)
+2019-01-31 11:30:12 1548934212.398906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4867073 total-bytes-write=52 payload-bytes-read=4867044/5242880 (92.83%)
+2019-01-31 11:30:12 1548934212.399019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4870559 total-bytes-write=52 payload-bytes-read=4870530/5242880 (92.90%)
+2019-01-31 11:30:12 1548934212.405954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4878029 total-bytes-write=52 payload-bytes-read=4878000/5242880 (93.04%)
+2019-01-31 11:30:12 1548934212.406019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4880021 total-bytes-write=52 payload-bytes-read=4879992/5242880 (93.08%)
+2019-01-31 11:30:12 1548934212.425120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4883457 total-bytes-write=52 payload-bytes-read=4883428/5242880 (93.14%)
+2019-01-31 11:30:12 1548934212.429370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4891425 total-bytes-write=52 payload-bytes-read=4891396/5242880 (93.30%)
+2019-01-31 11:30:12 1548934212.429538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4895907 total-bytes-write=52 payload-bytes-read=4895878/5242880 (93.38%)
+2019-01-31 11:30:12 1548934212.429639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4899343 total-bytes-write=52 payload-bytes-read=4899314/5242880 (93.45%)
+2019-01-31 11:30:12 1548934212.434651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4900339 total-bytes-write=52 payload-bytes-read=4900310/5242880 (93.47%)
+2019-01-31 11:30:12 1548934212.435361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4903825 total-bytes-write=52 payload-bytes-read=4903796/5242880 (93.53%)
+2019-01-31 11:30:12 1548934212.436018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4907809 total-bytes-write=52 payload-bytes-read=4907780/5242880 (93.61%)
+2019-01-31 11:30:12 1548934212.445465 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4909303 total-bytes-write=52 payload-bytes-read=4909274/5242880 (93.64%)
+2019-01-31 11:30:12 1548934212.447375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4912789 total-bytes-write=52 payload-bytes-read=4912760/5242880 (93.70%)
+2019-01-31 11:30:12 1548934212.448638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4916723 total-bytes-write=52 payload-bytes-read=4916694/5242880 (93.78%)
+2019-01-31 11:30:12 1548934212.456757 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4917221 total-bytes-write=52 payload-bytes-read=4917192/5242880 (93.79%)
+2019-01-31 11:30:12 1548934212.457375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4920707 total-bytes-write=52 payload-bytes-read=4920678/5242880 (93.85%)
+2019-01-31 11:30:12 1548934212.458238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4924691 total-bytes-write=52 payload-bytes-read=4924662/5242880 (93.93%)
+2019-01-31 11:30:12 1548934212.459403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4928675 total-bytes-write=52 payload-bytes-read=4928646/5242880 (94.01%)
+2019-01-31 11:30:12 1548934212.504398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4945059 total-bytes-write=52 payload-bytes-read=4945030/5242880 (94.32%)
+2019-01-31 11:30:12 1548934212.567008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4945557 total-bytes-write=52 payload-bytes-read=4945528/5242880 (94.33%)
+2019-01-31 11:30:12 1548934212.644434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4948993 total-bytes-write=52 payload-bytes-read=4948964/5242880 (94.39%)
+2019-01-31 11:30:12 1548934212.645537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4956961 total-bytes-write=52 payload-bytes-read=4956932/5242880 (94.55%)
+2019-01-31 11:30:12 1548934212.652818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4961443 total-bytes-write=52 payload-bytes-read=4961414/5242880 (94.63%)
+2019-01-31 11:30:12 1548934212.652981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4964879 total-bytes-write=52 payload-bytes-read=4964850/5242880 (94.70%)
+2019-01-31 11:30:12 1548934212.653595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4972847 total-bytes-write=52 payload-bytes-read=4972818/5242880 (94.85%)
+2019-01-31 11:30:12 1548934212.653671 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4976333 total-bytes-write=52 payload-bytes-read=4976304/5242880 (94.92%)
+2019-01-31 11:30:12 1548934212.655154 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=4979819 total-bytes-write=52 payload-bytes-read=4979790/5242880 (94.98%)
+2019-01-31 11:30:12 1548934212.680241 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5050783 total-bytes-write=52 payload-bytes-read=5050754/5242880 (96.34%)
+2019-01-31 11:30:12 1548934212.683351 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5058253 total-bytes-write=52 payload-bytes-read=5058224/5242880 (96.48%)
+2019-01-31 11:30:12 1548934212.689669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5060245 total-bytes-write=52 payload-bytes-read=5060216/5242880 (96.52%)
+2019-01-31 11:30:12 1548934212.755416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5063681 total-bytes-write=52 payload-bytes-read=5063652/5242880 (96.58%)
+2019-01-31 11:30:12 1548934212.765895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5067167 total-bytes-write=52 payload-bytes-read=5067138/5242880 (96.65%)
+2019-01-31 11:30:12 1548934212.766580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5071151 total-bytes-write=52 payload-bytes-read=5071122/5242880 (96.72%)
+2019-01-31 11:30:12 1548934212.767067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5075135 total-bytes-write=52 payload-bytes-read=5075106/5242880 (96.80%)
+2019-01-31 11:30:12 1548934212.815324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5079183 total-bytes-write=52 payload-bytes-read=5079154/5242880 (96.88%)
+2019-01-31 11:30:12 1548934212.856346 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5081559 total-bytes-write=52 payload-bytes-read=5081530/5242880 (96.92%)
+2019-01-31 11:30:12 1548934212.872678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5082555 total-bytes-write=52 payload-bytes-read=5082526/5242880 (96.94%)
+2019-01-31 11:30:12 1548934212.874011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5086041 total-bytes-write=52 payload-bytes-read=5086012/5242880 (97.01%)
+2019-01-31 11:30:12 1548934212.947410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5086539 total-bytes-write=52 payload-bytes-read=5086510/5242880 (97.02%)
+2019-01-31 11:30:12 1548934212.947846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5090025 total-bytes-write=52 payload-bytes-read=5089996/5242880 (97.08%)
+2019-01-31 11:30:12 1548934212.949618 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5094073 total-bytes-write=52 payload-bytes-read=5094044/5242880 (97.16%)
+2019-01-31 11:30:12 1548934212.992384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5107405 total-bytes-write=52 payload-bytes-read=5107376/5242880 (97.42%)
+2019-01-31 11:30:13 1548934213.037546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5107903 total-bytes-write=52 payload-bytes-read=5107874/5242880 (97.42%)
+2019-01-31 11:30:13 1548934213.038663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5111389 total-bytes-write=52 payload-bytes-read=5111360/5242880 (97.49%)
+2019-01-31 11:30:13 1548934213.039304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5114825 total-bytes-write=52 payload-bytes-read=5114796/5242880 (97.56%)
+2019-01-31 11:30:13 1548934213.049772 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5118311 total-bytes-write=52 payload-bytes-read=5118282/5242880 (97.62%)
+2019-01-31 11:30:13 1548934213.050505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5120303 total-bytes-write=52 payload-bytes-read=5120274/5242880 (97.66%)
+2019-01-31 11:30:13 1548934213.062390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5123789 total-bytes-write=52 payload-bytes-read=5123760/5242880 (97.73%)
+2019-01-31 11:30:13 1548934213.063286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5127773 total-bytes-write=52 payload-bytes-read=5127744/5242880 (97.80%)
+2019-01-31 11:30:13 1548934213.063707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5131707 total-bytes-write=52 payload-bytes-read=5131678/5242880 (97.88%)
+2019-01-31 11:30:13 1548934213.189108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5135193 total-bytes-write=52 payload-bytes-read=5135164/5242880 (97.95%)
+2019-01-31 11:30:13 1548934213.210839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5135691 total-bytes-write=52 payload-bytes-read=5135662/5242880 (97.95%)
+2019-01-31 11:30:13 1548934213.211143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5138181 total-bytes-write=52 payload-bytes-read=5138152/5242880 (98.00%)
+2019-01-31 11:30:13 1548934213.307635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5145601 total-bytes-write=52 payload-bytes-read=5145572/5242880 (98.14%)
+2019-01-31 11:30:13 1548934213.307712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5149087 total-bytes-write=52 payload-bytes-read=5149058/5242880 (98.21%)
+2019-01-31 11:30:13 1548934213.312820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5152573 total-bytes-write=52 payload-bytes-read=5152544/5242880 (98.28%)
+2019-01-31 11:30:13 1548934213.356421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5184345 total-bytes-write=52 payload-bytes-read=5184316/5242880 (98.88%)
+2019-01-31 11:30:13 1548934213.404414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5206207 total-bytes-write=52 payload-bytes-read=5206178/5242880 (99.30%)
+2019-01-31 11:30:13 1548934213.421938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5207203 total-bytes-write=52 payload-bytes-read=5207174/5242880 (99.32%)
+2019-01-31 11:30:13 1548934213.422815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5210639 total-bytes-write=52 payload-bytes-read=5210610/5242880 (99.38%)
+2019-01-31 11:30:13 1548934213.423402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5212631 total-bytes-write=52 payload-bytes-read=5212602/5242880 (99.42%)
+2019-01-31 11:30:13 1548934213.433993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5216117 total-bytes-write=52 payload-bytes-read=5216088/5242880 (99.49%)
+2019-01-31 11:30:13 1548934213.444669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5219603 total-bytes-write=52 payload-bytes-read=5219574/5242880 (99.56%)
+2019-01-31 11:30:13 1548934213.488381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5233995 total-bytes-write=52 payload-bytes-read=5233966/5242880 (99.83%)
+2019-01-31 11:30:13 1548934213.532398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE total-bytes-read=5240967 total-bytes-write=52 payload-bytes-read=5240938/5242880 (99.96%)
+2019-01-31 11:30:13 1548934213.535778 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:30:13 1548934213.535851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=CHECKSUM,error=NONE total-bytes-read=5242909 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%)
+2019-01-31 11:30:13 1548934213.639334 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:30:13 1548934213.639401 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=SUCCESS,error=NONE MD5 checksums passed: computed=9ed6b4d59b2775265eda35b58ac62b34 received=9ed6b4d59b2775265eda35b58ac62b34
+2019-01-31 11:30:13 1548934213.639490 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,14,localhost:127.0.0.1:36384,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,1,phlox,GET,5242880,phlox,1,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=7 usecs-to-socket-connect=145 usecs-to-proxy-init=221 usecs-to-proxy-choice=274 usecs-to-proxy-request=325 usecs-to-proxy-response=-1 usecs-to-command=4461062 usecs-to-response=5149849 usecs-to-first-byte=5273477 usecs-to-last-byte=22390412 usecs-to-checksum=22493970
+2019-01-31 11:30:13 1548934213.639677 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:30:13 1548934213.639756 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 14
+2019-01-31 11:30:13 1548934213.639866 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:30:13 1548934213.639967 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:30:13 1548934213.640044 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:30:13 1548934213.640136 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:30:16 1548934216.858607 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:30:16 1548934216.858718 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:30:16 1548934216.858785 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36402 through socks proxy localhost:127.0.0.1:29280 to 4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080 successful
+2019-01-31 11:30:16 1548934216.858866 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:30:16 1548934216.858971 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,2,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:30:17 1548934217.264160 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:30:17 1548934217.264223 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:30:17 1548934217.362726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:30:17 1548934217.372590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=9491 total-bytes-write=52 payload-bytes-read=9462/5242880 (0.18%)
+2019-01-31 11:30:17 1548934217.412961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=14471 total-bytes-write=52 payload-bytes-read=14442/5242880 (0.28%)
+2019-01-31 11:30:17 1548934217.413019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=14969 total-bytes-write=52 payload-bytes-read=14940/5242880 (0.28%)
+2019-01-31 11:30:17 1548934217.449461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=18405 total-bytes-write=52 payload-bytes-read=18376/5242880 (0.35%)
+2019-01-31 11:30:17 1548934217.450447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:30:17 1548934217.452966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=26373 total-bytes-write=52 payload-bytes-read=26344/5242880 (0.50%)
+2019-01-31 11:30:17 1548934217.481202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=30855 total-bytes-write=52 payload-bytes-read=30826/5242880 (0.59%)
+2019-01-31 11:30:17 1548934217.490543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=34291 total-bytes-write=52 payload-bytes-read=34262/5242880 (0.65%)
+2019-01-31 11:30:17 1548934217.496883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=38275 total-bytes-write=52 payload-bytes-read=38246/5242880 (0.73%)
+2019-01-31 11:30:17 1548934217.500486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=42259 total-bytes-write=52 payload-bytes-read=42230/5242880 (0.81%)
+2019-01-31 11:30:17 1548934217.500906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=46741 total-bytes-write=52 payload-bytes-read=46712/5242880 (0.89%)
+2019-01-31 11:30:17 1548934217.528808 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=48733 total-bytes-write=52 payload-bytes-read=48704/5242880 (0.93%)
+2019-01-31 11:30:17 1548934217.533170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=55655 total-bytes-write=52 payload-bytes-read=55626/5242880 (1.06%)
+2019-01-31 11:30:17 1548934217.550417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=59703 total-bytes-write=52 payload-bytes-read=59674/5242880 (1.14%)
+2019-01-31 11:30:17 1548934217.592448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=92905 total-bytes-write=52 payload-bytes-read=92876/5242880 (1.77%)
+2019-01-31 11:30:17 1548934217.636426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=118203 total-bytes-write=52 payload-bytes-read=118174/5242880 (2.25%)
+2019-01-31 11:30:17 1548934217.636662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=122187 total-bytes-write=52 payload-bytes-read=122158/5242880 (2.33%)
+2019-01-31 11:30:17 1548934217.637303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=126171 total-bytes-write=52 payload-bytes-read=126142/5242880 (2.41%)
+2019-01-31 11:30:17 1548934217.680416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=156947 total-bytes-write=52 payload-bytes-read=156918/5242880 (2.99%)
+2019-01-31 11:30:17 1548934217.724482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=211079 total-bytes-write=52 payload-bytes-read=211050/5242880 (4.03%)
+2019-01-31 11:30:17 1548934217.768436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=246785 total-bytes-write=52 payload-bytes-read=246756/5242880 (4.71%)
+2019-01-31 11:30:17 1548934217.773336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:30:17 1548934217.946668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:30:17 1548934217.955799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=254753 total-bytes-write=52 payload-bytes-read=254724/5242880 (4.86%)
+2019-01-31 11:30:17 1548934217.958488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=258737 total-bytes-write=52 payload-bytes-read=258708/5242880 (4.93%)
+2019-01-31 11:30:17 1548934217.959724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=266655 total-bytes-write=52 payload-bytes-read=266626/5242880 (5.09%)
+2019-01-31 11:30:17 1548934217.965488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=267153 total-bytes-write=52 payload-bytes-read=267124/5242880 (5.09%)
+2019-01-31 11:30:17 1548934217.966208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:30:17 1548934217.969287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=278557 total-bytes-write=52 payload-bytes-read=278528/5242880 (5.31%)
+2019-01-31 11:30:17 1548934217.969369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=282605 total-bytes-write=52 payload-bytes-read=282576/5242880 (5.39%)
+2019-01-31 11:30:18 1548934218.012391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=288517 total-bytes-write=52 payload-bytes-read=288488/5242880 (5.50%)
+2019-01-31 11:30:18 1548934218.056381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:30:18 1548934218.063859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=292999 total-bytes-write=52 payload-bytes-read=292970/5242880 (5.59%)
+2019-01-31 11:30:18 1548934218.064450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=296435 total-bytes-write=52 payload-bytes-read=296406/5242880 (5.65%)
+2019-01-31 11:30:18 1548934218.065230 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=297431 total-bytes-write=52 payload-bytes-read=297402/5242880 (5.67%)
+2019-01-31 11:30:18 1548934218.066109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=300917 total-bytes-write=52 payload-bytes-read=300888/5242880 (5.74%)
+2019-01-31 11:30:18 1548934218.067231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=308885 total-bytes-write=52 payload-bytes-read=308856/5242880 (5.89%)
+2019-01-31 11:30:18 1548934218.067292 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=311325 total-bytes-write=52 payload-bytes-read=311296/5242880 (5.94%)
+2019-01-31 11:30:18 1548934218.083618 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=312819 total-bytes-write=52 payload-bytes-read=312790/5242880 (5.97%)
+2019-01-31 11:30:18 1548934218.092727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=314811 total-bytes-write=52 payload-bytes-read=314782/5242880 (6.00%)
+2019-01-31 11:30:18 1548934218.159070 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=318297 total-bytes-write=52 payload-bytes-read=318268/5242880 (6.07%)
+2019-01-31 11:30:18 1548934218.169554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=321783 total-bytes-write=52 payload-bytes-read=321754/5242880 (6.14%)
+2019-01-31 11:30:18 1548934218.212402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=333685 total-bytes-write=52 payload-bytes-read=333656/5242880 (6.36%)
+2019-01-31 11:30:18 1548934218.256399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=339163 total-bytes-write=52 payload-bytes-read=339134/5242880 (6.47%)
+2019-01-31 11:30:18 1548934218.274560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=342649 total-bytes-write=52 payload-bytes-read=342620/5242880 (6.53%)
+2019-01-31 11:30:18 1548934218.276298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=346583 total-bytes-write=52 payload-bytes-read=346554/5242880 (6.61%)
+2019-01-31 11:30:18 1548934218.277715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=354551 total-bytes-write=52 payload-bytes-read=354522/5242880 (6.76%)
+2019-01-31 11:30:18 1548934218.277796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=358535 total-bytes-write=52 payload-bytes-read=358506/5242880 (6.84%)
+2019-01-31 11:30:18 1548934218.278581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=362469 total-bytes-write=52 payload-bytes-read=362440/5242880 (6.91%)
+2019-01-31 11:30:18 1548934218.279081 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=370437 total-bytes-write=52 payload-bytes-read=370408/5242880 (7.06%)
+2019-01-31 11:30:18 1548934218.288550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=377857 total-bytes-write=52 payload-bytes-read=377828/5242880 (7.21%)
+2019-01-31 11:30:18 1548934218.288697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=385825 total-bytes-write=52 payload-bytes-read=385796/5242880 (7.36%)
+2019-01-31 11:30:18 1548934218.294238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=386821 total-bytes-write=52 payload-bytes-read=386792/5242880 (7.38%)
+2019-01-31 11:30:18 1548934218.295455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=393245 total-bytes-write=52 payload-bytes-read=393216/5242880 (7.50%)
+2019-01-31 11:30:18 1548934218.312846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=396731 total-bytes-write=52 payload-bytes-read=396702/5242880 (7.57%)
+2019-01-31 11:30:18 1548934218.316032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=397727 total-bytes-write=52 payload-bytes-read=397698/5242880 (7.59%)
+2019-01-31 11:30:18 1548934218.317095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=401213 total-bytes-write=52 payload-bytes-read=401184/5242880 (7.65%)
+2019-01-31 11:30:18 1548934218.331871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=402707 total-bytes-write=52 payload-bytes-read=402678/5242880 (7.68%)
+2019-01-31 11:30:18 1548934218.345147 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=406193 total-bytes-write=52 payload-bytes-read=406164/5242880 (7.75%)
+2019-01-31 11:30:18 1548934218.345720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=410127 total-bytes-write=52 payload-bytes-read=410098/5242880 (7.82%)
+2019-01-31 11:30:18 1548934218.354018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=413613 total-bytes-write=52 payload-bytes-read=413584/5242880 (7.89%)
+2019-01-31 11:30:18 1548934218.367736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=421581 total-bytes-write=52 payload-bytes-read=421552/5242880 (8.04%)
+2019-01-31 11:30:18 1548934218.375533 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=422079 total-bytes-write=52 payload-bytes-read=422050/5242880 (8.05%)
+2019-01-31 11:30:18 1548934218.376680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=425565 total-bytes-write=52 payload-bytes-read=425536/5242880 (8.12%)
+2019-01-31 11:30:18 1548934218.378415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=429499 total-bytes-write=52 payload-bytes-read=429470/5242880 (8.19%)
+2019-01-31 11:30:18 1548934218.380429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=433483 total-bytes-write=52 payload-bytes-read=433454/5242880 (8.27%)
+2019-01-31 11:30:18 1548934218.389862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=440953 total-bytes-write=52 payload-bytes-read=440924/5242880 (8.41%)
+2019-01-31 11:30:18 1548934218.392037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=448871 total-bytes-write=52 payload-bytes-read=448842/5242880 (8.56%)
+2019-01-31 11:30:18 1548934218.392211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=452855 total-bytes-write=52 payload-bytes-read=452826/5242880 (8.64%)
+2019-01-31 11:30:18 1548934218.392271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=456839 total-bytes-write=52 payload-bytes-read=456810/5242880 (8.71%)
+2019-01-31 11:30:18 1548934218.432424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=493541 total-bytes-write=52 payload-bytes-read=493512/5242880 (9.41%)
+2019-01-31 11:30:18 1548934218.476407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=510423 total-bytes-write=52 payload-bytes-read=510394/5242880 (9.73%)
+2019-01-31 11:30:18 1548934218.485137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=513909 total-bytes-write=52 payload-bytes-read=513880/5242880 (9.80%)
+2019-01-31 11:30:18 1548934218.504745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=515403 total-bytes-write=52 payload-bytes-read=515374/5242880 (9.83%)
+2019-01-31 11:30:18 1548934218.540973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=518889 total-bytes-write=52 payload-bytes-read=518860/5242880 (9.90%)
+2019-01-31 11:30:18 1548934218.575077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=526309 total-bytes-write=52 payload-bytes-read=526280/5242880 (10.04%)
+2019-01-31 11:30:18 1548934218.575192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=534277 total-bytes-write=52 payload-bytes-read=534248/5242880 (10.19%)
+2019-01-31 11:30:18 1548934218.575258 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=538261 total-bytes-write=52 payload-bytes-read=538232/5242880 (10.27%)
+2019-01-31 11:30:18 1548934218.582765 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=541697 total-bytes-write=52 payload-bytes-read=541668/5242880 (10.33%)
+2019-01-31 11:30:18 1548934218.590568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=543689 total-bytes-write=52 payload-bytes-read=543660/5242880 (10.37%)
+2019-01-31 11:30:18 1548934218.639230 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=545681 total-bytes-write=52 payload-bytes-read=545652/5242880 (10.41%)
+2019-01-31 11:30:18 1548934218.680365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=553151 total-bytes-write=52 payload-bytes-read=553122/5242880 (10.55%)
+2019-01-31 11:30:18 1548934218.724423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=582931 total-bytes-write=52 payload-bytes-read=582902/5242880 (11.12%)
+2019-01-31 11:30:18 1548934218.772394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=591845 total-bytes-write=52 payload-bytes-read=591816/5242880 (11.29%)
+2019-01-31 11:30:18 1548934218.812962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=592841 total-bytes-write=52 payload-bytes-read=592812/5242880 (11.31%)
+2019-01-31 11:30:18 1548934218.813398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=595331 total-bytes-write=52 payload-bytes-read=595302/5242880 (11.35%)
+2019-01-31 11:30:18 1548934218.853304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=598817 total-bytes-write=52 payload-bytes-read=598788/5242880 (11.42%)
+2019-01-31 11:30:18 1548934218.861613 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=602303 total-bytes-write=52 payload-bytes-read=602274/5242880 (11.49%)
+2019-01-31 11:30:18 1548934218.904442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=634075 total-bytes-write=52 payload-bytes-read=634046/5242880 (12.09%)
+2019-01-31 11:30:19 1548934219.088681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=637561 total-bytes-write=52 payload-bytes-read=637532/5242880 (12.16%)
+2019-01-31 11:30:19 1548934219.106783 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=644981 total-bytes-write=52 payload-bytes-read=644952/5242880 (12.30%)
+2019-01-31 11:30:19 1548934219.155139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=645977 total-bytes-write=52 payload-bytes-read=645948/5242880 (12.32%)
+2019-01-31 11:30:19 1548934219.168743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=648965 total-bytes-write=52 payload-bytes-read=648936/5242880 (12.38%)
+2019-01-31 11:30:19 1548934219.179166 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=652451 total-bytes-write=52 payload-bytes-read=652422/5242880 (12.44%)
+2019-01-31 11:30:19 1548934219.180086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=656385 total-bytes-write=52 payload-bytes-read=656356/5242880 (12.52%)
+2019-01-31 11:30:19 1548934219.180495 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=660369 total-bytes-write=52 payload-bytes-read=660340/5242880 (12.59%)
+2019-01-31 11:30:19 1548934219.187378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=663855 total-bytes-write=52 payload-bytes-read=663826/5242880 (12.66%)
+2019-01-31 11:30:19 1548934219.188289 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=667839 total-bytes-write=52 payload-bytes-read=667810/5242880 (12.74%)
+2019-01-31 11:30:19 1548934219.189150 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=671773 total-bytes-write=52 payload-bytes-read=671744/5242880 (12.81%)
+2019-01-31 11:30:19 1548934219.189767 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=676255 total-bytes-write=52 payload-bytes-read=676226/5242880 (12.90%)
+2019-01-31 11:30:19 1548934219.189821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=677749 total-bytes-write=52 payload-bytes-read=677720/5242880 (12.93%)
+2019-01-31 11:30:19 1548934219.242000 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=678247 total-bytes-write=52 payload-bytes-read=678218/5242880 (12.94%)
+2019-01-31 11:30:19 1548934219.287864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=678745 total-bytes-write=52 payload-bytes-read=678716/5242880 (12.95%)
+2019-01-31 11:30:19 1548934219.294240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=682231 total-bytes-write=52 payload-bytes-read=682202/5242880 (13.01%)
+2019-01-31 11:30:19 1548934219.333518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=683227 total-bytes-write=52 payload-bytes-read=683198/5242880 (13.03%)
+2019-01-31 11:30:19 1548934219.334148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=686215 total-bytes-write=52 payload-bytes-read=686186/5242880 (13.09%)
+2019-01-31 11:30:19 1548934219.353312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=689651 total-bytes-write=52 payload-bytes-read=689622/5242880 (13.15%)
+2019-01-31 11:30:19 1548934219.354278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=693635 total-bytes-write=52 payload-bytes-read=693606/5242880 (13.23%)
+2019-01-31 11:30:19 1548934219.373627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=697121 total-bytes-write=52 payload-bytes-read=697092/5242880 (13.30%)
+2019-01-31 11:30:19 1548934219.374927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=705039 total-bytes-write=52 payload-bytes-read=705010/5242880 (13.45%)
+2019-01-31 11:30:19 1548934219.375664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=709521 total-bytes-write=52 payload-bytes-read=709492/5242880 (13.53%)
+2019-01-31 11:30:19 1548934219.375733 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=711015 total-bytes-write=52 payload-bytes-read=710986/5242880 (13.56%)
+2019-01-31 11:30:19 1548934219.382566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=714501 total-bytes-write=52 payload-bytes-read=714472/5242880 (13.63%)
+2019-01-31 11:30:19 1548934219.383592 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=718485 total-bytes-write=52 payload-bytes-read=718456/5242880 (13.70%)
+2019-01-31 11:30:19 1548934219.386225 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=722419 total-bytes-write=52 payload-bytes-read=722390/5242880 (13.78%)
+2019-01-31 11:30:19 1548934219.393935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=722917 total-bytes-write=52 payload-bytes-read=722888/5242880 (13.79%)
+2019-01-31 11:30:19 1548934219.396208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=726403 total-bytes-write=52 payload-bytes-read=726374/5242880 (13.85%)
+2019-01-31 11:30:19 1548934219.399103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=734371 total-bytes-write=52 payload-bytes-read=734342/5242880 (14.01%)
+2019-01-31 11:30:19 1548934219.399219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=738803 total-bytes-write=52 payload-bytes-read=738774/5242880 (14.09%)
+2019-01-31 11:30:19 1548934219.399297 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=743783 total-bytes-write=52 payload-bytes-read=743754/5242880 (14.19%)
+2019-01-31 11:30:19 1548934219.421938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=744779 total-bytes-write=52 payload-bytes-read=744750/5242880 (14.20%)
+2019-01-31 11:30:19 1548934219.422233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=746771 total-bytes-write=52 payload-bytes-read=746742/5242880 (14.24%)
+2019-01-31 11:30:19 1548934219.452087 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=750257 total-bytes-write=52 payload-bytes-read=750228/5242880 (14.31%)
+2019-01-31 11:30:19 1548934219.453126 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=754191 total-bytes-write=52 payload-bytes-read=754162/5242880 (14.38%)
+2019-01-31 11:30:19 1548934219.461138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=755685 total-bytes-write=52 payload-bytes-read=755656/5242880 (14.41%)
+2019-01-31 11:30:19 1548934219.462084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=759171 total-bytes-write=52 payload-bytes-read=759142/5242880 (14.48%)
+2019-01-31 11:30:19 1548934219.463545 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=767139 total-bytes-write=52 payload-bytes-read=767110/5242880 (14.63%)
+2019-01-31 11:30:19 1548934219.464089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=771073 total-bytes-write=52 payload-bytes-read=771044/5242880 (14.71%)
+2019-01-31 11:30:19 1548934219.471882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=771571 total-bytes-write=52 payload-bytes-read=771542/5242880 (14.72%)
+2019-01-31 11:30:19 1548934219.473345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=775057 total-bytes-write=52 payload-bytes-read=775028/5242880 (14.78%)
+2019-01-31 11:30:19 1548934219.475360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=779041 total-bytes-write=52 payload-bytes-read=779012/5242880 (14.86%)
+2019-01-31 11:30:19 1548934219.479491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=786959 total-bytes-write=52 payload-bytes-read=786930/5242880 (15.01%)
+2019-01-31 11:30:19 1548934219.484020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=790943 total-bytes-write=52 payload-bytes-read=790914/5242880 (15.09%)
+2019-01-31 11:30:19 1548934219.484297 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=798911 total-bytes-write=52 payload-bytes-read=798882/5242880 (15.24%)
+2019-01-31 11:30:19 1548934219.484376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=803343 total-bytes-write=52 payload-bytes-read=803314/5242880 (15.32%)
+2019-01-31 11:30:19 1548934219.484525 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=810813 total-bytes-write=52 payload-bytes-read=810784/5242880 (15.46%)
+2019-01-31 11:30:19 1548934219.490458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=814299 total-bytes-write=52 payload-bytes-read=814270/5242880 (15.53%)
+2019-01-31 11:30:19 1548934219.492026 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=818283 total-bytes-write=52 payload-bytes-read=818254/5242880 (15.61%)
+2019-01-31 11:30:19 1548934219.494179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=822217 total-bytes-write=52 payload-bytes-read=822188/5242880 (15.68%)
+2019-01-31 11:30:19 1548934219.499789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=825703 total-bytes-write=52 payload-bytes-read=825674/5242880 (15.75%)
+2019-01-31 11:30:19 1548934219.500485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=829687 total-bytes-write=52 payload-bytes-read=829658/5242880 (15.82%)
+2019-01-31 11:30:19 1548934219.502026 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=833671 total-bytes-write=52 payload-bytes-read=833642/5242880 (15.90%)
+2019-01-31 11:30:19 1548934219.544433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=858471 total-bytes-write=52 payload-bytes-read=858442/5242880 (16.37%)
+2019-01-31 11:30:19 1548934219.588386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=875353 total-bytes-write=52 payload-bytes-read=875324/5242880 (16.70%)
+2019-01-31 11:30:19 1548934219.588675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=877843 total-bytes-write=52 payload-bytes-read=877814/5242880 (16.74%)
+2019-01-31 11:30:19 1548934219.599547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=881329 total-bytes-write=52 payload-bytes-read=881300/5242880 (16.81%)
+2019-01-31 11:30:19 1548934219.629094 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=882823 total-bytes-write=52 payload-bytes-read=882794/5242880 (16.84%)
+2019-01-31 11:30:19 1548934219.656648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=886259 total-bytes-write=52 payload-bytes-read=886230/5242880 (16.90%)
+2019-01-31 11:30:19 1548934219.666637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=889745 total-bytes-write=52 payload-bytes-read=889716/5242880 (16.97%)
+2019-01-31 11:30:19 1548934219.696744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=891737 total-bytes-write=52 payload-bytes-read=891708/5242880 (17.01%)
+2019-01-31 11:30:19 1548934219.754937 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=893231 total-bytes-write=52 payload-bytes-read=893202/5242880 (17.04%)
+2019-01-31 11:30:19 1548934219.765606 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=896717 total-bytes-write=52 payload-bytes-read=896688/5242880 (17.10%)
+2019-01-31 11:30:19 1548934219.767294 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=904635 total-bytes-write=52 payload-bytes-read=904606/5242880 (17.25%)
+2019-01-31 11:30:19 1548934219.767579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=908619 total-bytes-write=52 payload-bytes-read=908590/5242880 (17.33%)
+2019-01-31 11:30:19 1548934219.776634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=909615 total-bytes-write=52 payload-bytes-read=909586/5242880 (17.35%)
+2019-01-31 11:30:19 1548934219.776706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=913101 total-bytes-write=52 payload-bytes-read=913072/5242880 (17.42%)
+2019-01-31 11:30:19 1548934219.778107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=916089 total-bytes-write=52 payload-bytes-read=916060/5242880 (17.47%)
+2019-01-31 11:30:19 1548934219.795204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=922513 total-bytes-write=52 payload-bytes-read=922484/5242880 (17.59%)
+2019-01-31 11:30:19 1548934219.833379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=925003 total-bytes-write=52 payload-bytes-read=924974/5242880 (17.64%)
+2019-01-31 11:30:19 1548934219.856639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=932473 total-bytes-write=52 payload-bytes-read=932444/5242880 (17.78%)
+2019-01-31 11:30:19 1548934219.856706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=934415 total-bytes-write=52 payload-bytes-read=934386/5242880 (17.82%)
+2019-01-31 11:30:19 1548934219.873455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=936905 total-bytes-write=52 payload-bytes-read=936876/5242880 (17.87%)
+2019-01-31 11:30:19 1548934219.913420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=940391 total-bytes-write=52 payload-bytes-read=940362/5242880 (17.94%)
+2019-01-31 11:30:19 1548934219.959965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=940889 total-bytes-write=52 payload-bytes-read=940860/5242880 (17.95%)
+2019-01-31 11:30:20 1548934220.072173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=942881 total-bytes-write=52 payload-bytes-read=942852/5242880 (17.98%)
+2019-01-31 11:30:20 1548934220.167914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=946367 total-bytes-write=52 payload-bytes-read=946338/5242880 (18.05%)
+2019-01-31 11:30:20 1548934220.169652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=954285 total-bytes-write=52 payload-bytes-read=954256/5242880 (18.20%)
+2019-01-31 11:30:20 1548934220.177703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=955779 total-bytes-write=52 payload-bytes-read=955750/5242880 (18.23%)
+2019-01-31 11:30:20 1548934220.178712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=963249 total-bytes-write=52 payload-bytes-read=963220/5242880 (18.37%)
+2019-01-31 11:30:20 1548934220.197977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=966237 total-bytes-write=52 payload-bytes-read=966208/5242880 (18.43%)
+2019-01-31 11:30:20 1548934220.246359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=969673 total-bytes-write=52 payload-bytes-read=969644/5242880 (18.49%)
+2019-01-31 11:30:20 1548934220.247381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=973657 total-bytes-write=52 payload-bytes-read=973628/5242880 (18.57%)
+2019-01-31 11:30:20 1548934220.293232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=974653 total-bytes-write=52 payload-bytes-read=974624/5242880 (18.59%)
+2019-01-31 11:30:20 1548934220.346296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=978139 total-bytes-write=52 payload-bytes-read=978110/5242880 (18.66%)
+2019-01-31 11:30:20 1548934220.357198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=981625 total-bytes-write=52 payload-bytes-read=981596/5242880 (18.72%)
+2019-01-31 11:30:20 1548934220.400456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1011405 total-bytes-write=52 payload-bytes-read=1011376/5242880 (19.29%)
+2019-01-31 11:30:20 1548934220.444393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1019323 total-bytes-write=52 payload-bytes-read=1019294/5242880 (19.44%)
+2019-01-31 11:30:20 1548934220.464545 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1019821 total-bytes-write=52 payload-bytes-read=1019792/5242880 (19.45%)
+2019-01-31 11:30:20 1548934220.465021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1023307 total-bytes-write=52 payload-bytes-read=1023278/5242880 (19.52%)
+2019-01-31 11:30:20 1548934220.486444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1024303 total-bytes-write=52 payload-bytes-read=1024274/5242880 (19.54%)
+2019-01-31 11:30:20 1548934220.553712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1027789 total-bytes-write=52 payload-bytes-read=1027760/5242880 (19.60%)
+2019-01-31 11:30:20 1548934220.582169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1028287 total-bytes-write=52 payload-bytes-read=1028258/5242880 (19.61%)
+2019-01-31 11:30:20 1548934220.583086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1031773 total-bytes-write=52 payload-bytes-read=1031744/5242880 (19.68%)
+2019-01-31 11:30:20 1548934220.583863 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1035707 total-bytes-write=52 payload-bytes-read=1035678/5242880 (19.75%)
+2019-01-31 11:30:20 1548934220.604393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1039193 total-bytes-write=52 payload-bytes-read=1039164/5242880 (19.82%)
+2019-01-31 11:30:20 1548934220.655842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1039691 total-bytes-write=52 payload-bytes-read=1039662/5242880 (19.83%)
+2019-01-31 11:30:20 1548934220.684074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1047161 total-bytes-write=52 payload-bytes-read=1047132/5242880 (19.97%)
+2019-01-31 11:30:20 1548934220.684954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1051095 total-bytes-write=52 payload-bytes-read=1051066/5242880 (20.05%)
+2019-01-31 11:30:20 1548934220.751709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1054581 total-bytes-write=52 payload-bytes-read=1054552/5242880 (20.11%)
+2019-01-31 11:30:20 1548934220.790961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1055079 total-bytes-write=52 payload-bytes-read=1055050/5242880 (20.12%)
+2019-01-31 11:30:20 1548934220.791425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1058565 total-bytes-write=52 payload-bytes-read=1058536/5242880 (20.19%)
+2019-01-31 11:30:20 1548934220.792397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1062549 total-bytes-write=52 payload-bytes-read=1062520/5242880 (20.27%)
+2019-01-31 11:30:20 1548934220.792980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1066483 total-bytes-write=52 payload-bytes-read=1066454/5242880 (20.34%)
+2019-01-31 11:30:20 1548934220.830966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1069969 total-bytes-write=52 payload-bytes-read=1069940/5242880 (20.41%)
+2019-01-31 11:30:20 1548934220.868591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1070467 total-bytes-write=52 payload-bytes-read=1070438/5242880 (20.42%)
+2019-01-31 11:30:20 1548934220.869776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1073953 total-bytes-write=52 payload-bytes-read=1073924/5242880 (20.48%)
+2019-01-31 11:30:20 1548934220.871186 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1076443 total-bytes-write=52 payload-bytes-read=1076414/5242880 (20.53%)
+2019-01-31 11:30:20 1548934220.946029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1079929 total-bytes-write=52 payload-bytes-read=1079900/5242880 (20.60%)
+2019-01-31 11:30:20 1548934220.975214 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1080925 total-bytes-write=52 payload-bytes-read=1080896/5242880 (20.62%)
+2019-01-31 11:30:20 1548934220.976672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1084361 total-bytes-write=52 payload-bytes-read=1084332/5242880 (20.68%)
+2019-01-31 11:30:20 1548934220.985045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1087847 total-bytes-write=52 payload-bytes-read=1087818/5242880 (20.75%)
+2019-01-31 11:30:21 1548934221.032017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1088345 total-bytes-write=52 payload-bytes-read=1088316/5242880 (20.76%)
+2019-01-31 11:30:21 1548934221.049528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1091831 total-bytes-write=52 payload-bytes-read=1091802/5242880 (20.82%)
+2019-01-31 11:30:21 1548934221.095963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1092827 total-bytes-write=52 payload-bytes-read=1092798/5242880 (20.84%)
+2019-01-31 11:30:21 1548934221.157619 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1096313 total-bytes-write=52 payload-bytes-read=1096284/5242880 (20.91%)
+2019-01-31 11:30:21 1548934221.168383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1103733 total-bytes-write=52 payload-bytes-read=1103704/5242880 (21.05%)
+2019-01-31 11:30:21 1548934221.168841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1107717 total-bytes-write=52 payload-bytes-read=1107688/5242880 (21.13%)
+2019-01-31 11:30:21 1548934221.189086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1111203 total-bytes-write=52 payload-bytes-read=1111174/5242880 (21.19%)
+2019-01-31 11:30:21 1548934221.191300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1119121 total-bytes-write=52 payload-bytes-read=1119092/5242880 (21.34%)
+2019-01-31 11:30:21 1548934221.191426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1123603 total-bytes-write=52 payload-bytes-read=1123574/5242880 (21.43%)
+2019-01-31 11:30:21 1548934221.192567 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1131023 total-bytes-write=52 payload-bytes-read=1130994/5242880 (21.57%)
+2019-01-31 11:30:21 1548934221.192636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1135007 total-bytes-write=52 payload-bytes-read=1134978/5242880 (21.65%)
+2019-01-31 11:30:21 1548934221.193019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1138991 total-bytes-write=52 payload-bytes-read=1138962/5242880 (21.72%)
+2019-01-31 11:30:21 1548934221.236402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1154877 total-bytes-write=52 payload-bytes-read=1154848/5242880 (22.03%)
+2019-01-31 11:30:21 1548934221.284357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1155375 total-bytes-write=52 payload-bytes-read=1155346/5242880 (22.04%)
+2019-01-31 11:30:21 1548934221.286397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1155873 total-bytes-write=52 payload-bytes-read=1155844/5242880 (22.05%)
+2019-01-31 11:30:21 1548934221.344876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1159359 total-bytes-write=52 payload-bytes-read=1159330/5242880 (22.11%)
+2019-01-31 11:30:21 1548934221.345347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1163293 total-bytes-write=52 payload-bytes-read=1163264/5242880 (22.19%)
+2019-01-31 11:30:21 1548934221.354363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1164787 total-bytes-write=52 payload-bytes-read=1164758/5242880 (22.22%)
+2019-01-31 11:30:21 1548934221.355095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1168273 total-bytes-write=52 payload-bytes-read=1168244/5242880 (22.28%)
+2019-01-31 11:30:21 1548934221.359542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1176241 total-bytes-write=52 payload-bytes-read=1176212/5242880 (22.43%)
+2019-01-31 11:30:21 1548934221.359625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1180175 total-bytes-write=52 payload-bytes-read=1180146/5242880 (22.51%)
+2019-01-31 11:30:21 1548934221.363858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1180673 total-bytes-write=52 payload-bytes-read=1180644/5242880 (22.52%)
+2019-01-31 11:30:21 1548934221.365131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1184159 total-bytes-write=52 payload-bytes-read=1184130/5242880 (22.59%)
+2019-01-31 11:30:21 1548934221.365643 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1188143 total-bytes-write=52 payload-bytes-read=1188114/5242880 (22.66%)
+2019-01-31 11:30:21 1548934221.372491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1192127 total-bytes-write=52 payload-bytes-read=1192098/5242880 (22.74%)
+2019-01-31 11:30:21 1548934221.416518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1253679 total-bytes-write=52 payload-bytes-read=1253650/5242880 (23.91%)
+2019-01-31 11:30:21 1548934221.460379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1259157 total-bytes-write=52 payload-bytes-read=1259128/5242880 (24.02%)
+2019-01-31 11:30:21 1548934221.463383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1261149 total-bytes-write=52 payload-bytes-read=1261120/5242880 (24.05%)
+2019-01-31 11:30:21 1548934221.472476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1264585 total-bytes-write=52 payload-bytes-read=1264556/5242880 (24.12%)
+2019-01-31 11:30:21 1548934221.473537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1268569 total-bytes-write=52 payload-bytes-read=1268540/5242880 (24.20%)
+2019-01-31 11:30:21 1548934221.483238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1269067 total-bytes-write=52 payload-bytes-read=1269038/5242880 (24.20%)
+2019-01-31 11:30:21 1548934221.485302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1276537 total-bytes-write=52 payload-bytes-read=1276508/5242880 (24.35%)
+2019-01-31 11:30:21 1548934221.486674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1279973 total-bytes-write=52 payload-bytes-read=1279944/5242880 (24.41%)
+2019-01-31 11:30:21 1548934221.496706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1283459 total-bytes-write=52 payload-bytes-read=1283430/5242880 (24.48%)
+2019-01-31 11:30:21 1548934221.497521 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1291427 total-bytes-write=52 payload-bytes-read=1291398/5242880 (24.63%)
+2019-01-31 11:30:21 1548934221.501439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1292921 total-bytes-write=52 payload-bytes-read=1292892/5242880 (24.66%)
+2019-01-31 11:30:21 1548934221.502966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1300341 total-bytes-write=52 payload-bytes-read=1300312/5242880 (24.80%)
+2019-01-31 11:30:21 1548934221.504225 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1308309 total-bytes-write=52 payload-bytes-read=1308280/5242880 (24.95%)
+2019-01-31 11:30:21 1548934221.504301 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1308807 total-bytes-write=52 payload-bytes-read=1308778/5242880 (24.96%)
+2019-01-31 11:30:21 1548934221.504734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1310749 total-bytes-write=52 payload-bytes-read=1310720/5242880 (25.00%)
+2019-01-31 11:30:21 1548934221.512920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1312741 total-bytes-write=52 payload-bytes-read=1312712/5242880 (25.04%)
+2019-01-31 11:30:21 1548934221.552345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1315231 total-bytes-write=52 payload-bytes-read=1315202/5242880 (25.09%)
+2019-01-31 11:30:21 1548934221.766436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1318717 total-bytes-write=52 payload-bytes-read=1318688/5242880 (25.15%)
+2019-01-31 11:30:21 1548934221.766996 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1322701 total-bytes-write=52 payload-bytes-read=1322672/5242880 (25.23%)
+2019-01-31 11:30:21 1548934221.778187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:30:21 1548934221.778256 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1334105 total-bytes-write=52 payload-bytes-read=1334076/5242880 (25.45%)
+2019-01-31 11:30:21 1548934221.803702 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1341575 total-bytes-write=52 payload-bytes-read=1341546/5242880 (25.59%)
+2019-01-31 11:30:21 1548934221.803814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1345509 total-bytes-write=52 payload-bytes-read=1345480/5242880 (25.66%)
+2019-01-31 11:30:21 1548934221.807597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1349991 total-bytes-write=52 payload-bytes-read=1349962/5242880 (25.75%)
+2019-01-31 11:30:21 1548934221.807799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1357461 total-bytes-write=52 payload-bytes-read=1357432/5242880 (25.89%)
+2019-01-31 11:30:21 1548934221.808080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1369363 total-bytes-write=52 payload-bytes-read=1369334/5242880 (26.12%)
+2019-01-31 11:30:21 1548934221.844812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1369861 total-bytes-write=52 payload-bytes-read=1369832/5242880 (26.13%)
+2019-01-31 11:30:21 1548934221.845838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1373347 total-bytes-write=52 payload-bytes-read=1373318/5242880 (26.19%)
+2019-01-31 11:30:21 1548934221.847920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1377281 total-bytes-write=52 payload-bytes-read=1377252/5242880 (26.27%)
+2019-01-31 11:30:21 1548934221.848771 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1385249 total-bytes-write=52 payload-bytes-read=1385220/5242880 (26.42%)
+2019-01-31 11:30:21 1548934221.848841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1389233 total-bytes-write=52 payload-bytes-read=1389204/5242880 (26.50%)
+2019-01-31 11:30:21 1548934221.855044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1390229 total-bytes-write=52 payload-bytes-read=1390200/5242880 (26.52%)
+2019-01-31 11:30:21 1548934221.856438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1393665 total-bytes-write=52 payload-bytes-read=1393636/5242880 (26.58%)
+2019-01-31 11:30:21 1548934221.857498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1401633 total-bytes-write=52 payload-bytes-read=1401604/5242880 (26.73%)
+2019-01-31 11:30:21 1548934221.857579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1406115 total-bytes-write=52 payload-bytes-read=1406086/5242880 (26.82%)
+2019-01-31 11:30:21 1548934221.892987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1410547 total-bytes-write=52 payload-bytes-read=1410518/5242880 (26.90%)
+2019-01-31 11:30:21 1548934221.904970 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1412041 total-bytes-write=52 payload-bytes-read=1412012/5242880 (26.93%)
+2019-01-31 11:30:22 1548934222.080881 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1415527 total-bytes-write=52 payload-bytes-read=1415498/5242880 (27.00%)
+2019-01-31 11:30:22 1548934222.081380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1419511 total-bytes-write=52 payload-bytes-read=1419482/5242880 (27.07%)
+2019-01-31 11:30:22 1548934222.081919 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1423495 total-bytes-write=52 payload-bytes-read=1423466/5242880 (27.15%)
+2019-01-31 11:30:22 1548934222.128376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1435397 total-bytes-write=52 payload-bytes-read=1435368/5242880 (27.38%)
+2019-01-31 11:30:22 1548934222.172371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1445307 total-bytes-write=52 payload-bytes-read=1445278/5242880 (27.57%)
+2019-01-31 11:30:22 1548934222.188278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1445805 total-bytes-write=52 payload-bytes-read=1445776/5242880 (27.58%)
+2019-01-31 11:30:22 1548934222.189149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1449291 total-bytes-write=52 payload-bytes-read=1449262/5242880 (27.64%)
+2019-01-31 11:30:22 1548934222.189798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1453275 total-bytes-write=52 payload-bytes-read=1453246/5242880 (27.72%)
+2019-01-31 11:30:22 1548934222.190959 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1461193 total-bytes-write=52 payload-bytes-read=1461164/5242880 (27.87%)
+2019-01-31 11:30:22 1548934222.191927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1465177 total-bytes-write=52 payload-bytes-read=1465148/5242880 (27.95%)
+2019-01-31 11:30:22 1548934222.192622 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1470655 total-bytes-write=52 payload-bytes-read=1470626/5242880 (28.05%)
+2019-01-31 11:30:22 1548934222.215683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1471651 total-bytes-write=52 payload-bytes-read=1471622/5242880 (28.07%)
+2019-01-31 11:30:22 1548934222.249776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1475087 total-bytes-write=52 payload-bytes-read=1475058/5242880 (28.13%)
+2019-01-31 11:30:22 1548934222.250904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1483055 total-bytes-write=52 payload-bytes-read=1483026/5242880 (28.29%)
+2019-01-31 11:30:22 1548934222.251700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1487537 total-bytes-write=52 payload-bytes-read=1487508/5242880 (28.37%)
+2019-01-31 11:30:22 1548934222.252914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1494957 total-bytes-write=52 payload-bytes-read=1494928/5242880 (28.51%)
+2019-01-31 11:30:22 1548934222.252988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1496451 total-bytes-write=52 payload-bytes-read=1496422/5242880 (28.54%)
+2019-01-31 11:30:22 1548934222.258971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1499937 total-bytes-write=52 payload-bytes-read=1499908/5242880 (28.61%)
+2019-01-31 11:30:22 1548934222.259868 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1503921 total-bytes-write=52 payload-bytes-read=1503892/5242880 (28.68%)
+2019-01-31 11:30:22 1548934222.260540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1507855 total-bytes-write=52 payload-bytes-read=1507826/5242880 (28.76%)
+2019-01-31 11:30:22 1548934222.261249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1511839 total-bytes-write=52 payload-bytes-read=1511810/5242880 (28.84%)
+2019-01-31 11:30:22 1548934222.262116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1515325 total-bytes-write=52 payload-bytes-read=1515296/5242880 (28.90%)
+2019-01-31 11:30:22 1548934222.268371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1518811 total-bytes-write=52 payload-bytes-read=1518782/5242880 (28.97%)
+2019-01-31 11:30:22 1548934222.312457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1559497 total-bytes-write=52 payload-bytes-read=1559468/5242880 (29.74%)
+2019-01-31 11:30:22 1548934222.457596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1562983 total-bytes-write=52 payload-bytes-read=1562954/5242880 (29.81%)
+2019-01-31 11:30:22 1548934222.475098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1566469 total-bytes-write=52 payload-bytes-read=1566440/5242880 (29.88%)
+2019-01-31 11:30:22 1548934222.516433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1605661 total-bytes-write=52 payload-bytes-read=1605632/5242880 (30.63%)
+2019-01-31 11:30:22 1548934222.564387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1609147 total-bytes-write=52 payload-bytes-read=1609118/5242880 (30.69%)
+2019-01-31 11:30:22 1548934222.572951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1610143 total-bytes-write=52 payload-bytes-read=1610114/5242880 (30.71%)
+2019-01-31 11:30:22 1548934222.655796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1613629 total-bytes-write=52 payload-bytes-read=1613600/5242880 (30.78%)
+2019-01-31 11:30:22 1548934222.657053 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1617613 total-bytes-write=52 payload-bytes-read=1617584/5242880 (30.85%)
+2019-01-31 11:30:22 1548934222.657480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1621597 total-bytes-write=52 payload-bytes-read=1621568/5242880 (30.93%)
+2019-01-31 11:30:22 1548934222.700449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1661785 total-bytes-write=52 payload-bytes-read=1661756/5242880 (31.70%)
+2019-01-31 11:30:22 1548934222.749603 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1669255 total-bytes-write=52 payload-bytes-read=1669226/5242880 (31.84%)
+2019-01-31 11:30:22 1548934222.750790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1669753 total-bytes-write=52 payload-bytes-read=1669724/5242880 (31.85%)
+2019-01-31 11:30:22 1548934222.775861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1673189 total-bytes-write=52 payload-bytes-read=1673160/5242880 (31.91%)
+2019-01-31 11:30:22 1548934222.793194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1680659 total-bytes-write=52 payload-bytes-read=1680630/5242880 (32.06%)
+2019-01-31 11:30:22 1548934222.793304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1688577 total-bytes-write=52 payload-bytes-read=1688548/5242880 (32.21%)
+2019-01-31 11:30:22 1548934222.793380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1692561 total-bytes-write=52 payload-bytes-read=1692532/5242880 (32.28%)
+2019-01-31 11:30:22 1548934222.793490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1700529 total-bytes-write=52 payload-bytes-read=1700500/5242880 (32.43%)
+2019-01-31 11:30:22 1548934222.793559 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1702521 total-bytes-write=52 payload-bytes-read=1702492/5242880 (32.47%)
+2019-01-31 11:30:22 1548934222.795488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1704463 total-bytes-write=52 payload-bytes-read=1704434/5242880 (32.51%)
+2019-01-31 11:30:22 1548934222.855531 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1707949 total-bytes-write=52 payload-bytes-read=1707920/5242880 (32.58%)
+2019-01-31 11:30:22 1548934222.902107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1708945 total-bytes-write=52 payload-bytes-read=1708916/5242880 (32.59%)
+2019-01-31 11:30:22 1548934222.954413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1718905 total-bytes-write=52 payload-bytes-read=1718876/5242880 (32.78%)
+2019-01-31 11:30:22 1548934222.995483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1726325 total-bytes-write=52 payload-bytes-read=1726296/5242880 (32.93%)
+2019-01-31 11:30:22 1548934222.995580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1730309 total-bytes-write=52 payload-bytes-read=1730280/5242880 (33.00%)
+2019-01-31 11:30:22 1548934222.996689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1736285 total-bytes-write=52 payload-bytes-read=1736256/5242880 (33.12%)
+2019-01-31 11:30:23 1548934223.042857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1739721 total-bytes-write=52 payload-bytes-read=1739692/5242880 (33.18%)
+2019-01-31 11:30:23 1548934223.044435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1749681 total-bytes-write=52 payload-bytes-read=1749652/5242880 (33.37%)
+2019-01-31 11:30:23 1548934223.089337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1752669 total-bytes-write=52 payload-bytes-read=1752640/5242880 (33.43%)
+2019-01-31 11:30:23 1548934223.158721 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1756105 total-bytes-write=52 payload-bytes-read=1756076/5242880 (33.49%)
+2019-01-31 11:30:23 1548934223.178793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1759591 total-bytes-write=52 payload-bytes-read=1759562/5242880 (33.56%)
+2019-01-31 11:30:23 1548934223.191599 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1763077 total-bytes-write=52 payload-bytes-read=1763048/5242880 (33.63%)
+2019-01-31 11:30:23 1548934223.232455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1791363 total-bytes-write=52 payload-bytes-read=1791334/5242880 (34.17%)
+2019-01-31 11:30:23 1548934223.276381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1795845 total-bytes-write=52 payload-bytes-read=1795816/5242880 (34.25%)
+2019-01-31 11:30:23 1548934223.285874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1796343 total-bytes-write=52 payload-bytes-read=1796314/5242880 (34.26%)
+2019-01-31 11:30:23 1548934223.306429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1803763 total-bytes-write=52 payload-bytes-read=1803734/5242880 (34.40%)
+2019-01-31 11:30:23 1548934223.306541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1811731 total-bytes-write=52 payload-bytes-read=1811702/5242880 (34.56%)
+2019-01-31 11:30:23 1548934223.306646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1815715 total-bytes-write=52 payload-bytes-read=1815686/5242880 (34.63%)
+2019-01-31 11:30:23 1548934223.325485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1819151 total-bytes-write=52 payload-bytes-read=1819122/5242880 (34.70%)
+2019-01-31 11:30:23 1548934223.358648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1819649 total-bytes-write=52 payload-bytes-read=1819620/5242880 (34.71%)
+2019-01-31 11:30:23 1548934223.366802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1827119 total-bytes-write=52 payload-bytes-read=1827090/5242880 (34.85%)
+2019-01-31 11:30:23 1548934223.366873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1831103 total-bytes-write=52 payload-bytes-read=1831074/5242880 (34.92%)
+2019-01-31 11:30:23 1548934223.370084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1835037 total-bytes-write=52 payload-bytes-read=1835008/5242880 (35.00%)
+2019-01-31 11:30:23 1548934223.370395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1839021 total-bytes-write=52 payload-bytes-read=1838992/5242880 (35.08%)
+2019-01-31 11:30:23 1548934223.370609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1846989 total-bytes-write=52 payload-bytes-read=1846960/5242880 (35.23%)
+2019-01-31 11:30:23 1548934223.370681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1850973 total-bytes-write=52 payload-bytes-read=1850944/5242880 (35.30%)
+2019-01-31 11:30:23 1548934223.376859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1851421 total-bytes-write=52 payload-bytes-read=1851392/5242880 (35.31%)
+2019-01-31 11:30:23 1548934223.383320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1858891 total-bytes-write=52 payload-bytes-read=1858862/5242880 (35.45%)
+2019-01-31 11:30:23 1548934223.393838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1866859 total-bytes-write=52 payload-bytes-read=1866830/5242880 (35.61%)
+2019-01-31 11:30:23 1548934223.393912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1870793 total-bytes-write=52 payload-bytes-read=1870764/5242880 (35.68%)
+2019-01-31 11:30:23 1548934223.394069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1878761 total-bytes-write=52 payload-bytes-read=1878732/5242880 (35.83%)
+2019-01-31 11:30:23 1548934223.394169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1883243 total-bytes-write=52 payload-bytes-read=1883214/5242880 (35.92%)
+2019-01-31 11:30:23 1548934223.394338 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1890663 total-bytes-write=52 payload-bytes-read=1890634/5242880 (36.06%)
+2019-01-31 11:30:23 1548934223.394400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1893651 total-bytes-write=52 payload-bytes-read=1893622/5242880 (36.12%)
+2019-01-31 11:30:23 1548934223.405753 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1897137 total-bytes-write=52 payload-bytes-read=1897108/5242880 (36.18%)
+2019-01-31 11:30:23 1548934223.441034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1897635 total-bytes-write=52 payload-bytes-read=1897606/5242880 (36.19%)
+2019-01-31 11:30:23 1548934223.445856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1900573 total-bytes-write=52 payload-bytes-read=1900544/5242880 (36.25%)
+2019-01-31 11:30:23 1548934223.475444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1904059 total-bytes-write=52 payload-bytes-read=1904030/5242880 (36.32%)
+2019-01-31 11:30:23 1548934223.477491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1912027 total-bytes-write=52 payload-bytes-read=1911998/5242880 (36.47%)
+2019-01-31 11:30:23 1548934223.485193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1915513 total-bytes-write=52 payload-bytes-read=1915484/5242880 (36.53%)
+2019-01-31 11:30:23 1548934223.487616 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1923431 total-bytes-write=52 payload-bytes-read=1923402/5242880 (36.69%)
+2019-01-31 11:30:23 1548934223.487719 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1927913 total-bytes-write=52 payload-bytes-read=1927884/5242880 (36.77%)
+2019-01-31 11:30:23 1548934223.488164 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1931897 total-bytes-write=52 payload-bytes-read=1931868/5242880 (36.85%)
+2019-01-31 11:30:23 1548934223.495192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1935333 total-bytes-write=52 payload-bytes-read=1935304/5242880 (36.91%)
+2019-01-31 11:30:23 1548934223.524196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1936329 total-bytes-write=52 payload-bytes-read=1936300/5242880 (36.93%)
+2019-01-31 11:30:23 1548934223.524904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1939317 total-bytes-write=52 payload-bytes-read=1939288/5242880 (36.99%)
+2019-01-31 11:30:23 1548934223.568085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1942803 total-bytes-write=52 payload-bytes-read=1942774/5242880 (37.06%)
+2019-01-31 11:30:23 1548934223.568743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1946787 total-bytes-write=52 payload-bytes-read=1946758/5242880 (37.13%)
+2019-01-31 11:30:23 1548934223.576387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1950223 total-bytes-write=52 payload-bytes-read=1950194/5242880 (37.20%)
+2019-01-31 11:30:23 1548934223.577693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1958191 total-bytes-write=52 payload-bytes-read=1958162/5242880 (37.35%)
+2019-01-31 11:30:23 1548934223.578609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1962175 total-bytes-write=52 payload-bytes-read=1962146/5242880 (37.42%)
+2019-01-31 11:30:23 1548934223.582348 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1962673 total-bytes-write=52 payload-bytes-read=1962644/5242880 (37.43%)
+2019-01-31 11:30:23 1548934223.586682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1966109 total-bytes-write=52 payload-bytes-read=1966080/5242880 (37.50%)
+2019-01-31 11:30:23 1548934223.588378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1970093 total-bytes-write=52 payload-bytes-read=1970064/5242880 (37.58%)
+2019-01-31 11:30:23 1548934223.589448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1977065 total-bytes-write=52 payload-bytes-read=1977036/5242880 (37.71%)
+2019-01-31 11:30:23 1548934223.616267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1980551 total-bytes-write=52 payload-bytes-read=1980522/5242880 (37.78%)
+2019-01-31 11:30:23 1548934223.630504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1981049 total-bytes-write=52 payload-bytes-read=1981020/5242880 (37.78%)
+2019-01-31 11:30:23 1548934223.655092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1984485 total-bytes-write=52 payload-bytes-read=1984456/5242880 (37.85%)
+2019-01-31 11:30:23 1548934223.656146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1992453 total-bytes-write=52 payload-bytes-read=1992424/5242880 (38.00%)
+2019-01-31 11:30:23 1548934223.657212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1996935 total-bytes-write=52 payload-bytes-read=1996906/5242880 (38.09%)
+2019-01-31 11:30:23 1548934223.657308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=1999873 total-bytes-write=52 payload-bytes-read=1999844/5242880 (38.14%)
+2019-01-31 11:30:23 1548934223.675505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2001367 total-bytes-write=52 payload-bytes-read=2001338/5242880 (38.17%)
+2019-01-31 11:30:23 1548934223.693366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2004853 total-bytes-write=52 payload-bytes-read=2004824/5242880 (38.24%)
+2019-01-31 11:30:23 1548934223.753381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2008339 total-bytes-write=52 payload-bytes-read=2008310/5242880 (38.31%)
+2019-01-31 11:30:23 1548934223.796436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2046087 total-bytes-write=52 payload-bytes-read=2046058/5242880 (39.03%)
+2019-01-31 11:30:23 1548934223.840369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2050021 total-bytes-write=52 payload-bytes-read=2049992/5242880 (39.10%)
+2019-01-31 11:30:23 1548934223.863932 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2053507 total-bytes-write=52 payload-bytes-read=2053478/5242880 (39.17%)
+2019-01-31 11:30:23 1548934223.874794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2058487 total-bytes-write=52 payload-bytes-read=2058458/5242880 (39.26%)
+2019-01-31 11:30:23 1548934223.874874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2061973 total-bytes-write=52 payload-bytes-read=2061944/5242880 (39.33%)
+2019-01-31 11:30:23 1548934223.916191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2063467 total-bytes-write=52 payload-bytes-read=2063438/5242880 (39.36%)
+2019-01-31 11:30:24 1548934224.084235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2066903 total-bytes-write=52 payload-bytes-read=2066874/5242880 (39.42%)
+2019-01-31 11:30:24 1548934224.087786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2074871 total-bytes-write=52 payload-bytes-read=2074842/5242880 (39.57%)
+2019-01-31 11:30:24 1548934224.088902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2078855 total-bytes-write=52 payload-bytes-read=2078826/5242880 (39.65%)
+2019-01-31 11:30:24 1548934224.135661 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2079353 total-bytes-write=52 payload-bytes-read=2079324/5242880 (39.66%)
+2019-01-31 11:30:24 1548934224.224570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2080349 total-bytes-write=52 payload-bytes-read=2080320/5242880 (39.68%)
+2019-01-31 11:30:24 1548934224.268890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2083785 total-bytes-write=52 payload-bytes-read=2083756/5242880 (39.74%)
+2019-01-31 11:30:24 1548934224.269253 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2091753 total-bytes-write=52 payload-bytes-read=2091724/5242880 (39.90%)
+2019-01-31 11:30:24 1548934224.278313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2095239 total-bytes-write=52 payload-bytes-read=2095210/5242880 (39.96%)
+2019-01-31 11:30:24 1548934224.317169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2098177 total-bytes-write=52 payload-bytes-read=2098148/5242880 (40.02%)
+2019-01-31 11:30:24 1548934224.408507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2099173 total-bytes-write=52 payload-bytes-read=2099144/5242880 (40.04%)
+2019-01-31 11:30:24 1548934224.454683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2102659 total-bytes-write=52 payload-bytes-read=2102630/5242880 (40.10%)
+2019-01-31 11:30:24 1548934224.467456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2106145 total-bytes-write=52 payload-bytes-read=2106116/5242880 (40.17%)
+2019-01-31 11:30:24 1548934224.508459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2141901 total-bytes-write=52 payload-bytes-read=2141872/5242880 (40.85%)
+2019-01-31 11:30:24 1548934224.552372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2143395 total-bytes-write=52 payload-bytes-read=2143366/5242880 (40.88%)
+2019-01-31 11:30:24 1548934224.555341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2146831 total-bytes-write=52 payload-bytes-read=2146802/5242880 (40.95%)
+2019-01-31 11:30:24 1548934224.557489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2154799 total-bytes-write=52 payload-bytes-read=2154770/5242880 (41.10%)
+2019-01-31 11:30:24 1548934224.557632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2159281 total-bytes-write=52 payload-bytes-read=2159252/5242880 (41.18%)
+2019-01-31 11:30:24 1548934224.557781 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2166701 total-bytes-write=52 payload-bytes-read=2166672/5242880 (41.33%)
+2019-01-31 11:30:24 1548934224.557861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2170685 total-bytes-write=52 payload-bytes-read=2170656/5242880 (41.40%)
+2019-01-31 11:30:24 1548934224.560336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2174669 total-bytes-write=52 payload-bytes-read=2174640/5242880 (41.48%)
+2019-01-31 11:30:24 1548934224.598034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2243193 total-bytes-write=52 payload-bytes-read=2243164/5242880 (42.78%)
+2019-01-31 11:30:24 1548934224.602783 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2246629 total-bytes-write=52 payload-bytes-read=2246600/5242880 (42.85%)
+2019-01-31 11:30:24 1548934224.604303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2254597 total-bytes-write=52 payload-bytes-read=2254568/5242880 (43.00%)
+2019-01-31 11:30:24 1548934224.605068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2259079 total-bytes-write=52 payload-bytes-read=2259050/5242880 (43.09%)
+2019-01-31 11:30:24 1548934224.605807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2262515 total-bytes-write=52 payload-bytes-read=2262486/5242880 (43.15%)
+2019-01-31 11:30:24 1548934224.606659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2266499 total-bytes-write=52 payload-bytes-read=2266470/5242880 (43.23%)
+2019-01-31 11:30:24 1548934224.610793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2266997 total-bytes-write=52 payload-bytes-read=2266968/5242880 (43.24%)
+2019-01-31 11:30:24 1548934224.612005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2270483 total-bytes-write=52 payload-bytes-read=2270454/5242880 (43.31%)
+2019-01-31 11:30:24 1548934224.613296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2278401 total-bytes-write=52 payload-bytes-read=2278372/5242880 (43.46%)
+2019-01-31 11:30:24 1548934224.615522 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2282883 total-bytes-write=52 payload-bytes-read=2282854/5242880 (43.54%)
+2019-01-31 11:30:24 1548934224.615696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2290353 total-bytes-write=52 payload-bytes-read=2290324/5242880 (43.68%)
+2019-01-31 11:30:24 1548934224.615851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2298271 total-bytes-write=52 payload-bytes-read=2298242/5242880 (43.84%)
+2019-01-31 11:30:24 1548934224.623986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2298769 total-bytes-write=52 payload-bytes-read=2298740/5242880 (43.84%)
+2019-01-31 11:30:24 1548934224.625357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2302255 total-bytes-write=52 payload-bytes-read=2302226/5242880 (43.91%)
+2019-01-31 11:30:24 1548934224.626543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2306239 total-bytes-write=52 payload-bytes-read=2306210/5242880 (43.99%)
+2019-01-31 11:30:24 1548934224.677493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2306737 total-bytes-write=52 payload-bytes-read=2306708/5242880 (44.00%)
+2019-01-31 11:30:24 1548934224.702841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2308231 total-bytes-write=52 payload-bytes-read=2308202/5242880 (44.03%)
+2019-01-31 11:30:24 1548934224.760973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2315651 total-bytes-write=52 payload-bytes-read=2315622/5242880 (44.17%)
+2019-01-31 11:30:24 1548934224.763055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2323619 total-bytes-write=52 payload-bytes-read=2323590/5242880 (44.32%)
+2019-01-31 11:30:24 1548934224.769050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2324117 total-bytes-write=52 payload-bytes-read=2324088/5242880 (44.33%)
+2019-01-31 11:30:24 1548934224.771685 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2327553 total-bytes-write=52 payload-bytes-read=2327524/5242880 (44.39%)
+2019-01-31 11:30:24 1548934224.778564 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2329545 total-bytes-write=52 payload-bytes-read=2329516/5242880 (44.43%)
+2019-01-31 11:30:24 1548934224.800404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2333031 total-bytes-write=52 payload-bytes-read=2333002/5242880 (44.50%)
+2019-01-31 11:30:24 1548934224.879156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2336517 total-bytes-write=52 payload-bytes-read=2336488/5242880 (44.56%)
+2019-01-31 11:30:25 1548934225.266323 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2340003 total-bytes-write=52 payload-bytes-read=2339974/5242880 (44.63%)
+2019-01-31 11:30:25 1548934225.277037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2343439 total-bytes-write=52 payload-bytes-read=2343410/5242880 (44.70%)
+2019-01-31 11:30:25 1548934225.277561 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2347423 total-bytes-write=52 payload-bytes-read=2347394/5242880 (44.77%)
+2019-01-31 11:30:25 1548934225.289660 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2354893 total-bytes-write=52 payload-bytes-read=2354864/5242880 (44.92%)
+2019-01-31 11:30:25 1548934225.289897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2362811 total-bytes-write=52 payload-bytes-read=2362782/5242880 (45.07%)
+2019-01-31 11:30:25 1548934225.290585 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2366795 total-bytes-write=52 payload-bytes-read=2366766/5242880 (45.14%)
+2019-01-31 11:30:25 1548934225.291319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2374763 total-bytes-write=52 payload-bytes-read=2374734/5242880 (45.29%)
+2019-01-31 11:30:25 1548934225.292186 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2378697 total-bytes-write=52 payload-bytes-read=2378668/5242880 (45.37%)
+2019-01-31 11:30:25 1548934225.308653 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2381187 total-bytes-write=52 payload-bytes-read=2381158/5242880 (45.42%)
+2019-01-31 11:30:25 1548934225.348631 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2382681 total-bytes-write=52 payload-bytes-read=2382652/5242880 (45.45%)
+2019-01-31 11:30:25 1548934225.355910 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2386167 total-bytes-write=52 payload-bytes-read=2386138/5242880 (45.51%)
+2019-01-31 11:30:25 1548934225.356460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2390151 total-bytes-write=52 payload-bytes-read=2390122/5242880 (45.59%)
+2019-01-31 11:30:25 1548934225.357519 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2396077 total-bytes-write=52 payload-bytes-read=2396048/5242880 (45.70%)
+2019-01-31 11:30:25 1548934225.366042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2399563 total-bytes-write=52 payload-bytes-read=2399534/5242880 (45.77%)
+2019-01-31 11:30:25 1548934225.366913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2403547 total-bytes-write=52 payload-bytes-read=2403518/5242880 (45.84%)
+2019-01-31 11:30:25 1548934225.367722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2407595 total-bytes-write=52 payload-bytes-read=2407566/5242880 (45.92%)
+2019-01-31 11:30:25 1548934225.408490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2464601 total-bytes-write=52 payload-bytes-read=2464572/5242880 (47.01%)
+2019-01-31 11:30:25 1548934225.463805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2468087 total-bytes-write=52 payload-bytes-read=2468058/5242880 (47.07%)
+2019-01-31 11:30:25 1548934225.464740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2472071 total-bytes-write=52 payload-bytes-read=2472042/5242880 (47.15%)
+2019-01-31 11:30:25 1548934225.465863 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2479989 total-bytes-write=52 payload-bytes-read=2479960/5242880 (47.30%)
+2019-01-31 11:30:25 1548934225.465927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2480487 total-bytes-write=52 payload-bytes-read=2480458/5242880 (47.31%)
+2019-01-31 11:30:25 1548934225.466961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2487957 total-bytes-write=52 payload-bytes-read=2487928/5242880 (47.45%)
+2019-01-31 11:30:25 1548934225.468330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2495875 total-bytes-write=52 payload-bytes-read=2495846/5242880 (47.60%)
+2019-01-31 11:30:25 1548934225.472792 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2496373 total-bytes-write=52 payload-bytes-read=2496344/5242880 (47.61%)
+2019-01-31 11:30:25 1548934225.473777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2499859 total-bytes-write=52 payload-bytes-read=2499830/5242880 (47.68%)
+2019-01-31 11:30:25 1548934225.474436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2503843 total-bytes-write=52 payload-bytes-read=2503814/5242880 (47.76%)
+2019-01-31 11:30:25 1548934225.477538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2507777 total-bytes-write=52 payload-bytes-read=2507748/5242880 (47.83%)
+2019-01-31 11:30:25 1548934225.480857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2512259 total-bytes-write=52 payload-bytes-read=2512230/5242880 (47.92%)
+2019-01-31 11:30:25 1548934225.480960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2519729 total-bytes-write=52 payload-bytes-read=2519700/5242880 (48.06%)
+2019-01-31 11:30:25 1548934225.481054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2527647 total-bytes-write=52 payload-bytes-read=2527618/5242880 (48.21%)
+2019-01-31 11:30:25 1548934225.493767 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2528145 total-bytes-write=52 payload-bytes-read=2528116/5242880 (48.22%)
+2019-01-31 11:30:25 1548934225.503274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2531631 total-bytes-write=52 payload-bytes-read=2531602/5242880 (48.29%)
+2019-01-31 11:30:25 1548934225.504362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2535615 total-bytes-write=52 payload-bytes-read=2535586/5242880 (48.36%)
+2019-01-31 11:30:25 1548934225.505977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2544031 total-bytes-write=52 payload-bytes-read=2544002/5242880 (48.52%)
+2019-01-31 11:30:25 1548934225.506356 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2547517 total-bytes-write=52 payload-bytes-read=2547488/5242880 (48.59%)
+2019-01-31 11:30:25 1548934225.518496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2554987 total-bytes-write=52 payload-bytes-read=2554958/5242880 (48.73%)
+2019-01-31 11:30:25 1548934225.541367 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2556431 total-bytes-write=52 payload-bytes-read=2556402/5242880 (48.76%)
+2019-01-31 11:30:25 1548934225.650912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2559917 total-bytes-write=52 payload-bytes-read=2559888/5242880 (48.83%)
+2019-01-31 11:30:25 1548934225.670436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2563403 total-bytes-write=52 payload-bytes-read=2563374/5242880 (48.89%)
+2019-01-31 11:30:25 1548934225.712406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2581281 total-bytes-write=52 payload-bytes-read=2581252/5242880 (49.23%)
+2019-01-31 11:30:25 1548934225.756383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2584767 total-bytes-write=52 payload-bytes-read=2584738/5242880 (49.30%)
+2019-01-31 11:30:25 1548934225.768634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2588253 total-bytes-write=52 payload-bytes-read=2588224/5242880 (49.37%)
+2019-01-31 11:30:25 1548934225.812449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2604139 total-bytes-write=52 payload-bytes-read=2604110/5242880 (49.67%)
+2019-01-31 11:30:25 1548934225.857378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2606081 total-bytes-write=52 payload-bytes-read=2606052/5242880 (49.71%)
+2019-01-31 11:30:25 1548934225.956005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2609567 total-bytes-write=52 payload-bytes-read=2609538/5242880 (49.77%)
+2019-01-31 11:30:25 1548934225.967869 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2613053 total-bytes-write=52 payload-bytes-read=2613024/5242880 (49.84%)
+2019-01-31 11:30:26 1548934226.004479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2680581 total-bytes-write=52 payload-bytes-read=2680552/5242880 (51.13%)
+2019-01-31 11:30:26 1548934226.014265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2684067 total-bytes-write=52 payload-bytes-read=2684038/5242880 (51.19%)
+2019-01-31 11:30:26 1548934226.015062 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2688001 total-bytes-write=52 payload-bytes-read=2687972/5242880 (51.27%)
+2019-01-31 11:30:26 1548934226.015695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2691985 total-bytes-write=52 payload-bytes-read=2691956/5242880 (51.34%)
+2019-01-31 11:30:26 1548934226.034192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2692483 total-bytes-write=52 payload-bytes-read=2692454/5242880 (51.35%)
+2019-01-31 11:30:26 1548934226.043505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2695969 total-bytes-write=52 payload-bytes-read=2695940/5242880 (51.42%)
+2019-01-31 11:30:26 1548934226.053275 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2699455 total-bytes-write=52 payload-bytes-read=2699426/5242880 (51.49%)
+2019-01-31 11:30:26 1548934226.086876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2765489 total-bytes-write=52 payload-bytes-read=2765460/5242880 (52.75%)
+2019-01-31 11:30:26 1548934226.093196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2768925 total-bytes-write=52 payload-bytes-read=2768896/5242880 (52.81%)
+2019-01-31 11:30:26 1548934226.094235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2772909 total-bytes-write=52 payload-bytes-read=2772880/5242880 (52.89%)
+2019-01-31 11:30:26 1548934226.175122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2773905 total-bytes-write=52 payload-bytes-read=2773876/5242880 (52.91%)
+2019-01-31 11:30:26 1548934226.177612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2776395 total-bytes-write=52 payload-bytes-read=2776366/5242880 (52.95%)
+2019-01-31 11:30:26 1548934226.216054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2779881 total-bytes-write=52 payload-bytes-read=2779852/5242880 (53.02%)
+2019-01-31 11:30:26 1548934226.386538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2783367 total-bytes-write=52 payload-bytes-read=2783338/5242880 (53.09%)
+2019-01-31 11:30:26 1548934226.564228 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2786803 total-bytes-write=52 payload-bytes-read=2786774/5242880 (53.15%)
+2019-01-31 11:30:26 1548934226.565047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2790851 total-bytes-write=52 payload-bytes-read=2790822/5242880 (53.23%)
+2019-01-31 11:30:26 1548934226.608461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2833515 total-bytes-write=52 payload-bytes-read=2833486/5242880 (54.04%)
+2019-01-31 11:30:26 1548934226.652360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2835457 total-bytes-write=52 payload-bytes-read=2835428/5242880 (54.08%)
+2019-01-31 11:30:26 1548934226.661197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2835955 total-bytes-write=52 payload-bytes-read=2835926/5242880 (54.09%)
+2019-01-31 11:30:26 1548934226.760809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2843425 total-bytes-write=52 payload-bytes-read=2843396/5242880 (54.23%)
+2019-01-31 11:30:26 1548934226.760909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2847409 total-bytes-write=52 payload-bytes-read=2847380/5242880 (54.31%)
+2019-01-31 11:30:26 1548934226.765460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2854829 total-bytes-write=52 payload-bytes-read=2854800/5242880 (54.45%)
+2019-01-31 11:30:26 1548934226.765546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2858813 total-bytes-write=52 payload-bytes-read=2858784/5242880 (54.53%)
+2019-01-31 11:30:26 1548934226.766808 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2863295 total-bytes-write=52 payload-bytes-read=2863266/5242880 (54.61%)
+2019-01-31 11:30:26 1548934226.766904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2870715 total-bytes-write=52 payload-bytes-read=2870686/5242880 (54.75%)
+2019-01-31 11:30:26 1548934226.767017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2878683 total-bytes-write=52 payload-bytes-read=2878654/5242880 (54.91%)
+2019-01-31 11:30:26 1548934226.769691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2879181 total-bytes-write=52 payload-bytes-read=2879152/5242880 (54.92%)
+2019-01-31 11:30:26 1548934226.770164 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2882667 total-bytes-write=52 payload-bytes-read=2882638/5242880 (54.98%)
+2019-01-31 11:30:26 1548934226.771890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2886601 total-bytes-write=52 payload-bytes-read=2886572/5242880 (55.06%)
+2019-01-31 11:30:26 1548934226.773158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2894569 total-bytes-write=52 payload-bytes-read=2894540/5242880 (55.21%)
+2019-01-31 11:30:26 1548934226.773239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2898553 total-bytes-write=52 payload-bytes-read=2898524/5242880 (55.28%)
+2019-01-31 11:30:26 1548934226.773302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2902487 total-bytes-write=52 payload-bytes-read=2902458/5242880 (55.36%)
+2019-01-31 11:30:26 1548934226.773988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2910455 total-bytes-write=52 payload-bytes-read=2910426/5242880 (55.51%)
+2019-01-31 11:30:26 1548934226.790233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2913941 total-bytes-write=52 payload-bytes-read=2913912/5242880 (55.58%)
+2019-01-31 11:30:26 1548934226.791564 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2921859 total-bytes-write=52 payload-bytes-read=2921830/5242880 (55.73%)
+2019-01-31 11:30:26 1548934226.798845 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2922855 total-bytes-write=52 payload-bytes-read=2922826/5242880 (55.75%)
+2019-01-31 11:30:26 1548934226.800148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2930325 total-bytes-write=52 payload-bytes-read=2930296/5242880 (55.89%)
+2019-01-31 11:30:26 1548934226.803659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2938243 total-bytes-write=52 payload-bytes-read=2938214/5242880 (56.04%)
+2019-01-31 11:30:26 1548934226.804994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2942227 total-bytes-write=52 payload-bytes-read=2942198/5242880 (56.12%)
+2019-01-31 11:30:26 1548934226.805257 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2950145 total-bytes-write=52 payload-bytes-read=2950116/5242880 (56.27%)
+2019-01-31 11:30:26 1548934226.805364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2954129 total-bytes-write=52 payload-bytes-read=2954100/5242880 (56.34%)
+2019-01-31 11:30:26 1548934226.809635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2954627 total-bytes-write=52 payload-bytes-read=2954598/5242880 (56.35%)
+2019-01-31 11:30:26 1548934226.810696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2962097 total-bytes-write=52 payload-bytes-read=2962068/5242880 (56.50%)
+2019-01-31 11:30:26 1548934226.811563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2972007 total-bytes-write=52 payload-bytes-read=2971978/5242880 (56.69%)
+2019-01-31 11:30:26 1548934226.820579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2975493 total-bytes-write=52 payload-bytes-read=2975464/5242880 (56.75%)
+2019-01-31 11:30:26 1548934226.821744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2983411 total-bytes-write=52 payload-bytes-read=2983382/5242880 (56.90%)
+2019-01-31 11:30:26 1548934226.828974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2986897 total-bytes-write=52 payload-bytes-read=2986868/5242880 (56.97%)
+2019-01-31 11:30:26 1548934226.829892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=2990383 total-bytes-write=52 payload-bytes-read=2990354/5242880 (57.04%)
+2019-01-31 11:30:26 1548934226.872449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3026637 total-bytes-write=52 payload-bytes-read=3026608/5242880 (57.73%)
+2019-01-31 11:30:26 1548934226.918107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3028131 total-bytes-write=52 payload-bytes-read=3028102/5242880 (57.76%)
+2019-01-31 11:30:26 1548934226.987310 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3031069 total-bytes-write=52 payload-bytes-read=3031040/5242880 (57.81%)
+2019-01-31 11:30:27 1548934227.066380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3034555 total-bytes-write=52 payload-bytes-read=3034526/5242880 (57.88%)
+2019-01-31 11:30:27 1548934227.066838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3038539 total-bytes-write=52 payload-bytes-read=3038510/5242880 (57.95%)
+2019-01-31 11:30:27 1548934227.069400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3042523 total-bytes-write=52 payload-bytes-read=3042494/5242880 (58.03%)
+2019-01-31 11:30:27 1548934227.112381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3049445 total-bytes-write=52 payload-bytes-read=3049416/5242880 (58.16%)
+2019-01-31 11:30:27 1548934227.156377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3052931 total-bytes-write=52 payload-bytes-read=3052902/5242880 (58.23%)
+2019-01-31 11:30:27 1548934227.167644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:30:27 1548934227.208405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3071307 total-bytes-write=52 payload-bytes-read=3071278/5242880 (58.58%)
+2019-01-31 11:30:27 1548934227.252383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3074295 total-bytes-write=52 payload-bytes-read=3074266/5242880 (58.64%)
+2019-01-31 11:30:27 1548934227.267048 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3077781 total-bytes-write=52 payload-bytes-read=3077752/5242880 (58.70%)
+2019-01-31 11:30:27 1548934227.346204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3080221 total-bytes-write=52 payload-bytes-read=3080192/5242880 (58.75%)
+2019-01-31 11:30:27 1548934227.366486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3083707 total-bytes-write=52 payload-bytes-read=3083678/5242880 (58.82%)
+2019-01-31 11:30:27 1548934227.367303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3087691 total-bytes-write=52 payload-bytes-read=3087662/5242880 (58.89%)
+2019-01-31 11:30:27 1548934227.367993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3091675 total-bytes-write=52 payload-bytes-read=3091646/5242880 (58.97%)
+2019-01-31 11:30:27 1548934227.408426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3110549 total-bytes-write=52 payload-bytes-read=3110520/5242880 (59.33%)
+2019-01-31 11:30:27 1548934227.452429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3141823 total-bytes-write=52 payload-bytes-read=3141794/5242880 (59.92%)
+2019-01-31 11:30:27 1548934227.496380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3149243 total-bytes-write=52 payload-bytes-read=3149214/5242880 (60.07%)
+2019-01-31 11:30:27 1548934227.514683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3156713 total-bytes-write=52 payload-bytes-read=3156684/5242880 (60.21%)
+2019-01-31 11:30:27 1548934227.514794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3164631 total-bytes-write=52 payload-bytes-read=3164602/5242880 (60.36%)
+2019-01-31 11:30:27 1548934227.514861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3165627 total-bytes-write=52 payload-bytes-read=3165598/5242880 (60.38%)
+2019-01-31 11:30:27 1548934227.515298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3168615 total-bytes-write=52 payload-bytes-read=3168586/5242880 (60.44%)
+2019-01-31 11:30:27 1548934227.554890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3172101 total-bytes-write=52 payload-bytes-read=3172072/5242880 (60.50%)
+2019-01-31 11:30:27 1548934227.555668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3176085 total-bytes-write=52 payload-bytes-read=3176056/5242880 (60.58%)
+2019-01-31 11:30:27 1548934227.556204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3180019 total-bytes-write=52 payload-bytes-read=3179990/5242880 (60.65%)
+2019-01-31 11:30:27 1548934227.570475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3184501 total-bytes-write=52 payload-bytes-read=3184472/5242880 (60.74%)
+2019-01-31 11:30:27 1548934227.572973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3191971 total-bytes-write=52 payload-bytes-read=3191942/5242880 (60.88%)
+2019-01-31 11:30:27 1548934227.573095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3199889 total-bytes-write=52 payload-bytes-read=3199860/5242880 (61.03%)
+2019-01-31 11:30:27 1548934227.573188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3203873 total-bytes-write=52 payload-bytes-read=3203844/5242880 (61.11%)
+2019-01-31 11:30:27 1548934227.573347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3211791 total-bytes-write=52 payload-bytes-read=3211762/5242880 (61.26%)
+2019-01-31 11:30:27 1548934227.573879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3216273 total-bytes-write=52 payload-bytes-read=3216244/5242880 (61.34%)
+2019-01-31 11:30:27 1548934227.574001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3223743 total-bytes-write=52 payload-bytes-read=3223714/5242880 (61.49%)
+2019-01-31 11:30:27 1548934227.580581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3232159 total-bytes-write=52 payload-bytes-read=3232130/5242880 (61.65%)
+2019-01-31 11:30:27 1548934227.582418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3239629 total-bytes-write=52 payload-bytes-read=3239600/5242880 (61.79%)
+2019-01-31 11:30:27 1548934227.582549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3247547 total-bytes-write=52 payload-bytes-read=3247518/5242880 (61.94%)
+2019-01-31 11:30:27 1548934227.582611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3250535 total-bytes-write=52 payload-bytes-read=3250506/5242880 (62.00%)
+2019-01-31 11:30:27 1548934227.596183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3254021 total-bytes-write=52 payload-bytes-read=3253992/5242880 (62.06%)
+2019-01-31 11:30:27 1548934227.596778 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3258005 total-bytes-write=52 payload-bytes-read=3257976/5242880 (62.14%)
+2019-01-31 11:30:27 1548934227.607486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3265923 total-bytes-write=52 payload-bytes-read=3265894/5242880 (62.29%)
+2019-01-31 11:30:27 1548934227.607579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3269907 total-bytes-write=52 payload-bytes-read=3269878/5242880 (62.37%)
+2019-01-31 11:30:27 1548934227.607707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3277825 total-bytes-write=52 payload-bytes-read=3277796/5242880 (62.52%)
+2019-01-31 11:30:27 1548934227.607834 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3282307 total-bytes-write=52 payload-bytes-read=3282278/5242880 (62.60%)
+2019-01-31 11:30:27 1548934227.607898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3285793 total-bytes-write=52 payload-bytes-read=3285764/5242880 (62.67%)
+2019-01-31 11:30:27 1548934227.608212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3293711 total-bytes-write=52 payload-bytes-read=3293682/5242880 (62.82%)
+2019-01-31 11:30:27 1548934227.632888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3294707 total-bytes-write=52 payload-bytes-read=3294678/5242880 (62.84%)
+2019-01-31 11:30:27 1548934227.654889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3296201 total-bytes-write=52 payload-bytes-read=3296172/5242880 (62.87%)
+2019-01-31 11:30:27 1548934227.694391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3299687 total-bytes-write=52 payload-bytes-read=3299658/5242880 (62.94%)
+2019-01-31 11:30:27 1548934227.754249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3301181 total-bytes-write=52 payload-bytes-read=3301152/5242880 (62.96%)
+2019-01-31 11:30:27 1548934227.754379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3308651 total-bytes-write=52 payload-bytes-read=3308622/5242880 (63.11%)
+2019-01-31 11:30:27 1548934227.772133 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3310095 total-bytes-write=52 payload-bytes-read=3310066/5242880 (63.13%)
+2019-01-31 11:30:27 1548934227.772979 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3313581 total-bytes-write=52 payload-bytes-read=3313552/5242880 (63.20%)
+2019-01-31 11:30:27 1548934227.773478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3315573 total-bytes-write=52 payload-bytes-read=3315544/5242880 (63.24%)
+2019-01-31 11:30:27 1548934227.782649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3323043 total-bytes-write=52 payload-bytes-read=3323014/5242880 (63.38%)
+2019-01-31 11:30:27 1548934227.802945 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3324537 total-bytes-write=52 payload-bytes-read=3324508/5242880 (63.41%)
+2019-01-31 11:30:27 1548934227.807420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3328969 total-bytes-write=52 payload-bytes-read=3328940/5242880 (63.49%)
+2019-01-31 11:30:27 1548934227.812283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3332455 total-bytes-write=52 payload-bytes-read=3332426/5242880 (63.56%)
+2019-01-31 11:30:27 1548934227.813202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3335941 total-bytes-write=52 payload-bytes-read=3335912/5242880 (63.63%)
+2019-01-31 11:30:27 1548934227.856415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3343361 total-bytes-write=52 payload-bytes-read=3343332/5242880 (63.77%)
+2019-01-31 11:30:27 1548934227.904385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3347843 total-bytes-write=52 payload-bytes-read=3347814/5242880 (63.85%)
+2019-01-31 11:30:27 1548934227.911319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3349835 total-bytes-write=52 payload-bytes-read=3349806/5242880 (63.89%)
+2019-01-31 11:30:27 1548934227.998837 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3350831 total-bytes-write=52 payload-bytes-read=3350802/5242880 (63.91%)
+2019-01-31 11:30:28 1548934228.070058 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3354317 total-bytes-write=52 payload-bytes-read=3354288/5242880 (63.98%)
+2019-01-31 11:30:28 1548934228.089065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3357803 total-bytes-write=52 payload-bytes-read=3357774/5242880 (64.04%)
+2019-01-31 11:30:28 1548934228.132435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3384595 total-bytes-write=52 payload-bytes-read=3384566/5242880 (64.56%)
+2019-01-31 11:30:28 1548934228.176450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3421845 total-bytes-write=52 payload-bytes-read=3421816/5242880 (65.27%)
+2019-01-31 11:30:28 1548934228.200787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3487381 total-bytes-write=52 payload-bytes-read=3487352/5242880 (66.52%)
+2019-01-31 11:30:28 1548934228.203894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3493805 total-bytes-write=52 payload-bytes-read=3493776/5242880 (66.64%)
+2019-01-31 11:30:28 1548934228.212402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3501275 total-bytes-write=52 payload-bytes-read=3501246/5242880 (66.78%)
+2019-01-31 11:30:28 1548934228.217421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3505259 total-bytes-write=52 payload-bytes-read=3505230/5242880 (66.86%)
+2019-01-31 11:30:28 1548934228.220123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3509193 total-bytes-write=52 payload-bytes-read=3509164/5242880 (66.93%)
+2019-01-31 11:30:28 1548934228.221435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3509691 total-bytes-write=52 payload-bytes-read=3509662/5242880 (66.94%)
+2019-01-31 11:30:28 1548934228.257697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3517161 total-bytes-write=52 payload-bytes-read=3517132/5242880 (67.08%)
+2019-01-31 11:30:28 1548934228.259040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3525079 total-bytes-write=52 payload-bytes-read=3525050/5242880 (67.23%)
+2019-01-31 11:30:28 1548934228.259112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3525577 total-bytes-write=52 payload-bytes-read=3525548/5242880 (67.24%)
+2019-01-31 11:30:28 1548934228.261991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3529063 total-bytes-write=52 payload-bytes-read=3529034/5242880 (67.31%)
+2019-01-31 11:30:28 1548934228.263407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3537031 total-bytes-write=52 payload-bytes-read=3537002/5242880 (67.46%)
+2019-01-31 11:30:28 1548934228.263486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3540965 total-bytes-write=52 payload-bytes-read=3540936/5242880 (67.54%)
+2019-01-31 11:30:28 1548934228.266463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3541463 total-bytes-write=52 payload-bytes-read=3541434/5242880 (67.55%)
+2019-01-31 11:30:28 1548934228.266788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3543455 total-bytes-write=52 payload-bytes-read=3543426/5242880 (67.59%)
+2019-01-31 11:30:28 1548934228.464020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3546941 total-bytes-write=52 payload-bytes-read=3546912/5242880 (67.65%)
+2019-01-31 11:30:28 1548934228.465050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3550925 total-bytes-write=52 payload-bytes-read=3550896/5242880 (67.73%)
+2019-01-31 11:30:28 1548934228.473663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3552419 total-bytes-write=52 payload-bytes-read=3552390/5242880 (67.76%)
+2019-01-31 11:30:28 1548934228.474735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3558345 total-bytes-write=52 payload-bytes-read=3558316/5242880 (67.87%)
+2019-01-31 11:30:28 1548934228.492194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3559341 total-bytes-write=52 payload-bytes-read=3559312/5242880 (67.89%)
+2019-01-31 11:30:28 1548934228.493595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3562827 total-bytes-write=52 payload-bytes-read=3562798/5242880 (67.95%)
+2019-01-31 11:30:28 1548934228.493866 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3565815 total-bytes-write=52 payload-bytes-read=3565786/5242880 (68.01%)
+2019-01-31 11:30:28 1548934228.511697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3566811 total-bytes-write=52 payload-bytes-read=3566782/5242880 (68.03%)
+2019-01-31 11:30:28 1548934228.590887 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3570297 total-bytes-write=52 payload-bytes-read=3570268/5242880 (68.10%)
+2019-01-31 11:30:28 1548934228.688224 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3571293 total-bytes-write=52 payload-bytes-read=3571264/5242880 (68.12%)
+2019-01-31 11:30:28 1548934228.765246 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3574729 total-bytes-write=52 payload-bytes-read=3574700/5242880 (68.18%)
+2019-01-31 11:30:28 1548934228.794912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3582199 total-bytes-write=52 payload-bytes-read=3582170/5242880 (68.32%)
+2019-01-31 11:30:28 1548934228.795364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3588125 total-bytes-write=52 payload-bytes-read=3588096/5242880 (68.44%)
+2019-01-31 11:30:28 1548934228.812622 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3589121 total-bytes-write=52 payload-bytes-read=3589092/5242880 (68.46%)
+2019-01-31 11:30:28 1548934228.852031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3592607 total-bytes-write=52 payload-bytes-read=3592578/5242880 (68.52%)
+2019-01-31 11:30:28 1548934228.853134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3596591 total-bytes-write=52 payload-bytes-read=3596562/5242880 (68.60%)
+2019-01-31 11:30:28 1548934228.853805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3600575 total-bytes-write=52 payload-bytes-read=3600546/5242880 (68.67%)
+2019-01-31 11:30:28 1548934228.896422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3634339 total-bytes-write=52 payload-bytes-read=3634310/5242880 (69.32%)
+2019-01-31 11:30:29 1548934229.085977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3637775 total-bytes-write=52 payload-bytes-read=3637746/5242880 (69.38%)
+2019-01-31 11:30:29 1548934229.086563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3641759 total-bytes-write=52 payload-bytes-read=3641730/5242880 (69.46%)
+2019-01-31 11:30:29 1548934229.087030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3645743 total-bytes-write=52 payload-bytes-read=3645714/5242880 (69.54%)
+2019-01-31 11:30:29 1548934229.145131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3649229 total-bytes-write=52 payload-bytes-read=3649200/5242880 (69.60%)
+2019-01-31 11:30:29 1548934229.188591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3650225 total-bytes-write=52 payload-bytes-read=3650196/5242880 (69.62%)
+2019-01-31 11:30:29 1548934229.189110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3653661 total-bytes-write=52 payload-bytes-read=3653632/5242880 (69.69%)
+2019-01-31 11:30:29 1548934229.191031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3654159 total-bytes-write=52 payload-bytes-read=3654130/5242880 (69.70%)
+2019-01-31 11:30:29 1548934229.305598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3658207 total-bytes-write=52 payload-bytes-read=3658178/5242880 (69.77%)
+2019-01-31 11:30:29 1548934229.348437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3682993 total-bytes-write=52 payload-bytes-read=3682964/5242880 (70.25%)
+2019-01-31 11:30:29 1548934229.392378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3687923 total-bytes-write=52 payload-bytes-read=3687894/5242880 (70.34%)
+2019-01-31 11:30:29 1548934229.392482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3691409 total-bytes-write=52 payload-bytes-read=3691380/5242880 (70.41%)
+2019-01-31 11:30:29 1548934229.403901 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3694895 total-bytes-write=52 payload-bytes-read=3694866/5242880 (70.47%)
+2019-01-31 11:30:29 1548934229.444359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3699875 total-bytes-write=52 payload-bytes-read=3699846/5242880 (70.57%)
+2019-01-31 11:30:29 1548934229.488357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3707295 total-bytes-write=52 payload-bytes-read=3707266/5242880 (70.71%)
+2019-01-31 11:30:29 1548934229.532385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3716757 total-bytes-write=52 payload-bytes-read=3716728/5242880 (70.89%)
+2019-01-31 11:30:29 1548934229.576408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3728161 total-bytes-write=52 payload-bytes-read=3728132/5242880 (71.11%)
+2019-01-31 11:30:29 1548934229.620367 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3740561 total-bytes-write=52 payload-bytes-read=3740532/5242880 (71.34%)
+2019-01-31 11:30:29 1548934229.664381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3751965 total-bytes-write=52 payload-bytes-read=3751936/5242880 (71.56%)
+2019-01-31 11:30:29 1548934229.696944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3756447 total-bytes-write=52 payload-bytes-read=3756418/5242880 (71.65%)
+2019-01-31 11:30:29 1548934229.700780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3759933 total-bytes-write=52 payload-bytes-read=3759904/5242880 (71.71%)
+2019-01-31 11:30:29 1548934229.700999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3760929 total-bytes-write=52 payload-bytes-read=3760900/5242880 (71.73%)
+2019-01-31 11:30:29 1548934229.725082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3764415 total-bytes-write=52 payload-bytes-read=3764386/5242880 (71.80%)
+2019-01-31 11:30:29 1548934229.743520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3768349 total-bytes-write=52 payload-bytes-read=3768320/5242880 (71.88%)
+2019-01-31 11:30:29 1548934229.753969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3773329 total-bytes-write=52 payload-bytes-read=3773300/5242880 (71.97%)
+2019-01-31 11:30:29 1548934229.789862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3777313 total-bytes-write=52 payload-bytes-read=3777284/5242880 (72.05%)
+2019-01-31 11:30:29 1548934229.800198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3781297 total-bytes-write=52 payload-bytes-read=3781268/5242880 (72.12%)
+2019-01-31 11:30:29 1548934229.840383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3788219 total-bytes-write=52 payload-bytes-read=3788190/5242880 (72.25%)
+2019-01-31 11:30:29 1548934229.884363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3795689 total-bytes-write=52 payload-bytes-read=3795660/5242880 (72.40%)
+2019-01-31 11:30:29 1548934229.928392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3804105 total-bytes-write=52 payload-bytes-read=3804076/5242880 (72.56%)
+2019-01-31 11:30:29 1548934229.972397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3819493 total-bytes-write=52 payload-bytes-read=3819464/5242880 (72.85%)
+2019-01-31 11:30:30 1548934230.016420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3826963 total-bytes-write=52 payload-bytes-read=3826934/5242880 (72.99%)
+2019-01-31 11:30:30 1548934230.034775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3830947 total-bytes-write=52 payload-bytes-read=3830918/5242880 (73.07%)
+2019-01-31 11:30:30 1548934230.035508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3834881 total-bytes-write=52 payload-bytes-read=3834852/5242880 (73.14%)
+2019-01-31 11:30:30 1548934230.043439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3838865 total-bytes-write=52 payload-bytes-read=3838836/5242880 (73.22%)
+2019-01-31 11:30:30 1548934230.082362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3842849 total-bytes-write=52 payload-bytes-read=3842820/5242880 (73.30%)
+2019-01-31 11:30:30 1548934230.124383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3850767 total-bytes-write=52 payload-bytes-read=3850738/5242880 (73.45%)
+2019-01-31 11:30:30 1548934230.168387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3862221 total-bytes-write=52 payload-bytes-read=3862192/5242880 (73.67%)
+2019-01-31 11:30:30 1548934230.212394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3878107 total-bytes-write=52 payload-bytes-read=3878078/5242880 (73.97%)
+2019-01-31 11:30:30 1548934230.256419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3886025 total-bytes-write=52 payload-bytes-read=3885996/5242880 (74.12%)
+2019-01-31 11:30:30 1548934230.269580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3890507 total-bytes-write=52 payload-bytes-read=3890478/5242880 (74.20%)
+2019-01-31 11:30:30 1548934230.270863 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3893495 total-bytes-write=52 payload-bytes-read=3893466/5242880 (74.26%)
+2019-01-31 11:30:30 1548934230.276590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3896981 total-bytes-write=52 payload-bytes-read=3896952/5242880 (74.33%)
+2019-01-31 11:30:30 1548934230.281232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3900417 total-bytes-write=52 payload-bytes-read=3900388/5242880 (74.39%)
+2019-01-31 11:30:30 1548934230.318282 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3904401 total-bytes-write=52 payload-bytes-read=3904372/5242880 (74.47%)
+2019-01-31 11:30:30 1548934230.320220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3908385 total-bytes-write=52 payload-bytes-read=3908356/5242880 (74.55%)
+2019-01-31 11:30:30 1548934230.360364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3915357 total-bytes-write=52 payload-bytes-read=3915328/5242880 (74.68%)
+2019-01-31 11:30:30 1548934230.404398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3926761 total-bytes-write=52 payload-bytes-read=3926732/5242880 (74.90%)
+2019-01-31 11:30:30 1548934230.448385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3939161 total-bytes-write=52 payload-bytes-read=3939132/5242880 (75.13%)
+2019-01-31 11:30:30 1548934230.492384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3950067 total-bytes-write=52 payload-bytes-read=3950038/5242880 (75.34%)
+2019-01-31 11:30:30 1548934230.500807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3955545 total-bytes-write=52 payload-bytes-read=3955516/5242880 (75.45%)
+2019-01-31 11:30:30 1548934230.520251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3959031 total-bytes-write=52 payload-bytes-read=3959002/5242880 (75.51%)
+2019-01-31 11:30:30 1548934230.521476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3963015 total-bytes-write=52 payload-bytes-read=3962986/5242880 (75.59%)
+2019-01-31 11:30:30 1548934230.547791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3966949 total-bytes-write=52 payload-bytes-read=3966920/5242880 (75.66%)
+2019-01-31 11:30:30 1548934230.575061 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3971431 total-bytes-write=52 payload-bytes-read=3971402/5242880 (75.75%)
+2019-01-31 11:30:30 1548934230.576630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3978403 total-bytes-write=52 payload-bytes-read=3978374/5242880 (75.88%)
+2019-01-31 11:30:30 1548934230.597735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3981839 total-bytes-write=52 payload-bytes-read=3981810/5242880 (75.95%)
+2019-01-31 11:30:30 1548934230.623138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3985325 total-bytes-write=52 payload-bytes-read=3985296/5242880 (76.01%)
+2019-01-31 11:30:30 1548934230.623460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3986321 total-bytes-write=52 payload-bytes-read=3986292/5242880 (76.03%)
+2019-01-31 11:30:30 1548934230.624864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3991799 total-bytes-write=52 payload-bytes-read=3991770/5242880 (76.14%)
+2019-01-31 11:30:30 1548934230.644181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3992795 total-bytes-write=52 payload-bytes-read=3992766/5242880 (76.16%)
+2019-01-31 11:30:30 1548934230.668805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3996281 total-bytes-write=52 payload-bytes-read=3996252/5242880 (76.22%)
+2019-01-31 11:30:30 1548934230.674465 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=3999717 total-bytes-write=52 payload-bytes-read=3999688/5242880 (76.29%)
+2019-01-31 11:30:30 1548934230.675032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4005195 total-bytes-write=52 payload-bytes-read=4005166/5242880 (76.39%)
+2019-01-31 11:30:30 1548934230.717614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4009179 total-bytes-write=52 payload-bytes-read=4009150/5242880 (76.47%)
+2019-01-31 11:30:30 1548934230.723436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4012665 total-bytes-write=52 payload-bytes-read=4012636/5242880 (76.53%)
+2019-01-31 11:30:30 1548934230.724305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4016101 total-bytes-write=52 payload-bytes-read=4016072/5242880 (76.60%)
+2019-01-31 11:30:30 1548934230.739449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4020583 total-bytes-write=52 payload-bytes-read=4020554/5242880 (76.69%)
+2019-01-31 11:30:30 1548934230.771828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4024069 total-bytes-write=52 payload-bytes-read=4024040/5242880 (76.75%)
+2019-01-31 11:30:30 1548934230.772554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4028053 total-bytes-write=52 payload-bytes-read=4028024/5242880 (76.83%)
+2019-01-31 11:30:30 1548934230.778445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4030045 total-bytes-write=52 payload-bytes-read=4030016/5242880 (76.87%)
+2019-01-31 11:30:30 1548934230.786172 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4033481 total-bytes-write=52 payload-bytes-read=4033452/5242880 (76.93%)
+2019-01-31 11:30:30 1548934230.816645 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4035971 total-bytes-write=52 payload-bytes-read=4035942/5242880 (76.98%)
+2019-01-31 11:30:30 1548934230.823140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4038959 total-bytes-write=52 payload-bytes-read=4038930/5242880 (77.04%)
+2019-01-31 11:30:30 1548934230.825584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4041449 total-bytes-write=52 payload-bytes-read=4041420/5242880 (77.08%)
+2019-01-31 11:30:30 1548934230.832577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4045931 total-bytes-write=52 payload-bytes-read=4045902/5242880 (77.17%)
+2019-01-31 11:30:30 1548934230.864423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4049367 total-bytes-write=52 payload-bytes-read=4049338/5242880 (77.23%)
+2019-01-31 11:30:30 1548934230.873610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4053351 total-bytes-write=52 payload-bytes-read=4053322/5242880 (77.31%)
+2019-01-31 11:30:30 1548934230.874180 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4056837 total-bytes-write=52 payload-bytes-read=4056808/5242880 (77.38%)
+2019-01-31 11:30:30 1548934230.910789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4060323 total-bytes-write=52 payload-bytes-read=4060294/5242880 (77.44%)
+2019-01-31 11:30:30 1548934230.952387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4070233 total-bytes-write=52 payload-bytes-read=4070204/5242880 (77.63%)
+2019-01-31 11:30:30 1548934230.996392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4083131 total-bytes-write=52 payload-bytes-read=4083102/5242880 (77.88%)
+2019-01-31 11:30:31 1548934231.040416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4097523 total-bytes-write=52 payload-bytes-read=4097494/5242880 (78.15%)
+2019-01-31 11:30:31 1548934231.084408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4109973 total-bytes-write=52 payload-bytes-read=4109944/5242880 (78.39%)
+2019-01-31 11:30:31 1548934231.100964 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4113409 total-bytes-write=52 payload-bytes-read=4113380/5242880 (78.46%)
+2019-01-31 11:30:31 1548934231.112444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4115401 total-bytes-write=52 payload-bytes-read=4115372/5242880 (78.49%)
+2019-01-31 11:30:31 1548934231.115723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4118887 total-bytes-write=52 payload-bytes-read=4118858/5242880 (78.56%)
+2019-01-31 11:30:31 1548934231.123062 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4122373 total-bytes-write=52 payload-bytes-read=4122344/5242880 (78.63%)
+2019-01-31 11:30:31 1548934231.164377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4130291 total-bytes-write=52 payload-bytes-read=4130262/5242880 (78.78%)
+2019-01-31 11:30:31 1548934231.208380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4138259 total-bytes-write=52 payload-bytes-read=4138230/5242880 (78.93%)
+2019-01-31 11:30:31 1548934231.252396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4150659 total-bytes-write=52 payload-bytes-read=4150630/5242880 (79.17%)
+2019-01-31 11:30:31 1548934231.296420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4162063 total-bytes-write=52 payload-bytes-read=4162034/5242880 (79.38%)
+2019-01-31 11:30:31 1548934231.304477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4164055 total-bytes-write=52 payload-bytes-read=4164026/5242880 (79.42%)
+2019-01-31 11:30:31 1548934231.307581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4167541 total-bytes-write=52 payload-bytes-read=4167512/5242880 (79.49%)
+2019-01-31 11:30:31 1548934231.325081 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4171525 total-bytes-write=52 payload-bytes-read=4171496/5242880 (79.56%)
+2019-01-31 11:30:31 1548934231.340504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4175509 total-bytes-write=52 payload-bytes-read=4175480/5242880 (79.64%)
+2019-01-31 11:30:31 1548934231.384402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4187411 total-bytes-write=52 payload-bytes-read=4187382/5242880 (79.87%)
+2019-01-31 11:30:31 1548934231.428424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4198317 total-bytes-write=52 payload-bytes-read=4198288/5242880 (80.08%)
+2019-01-31 11:30:31 1548934231.437682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4201803 total-bytes-write=52 payload-bytes-read=4201774/5242880 (80.14%)
+2019-01-31 11:30:31 1548934231.456649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4205787 total-bytes-write=52 payload-bytes-read=4205758/5242880 (80.22%)
+2019-01-31 11:30:31 1548934231.475447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4209273 total-bytes-write=52 payload-bytes-read=4209244/5242880 (80.28%)
+2019-01-31 11:30:31 1548934231.475861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4209771 total-bytes-write=52 payload-bytes-read=4209742/5242880 (80.29%)
+2019-01-31 11:30:31 1548934231.476458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4213207 total-bytes-write=52 payload-bytes-read=4213178/5242880 (80.36%)
+2019-01-31 11:30:31 1548934231.497477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4216693 total-bytes-write=52 payload-bytes-read=4216664/5242880 (80.43%)
+2019-01-31 11:30:31 1548934231.497835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4217689 total-bytes-write=52 payload-bytes-read=4217660/5242880 (80.45%)
+2019-01-31 11:30:31 1548934231.523012 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4221175 total-bytes-write=52 payload-bytes-read=4221146/5242880 (80.51%)
+2019-01-31 11:30:31 1548934231.523766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4225159 total-bytes-write=52 payload-bytes-read=4225130/5242880 (80.59%)
+2019-01-31 11:30:31 1548934231.544309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4230089 total-bytes-write=52 payload-bytes-read=4230060/5242880 (80.68%)
+2019-01-31 11:30:31 1548934231.551703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4233575 total-bytes-write=52 payload-bytes-read=4233546/5242880 (80.75%)
+2019-01-31 11:30:31 1548934231.570980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4234571 total-bytes-write=52 payload-bytes-read=4234542/5242880 (80.77%)
+2019-01-31 11:30:31 1548934231.571855 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4238057 total-bytes-write=52 payload-bytes-read=4238028/5242880 (80.83%)
+2019-01-31 11:30:31 1548934231.580437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4242041 total-bytes-write=52 payload-bytes-read=4242012/5242880 (80.91%)
+2019-01-31 11:30:31 1548934231.591210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4243485 total-bytes-write=52 payload-bytes-read=4243456/5242880 (80.94%)
+2019-01-31 11:30:31 1548934231.598298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4245975 total-bytes-write=52 payload-bytes-read=4245946/5242880 (80.98%)
+2019-01-31 11:30:31 1548934231.622314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4249461 total-bytes-write=52 payload-bytes-read=4249432/5242880 (81.05%)
+2019-01-31 11:30:31 1548934231.627185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4253445 total-bytes-write=52 payload-bytes-read=4253416/5242880 (81.13%)
+2019-01-31 11:30:31 1548934231.638644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4257429 total-bytes-write=52 payload-bytes-read=4257400/5242880 (81.20%)
+2019-01-31 11:30:31 1548934231.680381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4266841 total-bytes-write=52 payload-bytes-read=4266812/5242880 (81.38%)
+2019-01-31 11:30:31 1548934231.724396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4276751 total-bytes-write=52 payload-bytes-read=4276722/5242880 (81.57%)
+2019-01-31 11:30:31 1548934231.768400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4288703 total-bytes-write=52 payload-bytes-read=4288674/5242880 (81.80%)
+2019-01-31 11:30:31 1548934231.812401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4296123 total-bytes-write=52 payload-bytes-read=4296094/5242880 (81.94%)
+2019-01-31 11:30:31 1548934231.813270 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4300107 total-bytes-write=52 payload-bytes-read=4300078/5242880 (82.02%)
+2019-01-31 11:30:31 1548934231.821396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4304589 total-bytes-write=52 payload-bytes-read=4304560/5242880 (82.10%)
+2019-01-31 11:30:31 1548934231.826413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4308075 total-bytes-write=52 payload-bytes-read=4308046/5242880 (82.17%)
+2019-01-31 11:30:31 1548934231.861259 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4310515 total-bytes-write=52 payload-bytes-read=4310486/5242880 (82.22%)
+2019-01-31 11:30:31 1548934231.863857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4314997 total-bytes-write=52 payload-bytes-read=4314968/5242880 (82.30%)
+2019-01-31 11:30:31 1548934231.868314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4316491 total-bytes-write=52 payload-bytes-read=4316462/5242880 (82.33%)
+2019-01-31 11:30:31 1548934231.872438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4319977 total-bytes-write=52 payload-bytes-read=4319948/5242880 (82.40%)
+2019-01-31 11:30:31 1548934231.908073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4323961 total-bytes-write=52 payload-bytes-read=4323932/5242880 (82.47%)
+2019-01-31 11:30:31 1548934231.908326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4325405 total-bytes-write=52 payload-bytes-read=4325376/5242880 (82.50%)
+2019-01-31 11:30:31 1548934231.910311 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4327895 total-bytes-write=52 payload-bytes-read=4327866/5242880 (82.55%)
+2019-01-31 11:30:31 1548934231.916663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4330385 total-bytes-write=52 payload-bytes-read=4330356/5242880 (82.59%)
+2019-01-31 11:30:31 1548934231.960388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4341341 total-bytes-write=52 payload-bytes-read=4341312/5242880 (82.80%)
+2019-01-31 11:30:32 1548934232.004386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4353243 total-bytes-write=52 payload-bytes-read=4353214/5242880 (83.03%)
+2019-01-31 11:30:32 1548934232.048430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4358671 total-bytes-write=52 payload-bytes-read=4358642/5242880 (83.13%)
+2019-01-31 11:30:32 1548934232.052917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4363153 total-bytes-write=52 payload-bytes-read=4363124/5242880 (83.22%)
+2019-01-31 11:30:32 1548934232.058995 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4366639 total-bytes-write=52 payload-bytes-read=4366610/5242880 (83.29%)
+2019-01-31 11:30:32 1548934232.060874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4370623 total-bytes-write=52 payload-bytes-read=4370594/5242880 (83.36%)
+2019-01-31 11:30:32 1548934232.099574 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4374557 total-bytes-write=52 payload-bytes-read=4374528/5242880 (83.44%)
+2019-01-31 11:30:32 1548934232.109438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4379039 total-bytes-write=52 payload-bytes-read=4379010/5242880 (83.52%)
+2019-01-31 11:30:32 1548934232.109525 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4381031 total-bytes-write=52 payload-bytes-read=4381002/5242880 (83.56%)
+2019-01-31 11:30:32 1548934232.110025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4385015 total-bytes-write=52 payload-bytes-read=4384986/5242880 (83.64%)
+2019-01-31 11:30:32 1548934232.148464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4388501 total-bytes-write=52 payload-bytes-read=4388472/5242880 (83.70%)
+2019-01-31 11:30:32 1548934232.156421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4392435 total-bytes-write=52 payload-bytes-read=4392406/5242880 (83.78%)
+2019-01-31 11:30:32 1548934232.158179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4396419 total-bytes-write=52 payload-bytes-read=4396390/5242880 (83.85%)
+2019-01-31 11:30:32 1548934232.195878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4400403 total-bytes-write=52 payload-bytes-read=4400374/5242880 (83.93%)
+2019-01-31 11:30:32 1548934232.236409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4411807 total-bytes-write=52 payload-bytes-read=4411778/5242880 (84.15%)
+2019-01-31 11:30:32 1548934232.280409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4425203 total-bytes-write=52 payload-bytes-read=4425174/5242880 (84.40%)
+2019-01-31 11:30:32 1548934232.324402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4436657 total-bytes-write=52 payload-bytes-read=4436628/5242880 (84.62%)
+2019-01-31 11:30:32 1548934232.341925 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4440093 total-bytes-write=52 payload-bytes-read=4440064/5242880 (84.69%)
+2019-01-31 11:30:32 1548934232.346638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4444077 total-bytes-write=52 payload-bytes-read=4444048/5242880 (84.76%)
+2019-01-31 11:30:32 1548934232.348003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4448061 total-bytes-write=52 payload-bytes-read=4448032/5242880 (84.84%)
+2019-01-31 11:30:32 1548934232.388393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4452543 total-bytes-write=52 payload-bytes-read=4452514/5242880 (84.92%)
+2019-01-31 11:30:32 1548934232.432391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4463449 total-bytes-write=52 payload-bytes-read=4463420/5242880 (85.13%)
+2019-01-31 11:30:32 1548934232.476410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4479335 total-bytes-write=52 payload-bytes-read=4479306/5242880 (85.44%)
+2019-01-31 11:30:32 1548934232.520405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4493229 total-bytes-write=52 payload-bytes-read=4493200/5242880 (85.70%)
+2019-01-31 11:30:32 1548934232.529933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4495719 total-bytes-write=52 payload-bytes-read=4495690/5242880 (85.75%)
+2019-01-31 11:30:32 1548934232.539401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4500201 total-bytes-write=52 payload-bytes-read=4500172/5242880 (85.83%)
+2019-01-31 11:30:32 1548934232.542459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4503687 total-bytes-write=52 payload-bytes-read=4503658/5242880 (85.90%)
+2019-01-31 11:30:32 1548934232.544637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4507621 total-bytes-write=52 payload-bytes-read=4507592/5242880 (85.98%)
+2019-01-31 11:30:32 1548934232.588628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4512601 total-bytes-write=52 payload-bytes-read=4512572/5242880 (86.07%)
+2019-01-31 11:30:32 1548934232.606784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4519573 total-bytes-write=52 payload-bytes-read=4519544/5242880 (86.20%)
+2019-01-31 11:30:32 1548934232.650983 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4529981 total-bytes-write=52 payload-bytes-read=4529952/5242880 (86.40%)
+2019-01-31 11:30:32 1548934232.659921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4533467 total-bytes-write=52 payload-bytes-read=4533438/5242880 (86.47%)
+2019-01-31 11:30:32 1548934232.699084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4536953 total-bytes-write=52 payload-bytes-read=4536924/5242880 (86.53%)
+2019-01-31 11:30:32 1548934232.740399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4548357 total-bytes-write=52 payload-bytes-read=4548328/5242880 (86.75%)
+2019-01-31 11:30:32 1548934232.784415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4563745 total-bytes-write=52 payload-bytes-read=4563716/5242880 (87.05%)
+2019-01-31 11:30:32 1548934232.828394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4579631 total-bytes-write=52 payload-bytes-read=4579602/5242880 (87.35%)
+2019-01-31 11:30:32 1548934232.872396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4593525 total-bytes-write=52 payload-bytes-read=4593496/5242880 (87.61%)
+2019-01-31 11:30:32 1548934232.911020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4597509 total-bytes-write=52 payload-bytes-read=4597480/5242880 (87.69%)
+2019-01-31 11:30:32 1548934232.912605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4599999 total-bytes-write=52 payload-bytes-read=4599970/5242880 (87.74%)
+2019-01-31 11:30:32 1548934232.912883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4601493 total-bytes-write=52 payload-bytes-read=4601464/5242880 (87.77%)
+2019-01-31 11:30:32 1548934232.915082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4604929 total-bytes-write=52 payload-bytes-read=4604900/5242880 (87.83%)
+2019-01-31 11:30:32 1548934232.915705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4608415 total-bytes-write=52 payload-bytes-read=4608386/5242880 (87.90%)
+2019-01-31 11:30:32 1548934232.916570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4609411 total-bytes-write=52 payload-bytes-read=4609382/5242880 (87.92%)
+2019-01-31 11:30:32 1548934232.960728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4612897 total-bytes-write=52 payload-bytes-read=4612868/5242880 (87.98%)
+2019-01-31 11:30:32 1548934232.965906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4617877 total-bytes-write=52 payload-bytes-read=4617848/5242880 (88.08%)
+2019-01-31 11:30:32 1548934232.966043 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4621811 total-bytes-write=52 payload-bytes-read=4621782/5242880 (88.15%)
+2019-01-31 11:30:33 1548934233.007435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4625795 total-bytes-write=52 payload-bytes-read=4625766/5242880 (88.23%)
+2019-01-31 11:30:33 1548934233.008113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4628285 total-bytes-write=52 payload-bytes-read=4628256/5242880 (88.28%)
+2019-01-31 11:30:33 1548934233.013017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4631771 total-bytes-write=52 payload-bytes-read=4631742/5242880 (88.34%)
+2019-01-31 11:30:33 1548934233.013472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4635755 total-bytes-write=52 payload-bytes-read=4635726/5242880 (88.42%)
+2019-01-31 11:30:33 1548934233.014846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4639689 total-bytes-write=52 payload-bytes-read=4639660/5242880 (88.49%)
+2019-01-31 11:30:33 1548934233.055272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4643673 total-bytes-write=52 payload-bytes-read=4643644/5242880 (88.57%)
+2019-01-31 11:30:33 1548934233.061138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4647159 total-bytes-write=52 payload-bytes-read=4647130/5242880 (88.64%)
+2019-01-31 11:30:33 1548934233.068137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4654081 total-bytes-write=52 payload-bytes-read=4654052/5242880 (88.77%)
+2019-01-31 11:30:33 1548934233.068909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4656571 total-bytes-write=52 payload-bytes-read=4656542/5242880 (88.82%)
+2019-01-31 11:30:33 1548934233.101846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4660057 total-bytes-write=52 payload-bytes-read=4660028/5242880 (88.88%)
+2019-01-31 11:30:33 1548934233.107588 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4663543 total-bytes-write=52 payload-bytes-read=4663514/5242880 (88.95%)
+2019-01-31 11:30:33 1548934233.148385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4673453 total-bytes-write=52 payload-bytes-read=4673424/5242880 (89.14%)
+2019-01-31 11:30:33 1548934233.192418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4689837 total-bytes-write=52 payload-bytes-read=4689808/5242880 (89.45%)
+2019-01-31 11:30:33 1548934233.236413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4707715 total-bytes-write=52 payload-bytes-read=4707686/5242880 (89.79%)
+2019-01-31 11:30:33 1548934233.280418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4722605 total-bytes-write=52 payload-bytes-read=4722576/5242880 (90.08%)
+2019-01-31 11:30:33 1548934233.297195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4727087 total-bytes-write=52 payload-bytes-read=4727058/5242880 (90.16%)
+2019-01-31 11:30:33 1548934233.297287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4730573 total-bytes-write=52 payload-bytes-read=4730544/5242880 (90.23%)
+2019-01-31 11:30:33 1548934233.312165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4738989 total-bytes-write=52 payload-bytes-read=4738960/5242880 (90.39%)
+2019-01-31 11:30:33 1548934233.344734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4742475 total-bytes-write=52 payload-bytes-read=4742446/5242880 (90.45%)
+2019-01-31 11:30:33 1548934233.345594 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4746459 total-bytes-write=52 payload-bytes-read=4746430/5242880 (90.53%)
+2019-01-31 11:30:33 1548934233.348212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4750443 total-bytes-write=52 payload-bytes-read=4750414/5242880 (90.61%)
+2019-01-31 11:30:33 1548934233.388461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4759855 total-bytes-write=52 payload-bytes-read=4759826/5242880 (90.79%)
+2019-01-31 11:30:33 1548934233.432404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4778231 total-bytes-write=52 payload-bytes-read=4778202/5242880 (91.14%)
+2019-01-31 11:30:33 1548934233.476387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4790631 total-bytes-write=52 payload-bytes-read=4790602/5242880 (91.37%)
+2019-01-31 11:30:33 1548934233.476478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4794615 total-bytes-write=52 payload-bytes-read=4794586/5242880 (91.45%)
+2019-01-31 11:30:33 1548934233.505406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4798599 total-bytes-write=52 payload-bytes-read=4798570/5242880 (91.53%)
+2019-01-31 11:30:33 1548934233.548406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4815481 total-bytes-write=52 payload-bytes-read=4815452/5242880 (91.85%)
+2019-01-31 11:30:33 1548934233.592423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4836297 total-bytes-write=52 payload-bytes-read=4836268/5242880 (92.24%)
+2019-01-31 11:30:33 1548934233.636397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4854673 total-bytes-write=52 payload-bytes-read=4854644/5242880 (92.59%)
+2019-01-31 11:30:33 1548934233.650269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4859155 total-bytes-write=52 payload-bytes-read=4859126/5242880 (92.68%)
+2019-01-31 11:30:33 1548934233.650478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4861147 total-bytes-write=52 payload-bytes-read=4861118/5242880 (92.72%)
+2019-01-31 11:30:33 1548934233.658451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4864633 total-bytes-write=52 payload-bytes-read=4864604/5242880 (92.78%)
+2019-01-31 11:30:33 1548934233.670271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4868069 total-bytes-write=52 payload-bytes-read=4868040/5242880 (92.85%)
+2019-01-31 11:30:33 1548934233.671069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4869563 total-bytes-write=52 payload-bytes-read=4869534/5242880 (92.88%)
+2019-01-31 11:30:33 1548934233.680854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4873049 total-bytes-write=52 payload-bytes-read=4873020/5242880 (92.95%)
+2019-01-31 11:30:33 1548934233.700343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4877033 total-bytes-write=52 payload-bytes-read=4877004/5242880 (93.02%)
+2019-01-31 11:30:33 1548934233.747569 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4880519 total-bytes-write=52 payload-bytes-read=4880490/5242880 (93.09%)
+2019-01-31 11:30:33 1548934233.756824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4881515 total-bytes-write=52 payload-bytes-read=4881486/5242880 (93.11%)
+2019-01-31 11:30:33 1548934233.757453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4884951 total-bytes-write=52 payload-bytes-read=4884922/5242880 (93.17%)
+2019-01-31 11:30:33 1548934233.758629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4888935 total-bytes-write=52 payload-bytes-read=4888906/5242880 (93.25%)
+2019-01-31 11:30:33 1548934233.759841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4892919 total-bytes-write=52 payload-bytes-read=4892890/5242880 (93.32%)
+2019-01-31 11:30:33 1548934233.800416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4900837 total-bytes-write=52 payload-bytes-read=4900808/5242880 (93.48%)
+2019-01-31 11:30:33 1548934233.844443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4923197 total-bytes-write=52 payload-bytes-read=4923168/5242880 (93.90%)
+2019-01-31 11:30:33 1548934233.888431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4938585 total-bytes-write=52 payload-bytes-read=4938556/5242880 (94.20%)
+2019-01-31 11:30:33 1548934233.889222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4939083 total-bytes-write=52 payload-bytes-read=4939054/5242880 (94.20%)
+2019-01-31 11:30:33 1548934233.890347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4942569 total-bytes-write=52 payload-bytes-read=4942540/5242880 (94.27%)
+2019-01-31 11:30:33 1548934233.899690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4946553 total-bytes-write=52 payload-bytes-read=4946524/5242880 (94.35%)
+2019-01-31 11:30:33 1548934233.903009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4950487 total-bytes-write=52 payload-bytes-read=4950458/5242880 (94.42%)
+2019-01-31 11:30:33 1548934233.904002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4954471 total-bytes-write=52 payload-bytes-read=4954442/5242880 (94.50%)
+2019-01-31 11:30:33 1548934233.904684 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4954969 total-bytes-write=52 payload-bytes-read=4954940/5242880 (94.51%)
+2019-01-31 11:30:33 1548934233.905755 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4957957 total-bytes-write=52 payload-bytes-read=4957928/5242880 (94.56%)
+2019-01-31 11:30:33 1548934233.906017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4959451 total-bytes-write=52 payload-bytes-read=4959422/5242880 (94.59%)
+2019-01-31 11:30:33 1548934233.938285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4962937 total-bytes-write=52 payload-bytes-read=4962908/5242880 (94.66%)
+2019-01-31 11:30:33 1548934233.939316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4964381 total-bytes-write=52 payload-bytes-read=4964352/5242880 (94.69%)
+2019-01-31 11:30:33 1548934233.951487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4967867 total-bytes-write=52 payload-bytes-read=4967838/5242880 (94.75%)
+2019-01-31 11:30:33 1548934233.955456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4971353 total-bytes-write=52 payload-bytes-read=4971324/5242880 (94.82%)
+2019-01-31 11:30:33 1548934233.996361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4971851 total-bytes-write=52 payload-bytes-read=4971822/5242880 (94.83%)
+2019-01-31 11:30:34 1548934234.069768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4975337 total-bytes-write=52 payload-bytes-read=4975308/5242880 (94.90%)
+2019-01-31 11:30:34 1548934234.120617 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4978823 total-bytes-write=52 payload-bytes-read=4978794/5242880 (94.96%)
+2019-01-31 11:30:34 1548934234.164383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4982259 total-bytes-write=52 payload-bytes-read=4982230/5242880 (95.03%)
+2019-01-31 11:30:34 1548934234.252469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4983255 total-bytes-write=52 payload-bytes-read=4983226/5242880 (95.05%)
+2019-01-31 11:30:34 1548934234.256685 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=4986741 total-bytes-write=52 payload-bytes-read=4986712/5242880 (95.11%)
+2019-01-31 11:30:34 1548934234.300404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5006611 total-bytes-write=52 payload-bytes-read=5006582/5242880 (95.49%)
+2019-01-31 11:30:34 1548934234.344422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5029917 total-bytes-write=52 payload-bytes-read=5029888/5242880 (95.94%)
+2019-01-31 11:30:34 1548934234.388453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5057257 total-bytes-write=52 payload-bytes-read=5057228/5242880 (96.46%)
+2019-01-31 11:30:34 1548934234.432439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5083551 total-bytes-write=52 payload-bytes-read=5083522/5242880 (96.96%)
+2019-01-31 11:30:34 1548934234.447135 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5087535 total-bytes-write=52 payload-bytes-read=5087506/5242880 (97.04%)
+2019-01-31 11:30:34 1548934234.448326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5088033 total-bytes-write=52 payload-bytes-read=5088004/5242880 (97.05%)
+2019-01-31 11:30:34 1548934234.448758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5089527 total-bytes-write=52 payload-bytes-read=5089498/5242880 (97.07%)
+2019-01-31 11:30:34 1548934234.463055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5096947 total-bytes-write=52 payload-bytes-read=5096918/5242880 (97.22%)
+2019-01-31 11:30:34 1548934234.463141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5100931 total-bytes-write=52 payload-bytes-read=5100902/5242880 (97.29%)
+2019-01-31 11:30:34 1548934234.467004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5105413 total-bytes-write=52 payload-bytes-read=5105384/5242880 (97.38%)
+2019-01-31 11:30:34 1548934234.467099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5109895 total-bytes-write=52 payload-bytes-read=5109866/5242880 (97.46%)
+2019-01-31 11:30:34 1548934234.467185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5113331 total-bytes-write=52 payload-bytes-read=5113302/5242880 (97.53%)
+2019-01-31 11:30:34 1548934234.496812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5116817 total-bytes-write=52 payload-bytes-read=5116788/5242880 (97.59%)
+2019-01-31 11:30:34 1548934234.510170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5120303 total-bytes-write=52 payload-bytes-read=5120274/5242880 (97.66%)
+2019-01-31 11:30:34 1548934234.552433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5146099 total-bytes-write=52 payload-bytes-read=5146070/5242880 (98.15%)
+2019-01-31 11:30:34 1548934234.596430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5175929 total-bytes-write=52 payload-bytes-read=5175900/5242880 (98.72%)
+2019-01-31 11:30:34 1548934234.640435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5205211 total-bytes-write=52 payload-bytes-read=5205182/5242880 (99.28%)
+2019-01-31 11:30:34 1548934234.654848 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5207701 total-bytes-write=52 payload-bytes-read=5207672/5242880 (99.33%)
+2019-01-31 11:30:34 1548934234.655602 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5211137 total-bytes-write=52 payload-bytes-read=5211108/5242880 (99.39%)
+2019-01-31 11:30:34 1548934234.666725 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5212631 total-bytes-write=52 payload-bytes-read=5212602/5242880 (99.42%)
+2019-01-31 11:30:34 1548934234.757148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5216117 total-bytes-write=52 payload-bytes-read=5216088/5242880 (99.49%)
+2019-01-31 11:30:34 1548934234.762105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5219603 total-bytes-write=52 payload-bytes-read=5219574/5242880 (99.56%)
+2019-01-31 11:30:34 1548934234.804397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5231007 total-bytes-write=52 payload-bytes-read=5230978/5242880 (99.77%)
+2019-01-31 11:30:34 1548934234.848415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5233995 total-bytes-write=52 payload-bytes-read=5233966/5242880 (99.83%)
+2019-01-31 11:30:35 1548934235.187957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5237481 total-bytes-write=52 payload-bytes-read=5237452/5242880 (99.90%)
+2019-01-31 11:30:35 1548934235.355746 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE total-bytes-read=5240967 total-bytes-write=52 payload-bytes-read=5240938/5242880 (99.96%)
+2019-01-31 11:30:35 1548934235.394054 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:30:35 1548934235.394251 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:30:35 1548934235.394321 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=SUCCESS,error=NONE MD5 checksums passed: computed=fbc7364eca413dc6ffdf4a8e3b58337b received=fbc7364eca413dc6ffdf4a8e3b58337b
+2019-01-31 11:30:35 1548934235.394420 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,12,localhost:127.0.0.1:36402,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,2,phlox,GET,5242880,phlox,2,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=13 usecs-to-socket-connect=284 usecs-to-proxy-init=367 usecs-to-proxy-choice=467 usecs-to-proxy-request=541 usecs-to-proxy-response=-1 usecs-to-command=3219279 usecs-to-response=3624489 usecs-to-first-byte=3722948 usecs-to-last-byte=21754394 usecs-to-checksum=21754565
+2019-01-31 11:30:35 1548934235.394528 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:30:35 1548934235.394574 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 12
+2019-01-31 11:30:35 1548934235.394677 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:30:35 1548934235.394749 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:30:35 1548934235.395039 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:30:35 1548934235.395139 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:30:35 1548934235.968872 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:30:35 1548934235.968972 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:30:35 1548934235.969047 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36418 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:30:35 1548934235.969106 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:30:35 1548934235.969238 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,3,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:30:36 1548934236.599603 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:30:36 1548934236.599667 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:30:36 1548934236.640360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:30:36 1548934236.703137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=7001 total-bytes-write=52 payload-bytes-read=6972/5242880 (0.13%)
+2019-01-31 11:30:36 1548934236.703393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=7499 total-bytes-write=52 payload-bytes-read=7470/5242880 (0.14%)
+2019-01-31 11:30:36 1548934236.712483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=10985 total-bytes-write=52 payload-bytes-read=10956/5242880 (0.21%)
+2019-01-31 11:30:36 1548934236.785499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=14471 total-bytes-write=52 payload-bytes-read=14442/5242880 (0.28%)
+2019-01-31 11:30:36 1548934236.786228 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=18405 total-bytes-write=52 payload-bytes-read=18376/5242880 (0.35%)
+2019-01-31 11:30:36 1548934236.796441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=18903 total-bytes-write=52 payload-bytes-read=18874/5242880 (0.36%)
+2019-01-31 11:30:36 1548934236.798365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:30:36 1548934236.868394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=26373 total-bytes-write=52 payload-bytes-read=26344/5242880 (0.50%)
+2019-01-31 11:30:36 1548934236.870527 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=31851 total-bytes-write=52 payload-bytes-read=31822/5242880 (0.61%)
+2019-01-31 11:30:36 1548934236.870614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=34291 total-bytes-write=52 payload-bytes-read=34262/5242880 (0.65%)
+2019-01-31 11:30:36 1548934236.872358 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=37777 total-bytes-write=52 payload-bytes-read=37748/5242880 (0.72%)
+2019-01-31 11:30:36 1548934236.880317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=42259 total-bytes-write=52 payload-bytes-read=42230/5242880 (0.81%)
+2019-01-31 11:30:36 1548934236.881374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=45745 total-bytes-write=52 payload-bytes-read=45716/5242880 (0.87%)
+2019-01-31 11:30:36 1548934236.882576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=49679 total-bytes-write=52 payload-bytes-read=49650/5242880 (0.95%)
+2019-01-31 11:30:36 1548934236.924803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=53663 total-bytes-write=52 payload-bytes-read=53634/5242880 (1.02%)
+2019-01-31 11:30:36 1548934236.953091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=57647 total-bytes-write=52 payload-bytes-read=57618/5242880 (1.10%)
+2019-01-31 11:30:36 1548934236.953235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=58145 total-bytes-write=52 payload-bytes-read=58116/5242880 (1.11%)
+2019-01-31 11:30:36 1548934236.954560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=61631 total-bytes-write=52 payload-bytes-read=61602/5242880 (1.17%)
+2019-01-31 11:30:36 1548934236.955085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=64619 total-bytes-write=52 payload-bytes-read=64590/5242880 (1.23%)
+2019-01-31 11:30:36 1548934236.956798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=68055 total-bytes-write=52 payload-bytes-read=68026/5242880 (1.30%)
+2019-01-31 11:30:36 1548934236.959342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=72103 total-bytes-write=52 payload-bytes-read=72074/5242880 (1.37%)
+2019-01-31 11:30:37 1548934237.000505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=98333 total-bytes-write=52 payload-bytes-read=98304/5242880 (1.88%)
+2019-01-31 11:30:37 1548934237.044501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=142555 total-bytes-write=52 payload-bytes-read=142526/5242880 (2.72%)
+2019-01-31 11:30:37 1548934237.088472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=192703 total-bytes-write=52 payload-bytes-read=192674/5242880 (3.67%)
+2019-01-31 11:30:37 1548934237.090700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=196637 total-bytes-write=52 payload-bytes-read=196608/5242880 (3.75%)
+2019-01-31 11:30:37 1548934237.091483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=200621 total-bytes-write=52 payload-bytes-read=200592/5242880 (3.83%)
+2019-01-31 11:30:37 1548934237.117906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=205103 total-bytes-write=52 payload-bytes-read=205074/5242880 (3.91%)
+2019-01-31 11:30:37 1548934237.117971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=206099 total-bytes-write=52 payload-bytes-read=206070/5242880 (3.93%)
+2019-01-31 11:30:37 1548934237.119374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=213519 total-bytes-write=52 payload-bytes-read=213490/5242880 (4.07%)
+2019-01-31 11:30:37 1548934237.119627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=217503 total-bytes-write=52 payload-bytes-read=217474/5242880 (4.15%)
+2019-01-31 11:30:37 1548934237.122952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=221487 total-bytes-write=52 payload-bytes-read=221458/5242880 (4.22%)
+2019-01-31 11:30:37 1548934237.164443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:30:37 1548934237.817439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:30:37 1548934237.900003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=254753 total-bytes-write=52 payload-bytes-read=254724/5242880 (4.86%)
+2019-01-31 11:30:37 1548934237.981541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=258737 total-bytes-write=52 payload-bytes-read=258708/5242880 (4.93%)
+2019-01-31 11:30:37 1548934237.984547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=266655 total-bytes-write=52 payload-bytes-read=266626/5242880 (5.09%)
+2019-01-31 11:30:37 1548934237.984686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:30:38 1548934238.065403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=274623 total-bytes-write=52 payload-bytes-read=274594/5242880 (5.24%)
+2019-01-31 11:30:38 1548934238.066162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=278557 total-bytes-write=52 payload-bytes-read=278528/5242880 (5.31%)
+2019-01-31 11:30:38 1548934238.067478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=282043 total-bytes-write=52 payload-bytes-read=282014/5242880 (5.38%)
+2019-01-31 11:30:38 1548934238.069364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=290011 total-bytes-write=52 payload-bytes-read=289982/5242880 (5.53%)
+2019-01-31 11:30:38 1548934238.069828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=294493 total-bytes-write=52 payload-bytes-read=294464/5242880 (5.62%)
+2019-01-31 11:30:38 1548934238.149516 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=301913 total-bytes-write=52 payload-bytes-read=301884/5242880 (5.76%)
+2019-01-31 11:30:38 1548934238.149650 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=305897 total-bytes-write=52 payload-bytes-read=305868/5242880 (5.83%)
+2019-01-31 11:30:38 1548934238.151304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=309945 total-bytes-write=52 payload-bytes-read=309916/5242880 (5.91%)
+2019-01-31 11:30:38 1548934238.192456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=343645 total-bytes-write=52 payload-bytes-read=343616/5242880 (6.55%)
+2019-01-31 11:30:38 1548934238.236468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=359531 total-bytes-write=52 payload-bytes-read=359502/5242880 (6.86%)
+2019-01-31 11:30:38 1548934238.236723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=365457 total-bytes-write=52 payload-bytes-read=365428/5242880 (6.97%)
+2019-01-31 11:30:38 1548934238.238456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=372927 total-bytes-write=52 payload-bytes-read=372898/5242880 (7.11%)
+2019-01-31 11:30:38 1548934238.241015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=376861 total-bytes-write=52 payload-bytes-read=376832/5242880 (7.19%)
+2019-01-31 11:30:38 1548934238.246977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=381343 total-bytes-write=52 payload-bytes-read=381314/5242880 (7.27%)
+2019-01-31 11:30:38 1548934238.247102 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=384829 total-bytes-write=52 payload-bytes-read=384800/5242880 (7.34%)
+2019-01-31 11:30:38 1548934238.262660 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=392797 total-bytes-write=52 payload-bytes-read=392768/5242880 (7.49%)
+2019-01-31 11:30:38 1548934238.262766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=397229 total-bytes-write=52 payload-bytes-read=397200/5242880 (7.58%)
+2019-01-31 11:30:38 1548934238.263005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=405197 total-bytes-write=52 payload-bytes-read=405168/5242880 (7.73%)
+2019-01-31 11:30:38 1548934238.263118 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=409181 total-bytes-write=52 payload-bytes-read=409152/5242880 (7.80%)
+2019-01-31 11:30:38 1548934238.263282 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=413115 total-bytes-write=52 payload-bytes-read=413086/5242880 (7.88%)
+2019-01-31 11:30:38 1548934238.264591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=420585 total-bytes-write=52 payload-bytes-read=420556/5242880 (8.02%)
+2019-01-31 11:30:38 1548934238.264723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=424569 total-bytes-write=52 payload-bytes-read=424540/5242880 (8.10%)
+2019-01-31 11:30:38 1548934238.265001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=432487 total-bytes-write=52 payload-bytes-read=432458/5242880 (8.25%)
+2019-01-31 11:30:38 1548934238.265201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=436471 total-bytes-write=52 payload-bytes-read=436442/5242880 (8.32%)
+2019-01-31 11:30:38 1548934238.317460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=444389 total-bytes-write=52 payload-bytes-read=444360/5242880 (8.48%)
+2019-01-31 11:30:38 1548934238.319997 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=452357 total-bytes-write=52 payload-bytes-read=452328/5242880 (8.63%)
+2019-01-31 11:30:38 1548934238.320080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=455843 total-bytes-write=52 payload-bytes-read=455814/5242880 (8.69%)
+2019-01-31 11:30:38 1548934238.320675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=459777 total-bytes-write=52 payload-bytes-read=459748/5242880 (8.77%)
+2019-01-31 11:30:38 1548934238.321448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=463761 total-bytes-write=52 payload-bytes-read=463732/5242880 (8.84%)
+2019-01-31 11:30:38 1548934238.322918 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=467745 total-bytes-write=52 payload-bytes-read=467716/5242880 (8.92%)
+2019-01-31 11:30:38 1548934238.364433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=496031 total-bytes-write=52 payload-bytes-read=496002/5242880 (9.46%)
+2019-01-31 11:30:38 1548934238.700694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=499517 total-bytes-write=52 payload-bytes-read=499488/5242880 (9.53%)
+2019-01-31 11:30:38 1548934238.702976 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=503003 total-bytes-write=52 payload-bytes-read=502974/5242880 (9.59%)
+2019-01-31 11:30:38 1548934238.709368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=510423 total-bytes-write=52 payload-bytes-read=510394/5242880 (9.73%)
+2019-01-31 11:30:38 1548934238.710342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=518391 total-bytes-write=52 payload-bytes-read=518362/5242880 (9.89%)
+2019-01-31 11:30:38 1548934238.720670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=518889 total-bytes-write=52 payload-bytes-read=518860/5242880 (9.90%)
+2019-01-31 11:30:38 1548934238.723520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=522375 total-bytes-write=52 payload-bytes-read=522346/5242880 (9.96%)
+2019-01-31 11:30:38 1548934238.726818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=530293 total-bytes-write=52 payload-bytes-read=530264/5242880 (10.11%)
+2019-01-31 11:30:38 1548934238.726923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=533779 total-bytes-write=52 payload-bytes-read=533750/5242880 (10.18%)
+2019-01-31 11:30:38 1548934238.777805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=534775 total-bytes-write=52 payload-bytes-read=534746/5242880 (10.20%)
+2019-01-31 11:30:38 1548934238.778892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=541199 total-bytes-write=52 payload-bytes-read=541170/5242880 (10.32%)
+2019-01-31 11:30:38 1548934238.826281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=544685 total-bytes-write=52 payload-bytes-read=544656/5242880 (10.39%)
+2019-01-31 11:30:38 1548934238.831592 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=552653 total-bytes-write=52 payload-bytes-read=552624/5242880 (10.54%)
+2019-01-31 11:30:38 1548934238.831697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=556637 total-bytes-write=52 payload-bytes-read=556608/5242880 (10.62%)
+2019-01-31 11:30:38 1548934238.851132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=560073 total-bytes-write=52 payload-bytes-read=560044/5242880 (10.68%)
+2019-01-31 11:30:38 1548934238.862356 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=561069 total-bytes-write=52 payload-bytes-read=561040/5242880 (10.70%)
+2019-01-31 11:30:38 1548934238.865755 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=565117 total-bytes-write=52 payload-bytes-read=565088/5242880 (10.78%)
+2019-01-31 11:30:38 1548934238.908468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=607731 total-bytes-write=52 payload-bytes-read=607702/5242880 (11.59%)
+2019-01-31 11:30:38 1548934238.956463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=652451 total-bytes-write=52 payload-bytes-read=652422/5242880 (12.44%)
+2019-01-31 11:30:39 1548934239.004452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=690647 total-bytes-write=52 payload-bytes-read=690618/5242880 (13.17%)
+2019-01-31 11:30:39 1548934239.026017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=691145 total-bytes-write=52 payload-bytes-read=691116/5242880 (13.18%)
+2019-01-31 11:30:39 1548934239.026427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=694133 total-bytes-write=52 payload-bytes-read=694104/5242880 (13.24%)
+2019-01-31 11:30:39 1548934239.048800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=697619 total-bytes-write=52 payload-bytes-read=697590/5242880 (13.31%)
+2019-01-31 11:30:39 1548934239.049439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=701603 total-bytes-write=52 payload-bytes-read=701574/5242880 (13.38%)
+2019-01-31 11:30:39 1548934239.051058 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=709521 total-bytes-write=52 payload-bytes-read=709492/5242880 (13.53%)
+2019-01-31 11:30:39 1548934239.051751 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=713505 total-bytes-write=52 payload-bytes-read=713476/5242880 (13.61%)
+2019-01-31 11:30:39 1548934239.059706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=714003 total-bytes-write=52 payload-bytes-read=713974/5242880 (13.62%)
+2019-01-31 11:30:39 1548934239.060363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=717489 total-bytes-write=52 payload-bytes-read=717460/5242880 (13.68%)
+2019-01-31 11:30:39 1548934239.062065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=721423 total-bytes-write=52 payload-bytes-read=721394/5242880 (13.76%)
+2019-01-31 11:30:39 1548934239.062269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=725407 total-bytes-write=52 payload-bytes-read=725378/5242880 (13.84%)
+2019-01-31 11:30:39 1548934239.063254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=729391 total-bytes-write=52 payload-bytes-read=729362/5242880 (13.91%)
+2019-01-31 11:30:39 1548934239.104411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=741791 total-bytes-write=52 payload-bytes-read=741762/5242880 (14.15%)
+2019-01-31 11:30:39 1548934239.152646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=743783 total-bytes-write=52 payload-bytes-read=743754/5242880 (14.19%)
+2019-01-31 11:30:39 1548934239.287297 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=744281 total-bytes-write=52 payload-bytes-read=744252/5242880 (14.20%)
+2019-01-31 11:30:39 1548934239.430824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=747767 total-bytes-write=52 payload-bytes-read=747738/5242880 (14.26%)
+2019-01-31 11:30:39 1548934239.442725 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=751253 total-bytes-write=52 payload-bytes-read=751224/5242880 (14.33%)
+2019-01-31 11:30:39 1548934239.484449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=786013 total-bytes-write=52 payload-bytes-read=785984/5242880 (14.99%)
+2019-01-31 11:30:39 1548934239.528438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=808323 total-bytes-write=52 payload-bytes-read=808294/5242880 (15.42%)
+2019-01-31 11:30:39 1548934239.536632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=811809 total-bytes-write=52 payload-bytes-read=811780/5242880 (15.48%)
+2019-01-31 11:30:39 1548934239.538693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=819727 total-bytes-write=52 payload-bytes-read=819698/5242880 (15.63%)
+2019-01-31 11:30:39 1548934239.538774 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=823711 total-bytes-write=52 payload-bytes-read=823682/5242880 (15.71%)
+2019-01-31 11:30:39 1548934239.538922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=824209 total-bytes-write=52 payload-bytes-read=824180/5242880 (15.72%)
+2019-01-31 11:30:39 1548934239.539657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=827695 total-bytes-write=52 payload-bytes-read=827666/5242880 (15.79%)
+2019-01-31 11:30:39 1548934239.548410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=828691 total-bytes-write=52 payload-bytes-read=828662/5242880 (15.81%)
+2019-01-31 11:30:39 1548934239.549466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=832177 total-bytes-write=52 payload-bytes-read=832148/5242880 (15.87%)
+2019-01-31 11:30:39 1548934239.561519 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=832675 total-bytes-write=52 payload-bytes-read=832646/5242880 (15.88%)
+2019-01-31 11:30:39 1548934239.561644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=836111 total-bytes-write=52 payload-bytes-read=836082/5242880 (15.95%)
+2019-01-31 11:30:39 1548934239.608412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=836609 total-bytes-write=52 payload-bytes-read=836580/5242880 (15.96%)
+2019-01-31 11:30:39 1548934239.609156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=840095 total-bytes-write=52 payload-bytes-read=840066/5242880 (16.02%)
+2019-01-31 11:30:39 1548934239.610861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=844079 total-bytes-write=52 payload-bytes-read=844050/5242880 (16.10%)
+2019-01-31 11:30:39 1548934239.612528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=851997 total-bytes-write=52 payload-bytes-read=851968/5242880 (16.25%)
+2019-01-31 11:30:39 1548934239.612634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=855981 total-bytes-write=52 payload-bytes-read=855952/5242880 (16.33%)
+2019-01-31 11:30:39 1548934239.615680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=863949 total-bytes-write=52 payload-bytes-read=863920/5242880 (16.48%)
+2019-01-31 11:30:39 1548934239.615775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=867933 total-bytes-write=52 payload-bytes-read=867904/5242880 (16.55%)
+2019-01-31 11:30:39 1548934239.621429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=868381 total-bytes-write=52 payload-bytes-read=868352/5242880 (16.56%)
+2019-01-31 11:30:39 1548934239.621963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=871867 total-bytes-write=52 payload-bytes-read=871838/5242880 (16.63%)
+2019-01-31 11:30:39 1548934239.623174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=879835 total-bytes-write=52 payload-bytes-read=879806/5242880 (16.78%)
+2019-01-31 11:30:39 1548934239.624193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=883819 total-bytes-write=52 payload-bytes-read=883790/5242880 (16.86%)
+2019-01-31 11:30:39 1548934239.625227 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=887753 total-bytes-write=52 payload-bytes-read=887724/5242880 (16.93%)
+2019-01-31 11:30:39 1548934239.625429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=895721 total-bytes-write=52 payload-bytes-read=895692/5242880 (17.08%)
+2019-01-31 11:30:39 1548934239.625787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=898211 total-bytes-write=52 payload-bytes-read=898182/5242880 (17.13%)
+2019-01-31 11:30:39 1548934239.632207 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=901647 total-bytes-write=52 payload-bytes-read=901618/5242880 (17.20%)
+2019-01-31 11:30:39 1548934239.643760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=902643 total-bytes-write=52 payload-bytes-read=902614/5242880 (17.22%)
+2019-01-31 11:30:39 1548934239.644298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=906129 total-bytes-write=52 payload-bytes-read=906100/5242880 (17.28%)
+2019-01-31 11:30:39 1548934239.645059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=910113 total-bytes-write=52 payload-bytes-read=910084/5242880 (17.36%)
+2019-01-31 11:30:39 1548934239.646092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=918031 total-bytes-write=52 payload-bytes-read=918002/5242880 (17.51%)
+2019-01-31 11:30:39 1548934239.665962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=919027 total-bytes-write=52 payload-bytes-read=918998/5242880 (17.53%)
+2019-01-31 11:30:39 1548934239.668829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=923011 total-bytes-write=52 payload-bytes-read=922982/5242880 (17.60%)
+2019-01-31 11:30:39 1548934239.668931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=926995 total-bytes-write=52 payload-bytes-read=926966/5242880 (17.68%)
+2019-01-31 11:30:39 1548934239.712380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=936905 total-bytes-write=52 payload-bytes-read=936876/5242880 (17.87%)
+2019-01-31 11:30:39 1548934239.756427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=940391 total-bytes-write=52 payload-bytes-read=940362/5242880 (17.94%)
+2019-01-31 11:30:39 1548934239.769179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=942881 total-bytes-write=52 payload-bytes-read=942852/5242880 (17.98%)
+2019-01-31 11:30:39 1548934239.843621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=946367 total-bytes-write=52 payload-bytes-read=946338/5242880 (18.05%)
+2019-01-31 11:30:39 1548934239.854221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=949853 total-bytes-write=52 payload-bytes-read=949824/5242880 (18.12%)
+2019-01-31 11:30:39 1548934239.896391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=960759 total-bytes-write=52 payload-bytes-read=960730/5242880 (18.32%)
+2019-01-31 11:30:39 1548934239.940394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=965739 total-bytes-write=52 payload-bytes-read=965710/5242880 (18.42%)
+2019-01-31 11:30:39 1548934239.957646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=969175 total-bytes-write=52 payload-bytes-read=969146/5242880 (18.48%)
+2019-01-31 11:30:39 1548934239.960105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=975649 total-bytes-write=52 payload-bytes-read=975620/5242880 (18.61%)
+2019-01-31 11:30:39 1548934239.996226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=982123 total-bytes-write=52 payload-bytes-read=982094/5242880 (18.73%)
+2019-01-31 11:30:40 1548934240.036332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=985559 total-bytes-write=52 payload-bytes-read=985530/5242880 (18.80%)
+2019-01-31 11:30:40 1548934240.046233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=989543 total-bytes-write=52 payload-bytes-read=989514/5242880 (18.87%)
+2019-01-31 11:30:40 1548934240.129916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=990539 total-bytes-write=52 payload-bytes-read=990510/5242880 (18.89%)
+2019-01-31 11:30:40 1548934240.153618 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=992531 total-bytes-write=52 payload-bytes-read=992502/5242880 (18.93%)
+2019-01-31 11:30:40 1548934240.250065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=996017 total-bytes-write=52 payload-bytes-read=995988/5242880 (19.00%)
+2019-01-31 11:30:40 1548934240.250861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=999951 total-bytes-write=52 payload-bytes-read=999922/5242880 (19.07%)
+2019-01-31 11:30:40 1548934240.251208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1003437 total-bytes-write=52 payload-bytes-read=1003408/5242880 (19.14%)
+2019-01-31 11:30:40 1548934240.265582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1010907 total-bytes-write=52 payload-bytes-read=1010878/5242880 (19.28%)
+2019-01-31 11:30:40 1548934240.265793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1018825 total-bytes-write=52 payload-bytes-read=1018796/5242880 (19.43%)
+2019-01-31 11:30:40 1548934240.266047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1022311 total-bytes-write=52 payload-bytes-read=1022282/5242880 (19.50%)
+2019-01-31 11:30:40 1548934240.273376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1029781 total-bytes-write=52 payload-bytes-read=1029752/5242880 (19.64%)
+2019-01-31 11:30:40 1548934240.285530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1037201 total-bytes-write=52 payload-bytes-read=1037172/5242880 (19.78%)
+2019-01-31 11:30:40 1548934240.285632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1041185 total-bytes-write=52 payload-bytes-read=1041156/5242880 (19.86%)
+2019-01-31 11:30:40 1548934240.287207 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1045667 total-bytes-write=52 payload-bytes-read=1045638/5242880 (19.94%)
+2019-01-31 11:30:40 1548934240.287385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1053087 total-bytes-write=52 payload-bytes-read=1053058/5242880 (20.09%)
+2019-01-31 11:30:40 1548934240.287471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1055079 total-bytes-write=52 payload-bytes-read=1055050/5242880 (20.12%)
+2019-01-31 11:30:40 1548934240.295372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1058565 total-bytes-write=52 payload-bytes-read=1058536/5242880 (20.19%)
+2019-01-31 11:30:40 1548934240.300187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1062549 total-bytes-write=52 payload-bytes-read=1062520/5242880 (20.27%)
+2019-01-31 11:30:40 1548934240.303033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1070467 total-bytes-write=52 payload-bytes-read=1070438/5242880 (20.42%)
+2019-01-31 11:30:40 1548934240.306068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1071961 total-bytes-write=52 payload-bytes-read=1071932/5242880 (20.45%)
+2019-01-31 11:30:40 1548934240.307329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1075447 total-bytes-write=52 payload-bytes-read=1075418/5242880 (20.51%)
+2019-01-31 11:30:40 1548934240.351232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1076443 total-bytes-write=52 payload-bytes-read=1076414/5242880 (20.53%)
+2019-01-31 11:30:40 1548934240.352041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1079929 total-bytes-write=52 payload-bytes-read=1079900/5242880 (20.60%)
+2019-01-31 11:30:40 1548934240.352871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1083863 total-bytes-write=52 payload-bytes-read=1083834/5242880 (20.67%)
+2019-01-31 11:30:40 1548934240.364838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1088843 total-bytes-write=52 payload-bytes-read=1088814/5242880 (20.77%)
+2019-01-31 11:30:40 1548934240.383680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1092329 total-bytes-write=52 payload-bytes-read=1092300/5242880 (20.83%)
+2019-01-31 11:30:40 1548934240.386099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1100247 total-bytes-write=52 payload-bytes-read=1100218/5242880 (20.98%)
+2019-01-31 11:30:40 1548934240.386183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1104231 total-bytes-write=52 payload-bytes-read=1104202/5242880 (21.06%)
+2019-01-31 11:30:40 1548934240.388550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1104729 total-bytes-write=52 payload-bytes-read=1104700/5242880 (21.07%)
+2019-01-31 11:30:40 1548934240.389714 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1112199 total-bytes-write=52 payload-bytes-read=1112170/5242880 (21.21%)
+2019-01-31 11:30:40 1548934240.389899 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1120117 total-bytes-write=52 payload-bytes-read=1120088/5242880 (21.36%)
+2019-01-31 11:30:40 1548934240.393762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1120615 total-bytes-write=52 payload-bytes-read=1120586/5242880 (21.37%)
+2019-01-31 11:30:40 1548934240.394641 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1124101 total-bytes-write=52 payload-bytes-read=1124072/5242880 (21.44%)
+2019-01-31 11:30:40 1548934240.398403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1132019 total-bytes-write=52 payload-bytes-read=1131990/5242880 (21.59%)
+2019-01-31 11:30:40 1548934240.398500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1136501 total-bytes-write=52 payload-bytes-read=1136472/5242880 (21.68%)
+2019-01-31 11:30:40 1548934240.398572 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1139489 total-bytes-write=52 payload-bytes-read=1139460/5242880 (21.73%)
+2019-01-31 11:30:40 1548934240.406688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1142975 total-bytes-write=52 payload-bytes-read=1142946/5242880 (21.80%)
+2019-01-31 11:30:40 1548934240.408263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1150893 total-bytes-write=52 payload-bytes-read=1150864/5242880 (21.95%)
+2019-01-31 11:30:40 1548934240.408347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1154877 total-bytes-write=52 payload-bytes-read=1154848/5242880 (22.03%)
+2019-01-31 11:30:40 1548934240.428243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1158861 total-bytes-write=52 payload-bytes-read=1158832/5242880 (22.10%)
+2019-01-31 11:30:40 1548934240.468413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1169767 total-bytes-write=52 payload-bytes-read=1169738/5242880 (22.31%)
+2019-01-31 11:30:40 1548934240.512392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1176739 total-bytes-write=52 payload-bytes-read=1176710/5242880 (22.44%)
+2019-01-31 11:30:40 1548934240.519688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1177237 total-bytes-write=52 payload-bytes-read=1177208/5242880 (22.45%)
+2019-01-31 11:30:40 1548934240.520670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1184159 total-bytes-write=52 payload-bytes-read=1184130/5242880 (22.59%)
+2019-01-31 11:30:40 1548934240.542651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1186649 total-bytes-write=52 payload-bytes-read=1186620/5242880 (22.63%)
+2019-01-31 11:30:40 1548934240.589034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1190135 total-bytes-write=52 payload-bytes-read=1190106/5242880 (22.70%)
+2019-01-31 11:30:40 1548934240.668342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1191131 total-bytes-write=52 payload-bytes-read=1191102/5242880 (22.72%)
+2019-01-31 11:30:40 1548934240.675814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1194617 total-bytes-write=52 payload-bytes-read=1194588/5242880 (22.78%)
+2019-01-31 11:30:40 1548934240.676035 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1202535 total-bytes-write=52 payload-bytes-read=1202506/5242880 (22.94%)
+2019-01-31 11:30:40 1548934240.680273 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1206021 total-bytes-write=52 payload-bytes-read=1205992/5242880 (23.00%)
+2019-01-31 11:30:40 1548934240.681707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1210005 total-bytes-write=52 payload-bytes-read=1209976/5242880 (23.08%)
+2019-01-31 11:30:40 1548934240.703448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1213441 total-bytes-write=52 payload-bytes-read=1213412/5242880 (23.14%)
+2019-01-31 11:30:40 1548934240.779071 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1214437 total-bytes-write=52 payload-bytes-read=1214408/5242880 (23.16%)
+2019-01-31 11:30:40 1548934240.780239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1217923 total-bytes-write=52 payload-bytes-read=1217894/5242880 (23.23%)
+2019-01-31 11:30:40 1548934240.823917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1218919 total-bytes-write=52 payload-bytes-read=1218890/5242880 (23.25%)
+2019-01-31 11:30:40 1548934240.825079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1222405 total-bytes-write=52 payload-bytes-read=1222376/5242880 (23.31%)
+2019-01-31 11:30:40 1548934240.826094 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1226389 total-bytes-write=52 payload-bytes-read=1226360/5242880 (23.39%)
+2019-01-31 11:30:40 1548934240.826672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1234307 total-bytes-write=52 payload-bytes-read=1234278/5242880 (23.54%)
+2019-01-31 11:30:40 1548934240.880450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1234805 total-bytes-write=52 payload-bytes-read=1234776/5242880 (23.55%)
+2019-01-31 11:30:40 1548934240.881619 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1238291 total-bytes-write=52 payload-bytes-read=1238262/5242880 (23.62%)
+2019-01-31 11:30:40 1548934240.934777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1239785 total-bytes-write=52 payload-bytes-read=1239756/5242880 (23.65%)
+2019-01-31 11:30:40 1548934240.935003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1247205 total-bytes-write=52 payload-bytes-read=1247176/5242880 (23.79%)
+2019-01-31 11:30:40 1548934240.936241 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1255173 total-bytes-write=52 payload-bytes-read=1255144/5242880 (23.94%)
+2019-01-31 11:30:40 1548934240.936311 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1255671 total-bytes-write=52 payload-bytes-read=1255642/5242880 (23.95%)
+2019-01-31 11:30:40 1548934240.936821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1263091 total-bytes-write=52 payload-bytes-read=1263062/5242880 (24.09%)
+2019-01-31 11:30:40 1548934240.945373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1266577 total-bytes-write=52 payload-bytes-read=1266548/5242880 (24.16%)
+2019-01-31 11:30:40 1548934240.945803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1270561 total-bytes-write=52 payload-bytes-read=1270532/5242880 (24.23%)
+2019-01-31 11:30:40 1548934240.956279 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1271557 total-bytes-write=52 payload-bytes-read=1271528/5242880 (24.25%)
+2019-01-31 11:30:40 1548934240.958293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1275043 total-bytes-write=52 payload-bytes-read=1275014/5242880 (24.32%)
+2019-01-31 11:30:40 1548934240.966828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1278479 total-bytes-write=52 payload-bytes-read=1278450/5242880 (24.38%)
+2019-01-31 11:30:40 1548934240.967500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1282463 total-bytes-write=52 payload-bytes-read=1282434/5242880 (24.46%)
+2019-01-31 11:30:41 1548934241.029928 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1283459 total-bytes-write=52 payload-bytes-read=1283430/5242880 (24.48%)
+2019-01-31 11:30:41 1548934241.031272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1286945 total-bytes-write=52 payload-bytes-read=1286916/5242880 (24.55%)
+2019-01-31 11:30:41 1548934241.044041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1294365 total-bytes-write=52 payload-bytes-read=1294336/5242880 (24.69%)
+2019-01-31 11:30:41 1548934241.044142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1298349 total-bytes-write=52 payload-bytes-read=1298320/5242880 (24.76%)
+2019-01-31 11:30:41 1548934241.044730 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1302831 total-bytes-write=52 payload-bytes-read=1302802/5242880 (24.85%)
+2019-01-31 11:30:41 1548934241.047791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1310301 total-bytes-write=52 payload-bytes-read=1310272/5242880 (24.99%)
+2019-01-31 11:30:41 1548934241.049344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1318219 total-bytes-write=52 payload-bytes-read=1318190/5242880 (25.14%)
+2019-01-31 11:30:41 1548934241.049410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1318717 total-bytes-write=52 payload-bytes-read=1318688/5242880 (25.15%)
+2019-01-31 11:30:41 1548934241.054801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1326187 total-bytes-write=52 payload-bytes-read=1326158/5242880 (25.29%)
+2019-01-31 11:30:41 1548934241.054883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:30:41 1548934241.072791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1330619 total-bytes-write=52 payload-bytes-read=1330590/5242880 (25.38%)
+2019-01-31 11:30:41 1548934241.074073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1334105 total-bytes-write=52 payload-bytes-read=1334076/5242880 (25.45%)
+2019-01-31 11:30:41 1548934241.095573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1335599 total-bytes-write=52 payload-bytes-read=1335570/5242880 (25.47%)
+2019-01-31 11:30:41 1548934241.097610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1343069 total-bytes-write=52 payload-bytes-read=1343040/5242880 (25.62%)
+2019-01-31 11:30:41 1548934241.099165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1350987 total-bytes-write=52 payload-bytes-read=1350958/5242880 (25.77%)
+2019-01-31 11:30:41 1548934241.099305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1354971 total-bytes-write=52 payload-bytes-read=1354942/5242880 (25.84%)
+2019-01-31 11:30:41 1548934241.106836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1355967 total-bytes-write=52 payload-bytes-read=1355938/5242880 (25.86%)
+2019-01-31 11:30:41 1548934241.107996 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1359453 total-bytes-write=52 payload-bytes-read=1359424/5242880 (25.93%)
+2019-01-31 11:30:41 1548934241.146011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1362889 total-bytes-write=52 payload-bytes-read=1362860/5242880 (25.99%)
+2019-01-31 11:30:41 1548934241.194590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1364383 total-bytes-write=52 payload-bytes-read=1364354/5242880 (26.02%)
+2019-01-31 11:30:41 1548934241.195226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1367869 total-bytes-write=52 payload-bytes-read=1367840/5242880 (26.09%)
+2019-01-31 11:30:41 1548934241.227378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1368367 total-bytes-write=52 payload-bytes-read=1368338/5242880 (26.10%)
+2019-01-31 11:30:41 1548934241.228077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1371853 total-bytes-write=52 payload-bytes-read=1371824/5242880 (26.17%)
+2019-01-31 11:30:41 1548934241.228411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1374343 total-bytes-write=52 payload-bytes-read=1374314/5242880 (26.21%)
+2019-01-31 11:30:41 1548934241.241705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1381763 total-bytes-write=52 payload-bytes-read=1381734/5242880 (26.35%)
+2019-01-31 11:30:41 1548934241.242520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1389731 total-bytes-write=52 payload-bytes-read=1389702/5242880 (26.51%)
+2019-01-31 11:30:41 1548934241.251429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1390229 total-bytes-write=52 payload-bytes-read=1390200/5242880 (26.52%)
+2019-01-31 11:30:41 1548934241.251980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1393665 total-bytes-write=52 payload-bytes-read=1393636/5242880 (26.58%)
+2019-01-31 11:30:41 1548934241.254608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1401633 total-bytes-write=52 payload-bytes-read=1401604/5242880 (26.73%)
+2019-01-31 11:30:41 1548934241.255565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1406115 total-bytes-write=52 payload-bytes-read=1406086/5242880 (26.82%)
+2019-01-31 11:30:41 1548934241.255640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1408107 total-bytes-write=52 payload-bytes-read=1408078/5242880 (26.86%)
+2019-01-31 11:30:41 1548934241.272709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1408605 total-bytes-write=52 payload-bytes-read=1408576/5242880 (26.87%)
+2019-01-31 11:30:41 1548934241.273268 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1412041 total-bytes-write=52 payload-bytes-read=1412012/5242880 (26.93%)
+2019-01-31 11:30:41 1548934241.273981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1415029 total-bytes-write=52 payload-bytes-read=1415000/5242880 (26.99%)
+2019-01-31 11:30:41 1548934241.286981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1422499 total-bytes-write=52 payload-bytes-read=1422470/5242880 (27.13%)
+2019-01-31 11:30:41 1548934241.287075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1425437 total-bytes-write=52 payload-bytes-read=1425408/5242880 (27.19%)
+2019-01-31 11:30:41 1548934241.307189 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1428923 total-bytes-write=52 payload-bytes-read=1428894/5242880 (27.25%)
+2019-01-31 11:30:41 1548934241.308353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1432907 total-bytes-write=52 payload-bytes-read=1432878/5242880 (27.33%)
+2019-01-31 11:30:41 1548934241.332349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1436393 total-bytes-write=52 payload-bytes-read=1436364/5242880 (27.40%)
+2019-01-31 11:30:41 1548934241.471539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1439879 total-bytes-write=52 payload-bytes-read=1439850/5242880 (27.46%)
+2019-01-31 11:30:41 1548934241.512424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1457757 total-bytes-write=52 payload-bytes-read=1457728/5242880 (27.80%)
+2019-01-31 11:30:41 1548934241.567684 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1461193 total-bytes-write=52 payload-bytes-read=1461164/5242880 (27.87%)
+2019-01-31 11:30:41 1548934241.579818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1464679 total-bytes-write=52 payload-bytes-read=1464650/5242880 (27.94%)
+2019-01-31 11:30:41 1548934241.592698 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1472149 total-bytes-write=52 payload-bytes-read=1472120/5242880 (28.08%)
+2019-01-31 11:30:41 1548934241.592822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1480067 total-bytes-write=52 payload-bytes-read=1480038/5242880 (28.23%)
+2019-01-31 11:30:41 1548934241.593782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1483055 total-bytes-write=52 payload-bytes-read=1483026/5242880 (28.29%)
+2019-01-31 11:30:41 1548934241.600103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1486541 total-bytes-write=52 payload-bytes-read=1486512/5242880 (28.35%)
+2019-01-31 11:30:41 1548934241.601419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1490525 total-bytes-write=52 payload-bytes-read=1490496/5242880 (28.43%)
+2019-01-31 11:30:41 1548934241.602126 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1497945 total-bytes-write=52 payload-bytes-read=1497916/5242880 (28.57%)
+2019-01-31 11:30:41 1548934241.612350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1501431 total-bytes-write=52 payload-bytes-read=1501402/5242880 (28.64%)
+2019-01-31 11:30:41 1548934241.635933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1502427 total-bytes-write=52 payload-bytes-read=1502398/5242880 (28.66%)
+2019-01-31 11:30:41 1548934241.637281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1505913 total-bytes-write=52 payload-bytes-read=1505884/5242880 (28.72%)
+2019-01-31 11:30:41 1548934241.659136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1509847 total-bytes-write=52 payload-bytes-read=1509818/5242880 (28.80%)
+2019-01-31 11:30:41 1548934241.660339 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1513333 total-bytes-write=52 payload-bytes-read=1513304/5242880 (28.86%)
+2019-01-31 11:30:41 1548934241.669546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1516819 total-bytes-write=52 payload-bytes-read=1516790/5242880 (28.93%)
+2019-01-31 11:30:41 1548934241.716530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1554567 total-bytes-write=52 payload-bytes-read=1554538/5242880 (29.65%)
+2019-01-31 11:30:41 1548934241.760380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1562485 total-bytes-write=52 payload-bytes-read=1562456/5242880 (29.80%)
+2019-01-31 11:30:41 1548934241.772001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1566967 total-bytes-write=52 payload-bytes-read=1566938/5242880 (29.89%)
+2019-01-31 11:30:41 1548934241.772088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1570453 total-bytes-write=52 payload-bytes-read=1570424/5242880 (29.95%)
+2019-01-31 11:30:41 1548934241.779138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1573889 total-bytes-write=52 payload-bytes-read=1573860/5242880 (30.02%)
+2019-01-31 11:30:41 1548934241.816640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1574387 total-bytes-write=52 payload-bytes-read=1574358/5242880 (30.03%)
+2019-01-31 11:30:41 1548934241.817112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1577873 total-bytes-write=52 payload-bytes-read=1577844/5242880 (30.09%)
+2019-01-31 11:30:41 1548934241.863524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1580363 total-bytes-write=52 payload-bytes-read=1580334/5242880 (30.14%)
+2019-01-31 11:30:41 1548934241.878116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1583849 total-bytes-write=52 payload-bytes-read=1583820/5242880 (30.21%)
+2019-01-31 11:30:41 1548934241.908318 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1584347 total-bytes-write=52 payload-bytes-read=1584318/5242880 (30.22%)
+2019-01-31 11:30:41 1548934241.908873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1587833 total-bytes-write=52 payload-bytes-read=1587804/5242880 (30.28%)
+2019-01-31 11:30:41 1548934241.965076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1591767 total-bytes-write=52 payload-bytes-read=1591738/5242880 (30.36%)
+2019-01-31 11:30:41 1548934241.965575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1595751 total-bytes-write=52 payload-bytes-read=1595722/5242880 (30.44%)
+2019-01-31 11:30:41 1548934241.976978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1599237 total-bytes-write=52 payload-bytes-read=1599208/5242880 (30.50%)
+2019-01-31 11:30:42 1548934242.008907 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1600731 total-bytes-write=52 payload-bytes-read=1600702/5242880 (30.53%)
+2019-01-31 11:30:42 1548934242.009476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1604217 total-bytes-write=52 payload-bytes-read=1604188/5242880 (30.60%)
+2019-01-31 11:30:42 1548934242.053582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1607653 total-bytes-write=52 payload-bytes-read=1607624/5242880 (30.66%)
+2019-01-31 11:30:42 1548934242.066160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1608649 total-bytes-write=52 payload-bytes-read=1608620/5242880 (30.68%)
+2019-01-31 11:30:42 1548934242.066681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1612135 total-bytes-write=52 payload-bytes-read=1612106/5242880 (30.75%)
+2019-01-31 11:30:42 1548934242.190743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1613131 total-bytes-write=52 payload-bytes-read=1613102/5242880 (30.77%)
+2019-01-31 11:30:42 1548934242.255434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1616617 total-bytes-write=52 payload-bytes-read=1616588/5242880 (30.83%)
+2019-01-31 11:30:42 1548934242.257084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1620601 total-bytes-write=52 payload-bytes-read=1620572/5242880 (30.91%)
+2019-01-31 11:30:42 1548934242.258022 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1624037 total-bytes-write=52 payload-bytes-read=1624008/5242880 (30.98%)
+2019-01-31 11:30:42 1548934242.267754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1627523 total-bytes-write=52 payload-bytes-read=1627494/5242880 (31.04%)
+2019-01-31 11:30:42 1548934242.271603 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1635491 total-bytes-write=52 payload-bytes-read=1635462/5242880 (31.19%)
+2019-01-31 11:30:42 1548934242.271723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1639425 total-bytes-write=52 payload-bytes-read=1639396/5242880 (31.27%)
+2019-01-31 11:30:42 1548934242.275704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1639923 total-bytes-write=52 payload-bytes-read=1639894/5242880 (31.28%)
+2019-01-31 11:30:42 1548934242.277286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1647393 total-bytes-write=52 payload-bytes-read=1647364/5242880 (31.42%)
+2019-01-31 11:30:42 1548934242.277530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1655311 total-bytes-write=52 payload-bytes-read=1655282/5242880 (31.57%)
+2019-01-31 11:30:42 1548934242.278777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1655809 total-bytes-write=52 payload-bytes-read=1655780/5242880 (31.58%)
+2019-01-31 11:30:42 1548934242.279973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1659295 total-bytes-write=52 payload-bytes-read=1659266/5242880 (31.65%)
+2019-01-31 11:30:42 1548934242.284166 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1667263 total-bytes-write=52 payload-bytes-read=1667234/5242880 (31.80%)
+2019-01-31 11:30:42 1548934242.284304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1671695 total-bytes-write=52 payload-bytes-read=1671666/5242880 (31.88%)
+2019-01-31 11:30:42 1548934242.284457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1677173 total-bytes-write=52 payload-bytes-read=1677144/5242880 (31.99%)
+2019-01-31 11:30:42 1548934242.290993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1680659 total-bytes-write=52 payload-bytes-read=1680630/5242880 (32.06%)
+2019-01-31 11:30:42 1548934242.333390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1681157 total-bytes-write=52 payload-bytes-read=1681128/5242880 (32.06%)
+2019-01-31 11:30:42 1548934242.334647 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1684643 total-bytes-write=52 payload-bytes-read=1684614/5242880 (32.13%)
+2019-01-31 11:30:42 1548934242.352903 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1689075 total-bytes-write=52 payload-bytes-read=1689046/5242880 (32.22%)
+2019-01-31 11:30:42 1548934242.353124 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1697043 total-bytes-write=52 payload-bytes-read=1697014/5242880 (32.37%)
+2019-01-31 11:30:42 1548934242.353185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1699035 total-bytes-write=52 payload-bytes-read=1699006/5242880 (32.41%)
+2019-01-31 11:30:42 1548934242.359080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1702521 total-bytes-write=52 payload-bytes-read=1702492/5242880 (32.47%)
+2019-01-31 11:30:42 1548934242.360922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1710439 total-bytes-write=52 payload-bytes-read=1710410/5242880 (32.62%)
+2019-01-31 11:30:42 1548934242.364280 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1714921 total-bytes-write=52 payload-bytes-read=1714892/5242880 (32.71%)
+2019-01-31 11:30:42 1548934242.364456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1721843 total-bytes-write=52 payload-bytes-read=1721814/5242880 (32.84%)
+2019-01-31 11:30:42 1548934242.369330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1725329 total-bytes-write=52 payload-bytes-read=1725300/5242880 (32.91%)
+2019-01-31 11:30:42 1548934242.370809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1729313 total-bytes-write=52 payload-bytes-read=1729284/5242880 (32.98%)
+2019-01-31 11:30:42 1548934242.414998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1729811 total-bytes-write=52 payload-bytes-read=1729782/5242880 (32.99%)
+2019-01-31 11:30:42 1548934242.416293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1733297 total-bytes-write=52 payload-bytes-read=1733268/5242880 (33.06%)
+2019-01-31 11:30:42 1548934242.446185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1734791 total-bytes-write=52 payload-bytes-read=1734762/5242880 (33.09%)
+2019-01-31 11:30:42 1548934242.452531 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1738227 total-bytes-write=52 payload-bytes-read=1738198/5242880 (33.15%)
+2019-01-31 11:30:42 1548934242.453949 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1746195 total-bytes-write=52 payload-bytes-read=1746166/5242880 (33.31%)
+2019-01-31 11:30:42 1548934242.454014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1748187 total-bytes-write=52 payload-bytes-read=1748158/5242880 (33.34%)
+2019-01-31 11:30:42 1548934242.464854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1755607 total-bytes-write=52 payload-bytes-read=1755578/5242880 (33.48%)
+2019-01-31 11:30:42 1548934242.465080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1763575 total-bytes-write=52 payload-bytes-read=1763546/5242880 (33.64%)
+2019-01-31 11:30:42 1548934242.465212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1767559 total-bytes-write=52 payload-bytes-read=1767530/5242880 (33.71%)
+2019-01-31 11:30:42 1548934242.465326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1771493 total-bytes-write=52 payload-bytes-read=1771464/5242880 (33.79%)
+2019-01-31 11:30:42 1548934242.469865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1771991 total-bytes-write=52 payload-bytes-read=1771962/5242880 (33.80%)
+2019-01-31 11:30:42 1548934242.471341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1775477 total-bytes-write=52 payload-bytes-read=1775448/5242880 (33.86%)
+2019-01-31 11:30:42 1548934242.483057 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1778963 total-bytes-write=52 payload-bytes-read=1778934/5242880 (33.93%)
+2019-01-31 11:30:42 1548934242.524400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1801323 total-bytes-write=52 payload-bytes-read=1801294/5242880 (34.36%)
+2019-01-31 11:30:42 1548934242.568402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1812229 total-bytes-write=52 payload-bytes-read=1812200/5242880 (34.56%)
+2019-01-31 11:30:42 1548934242.573587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1813225 total-bytes-write=52 payload-bytes-read=1813196/5242880 (34.58%)
+2019-01-31 11:30:42 1548934242.574385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1816711 total-bytes-write=52 payload-bytes-read=1816682/5242880 (34.65%)
+2019-01-31 11:30:42 1548934242.580780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1817209 total-bytes-write=52 payload-bytes-read=1817180/5242880 (34.66%)
+2019-01-31 11:30:42 1548934242.581792 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1820645 total-bytes-write=52 payload-bytes-read=1820616/5242880 (34.73%)
+2019-01-31 11:30:42 1548934242.585075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1828613 total-bytes-write=52 payload-bytes-read=1828584/5242880 (34.88%)
+2019-01-31 11:30:42 1548934242.591743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1829609 total-bytes-write=52 payload-bytes-read=1829580/5242880 (34.90%)
+2019-01-31 11:30:42 1548934242.591921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1830605 total-bytes-write=52 payload-bytes-read=1830576/5242880 (34.92%)
+2019-01-31 11:30:42 1548934242.660968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1833593 total-bytes-write=52 payload-bytes-read=1833564/5242880 (34.97%)
+2019-01-31 11:30:42 1548934242.704378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1836531 total-bytes-write=52 payload-bytes-read=1836502/5242880 (35.03%)
+2019-01-31 11:30:42 1548934242.765318 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1840017 total-bytes-write=52 payload-bytes-read=1839988/5242880 (35.09%)
+2019-01-31 11:30:42 1548934242.808404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1851421 total-bytes-write=52 payload-bytes-read=1851392/5242880 (35.31%)
+2019-01-31 11:30:42 1548934242.852420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1868801 total-bytes-write=52 payload-bytes-read=1868772/5242880 (35.64%)
+2019-01-31 11:30:42 1548934242.900398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1879757 total-bytes-write=52 payload-bytes-read=1879728/5242880 (35.85%)
+2019-01-31 11:30:42 1548934242.950058 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1883243 total-bytes-write=52 payload-bytes-read=1883214/5242880 (35.92%)
+2019-01-31 11:30:42 1548934242.965601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1890663 total-bytes-write=52 payload-bytes-read=1890634/5242880 (36.06%)
+2019-01-31 11:30:42 1548934242.965788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1898631 total-bytes-write=52 payload-bytes-read=1898602/5242880 (36.21%)
+2019-01-31 11:30:42 1548934242.965907 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1902565 total-bytes-write=52 payload-bytes-read=1902536/5242880 (36.29%)
+2019-01-31 11:30:43 1548934243.038515 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1903063 total-bytes-write=52 payload-bytes-read=1903034/5242880 (36.30%)
+2019-01-31 11:30:43 1548934243.038722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1905055 total-bytes-write=52 payload-bytes-read=1905026/5242880 (36.34%)
+2019-01-31 11:30:43 1548934243.048740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1908043 total-bytes-write=52 payload-bytes-read=1908014/5242880 (36.39%)
+2019-01-31 11:30:43 1548934243.057784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1911031 total-bytes-write=52 payload-bytes-read=1911002/5242880 (36.45%)
+2019-01-31 11:30:43 1548934243.100442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1949725 total-bytes-write=52 payload-bytes-read=1949696/5242880 (37.19%)
+2019-01-31 11:30:43 1548934243.144401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1962175 total-bytes-write=52 payload-bytes-read=1962146/5242880 (37.42%)
+2019-01-31 11:30:43 1548934243.168119 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1963171 total-bytes-write=52 payload-bytes-read=1963142/5242880 (37.44%)
+2019-01-31 11:30:43 1548934243.170664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1966607 total-bytes-write=52 payload-bytes-read=1966578/5242880 (37.51%)
+2019-01-31 11:30:43 1548934243.222263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1967603 total-bytes-write=52 payload-bytes-read=1967574/5242880 (37.53%)
+2019-01-31 11:30:43 1548934243.223162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1971089 total-bytes-write=52 payload-bytes-read=1971060/5242880 (37.59%)
+2019-01-31 11:30:43 1548934243.239269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=1974575 total-bytes-write=52 payload-bytes-read=1974546/5242880 (37.66%)
+2019-01-31 11:30:43 1548934243.280439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2008837 total-bytes-write=52 payload-bytes-read=2008808/5242880 (38.31%)
+2019-01-31 11:30:43 1548934243.337689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2013817 total-bytes-write=52 payload-bytes-read=2013788/5242880 (38.41%)
+2019-01-31 11:30:43 1548934243.337878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2021735 total-bytes-write=52 payload-bytes-read=2021706/5242880 (38.56%)
+2019-01-31 11:30:43 1548934243.338024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2026217 total-bytes-write=52 payload-bytes-read=2026188/5242880 (38.65%)
+2019-01-31 11:30:43 1548934243.338185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2032143 total-bytes-write=52 payload-bytes-read=2032114/5242880 (38.76%)
+2019-01-31 11:30:43 1548934243.338689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2036625 total-bytes-write=52 payload-bytes-read=2036596/5242880 (38.84%)
+2019-01-31 11:30:43 1548934243.339326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2044593 total-bytes-write=52 payload-bytes-read=2044564/5242880 (39.00%)
+2019-01-31 11:30:43 1548934243.339438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2048527 total-bytes-write=52 payload-bytes-read=2048498/5242880 (39.07%)
+2019-01-31 11:30:43 1548934243.340040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2053009 total-bytes-write=52 payload-bytes-read=2052980/5242880 (39.16%)
+2019-01-31 11:30:43 1548934243.340099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2054005 total-bytes-write=52 payload-bytes-read=2053976/5242880 (39.18%)
+2019-01-31 11:30:43 1548934243.410220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2057491 total-bytes-write=52 payload-bytes-read=2057462/5242880 (39.24%)
+2019-01-31 11:30:43 1548934243.440751 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2057989 total-bytes-write=52 payload-bytes-read=2057960/5242880 (39.25%)
+2019-01-31 11:30:43 1548934243.442495 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2065409 total-bytes-write=52 payload-bytes-read=2065380/5242880 (39.39%)
+2019-01-31 11:30:43 1548934243.444534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2071385 total-bytes-write=52 payload-bytes-read=2071356/5242880 (39.51%)
+2019-01-31 11:30:43 1548934243.463296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2074871 total-bytes-write=52 payload-bytes-read=2074842/5242880 (39.57%)
+2019-01-31 11:30:43 1548934243.463518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2078855 total-bytes-write=52 payload-bytes-read=2078826/5242880 (39.65%)
+2019-01-31 11:30:43 1548934243.517524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2082291 total-bytes-write=52 payload-bytes-read=2082262/5242880 (39.72%)
+2019-01-31 11:30:43 1548934243.532529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2087271 total-bytes-write=52 payload-bytes-read=2087242/5242880 (39.81%)
+2019-01-31 11:30:43 1548934243.539497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2095239 total-bytes-write=52 payload-bytes-read=2095210/5242880 (39.96%)
+2019-01-31 11:30:43 1548934243.539627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2099671 total-bytes-write=52 payload-bytes-read=2099642/5242880 (40.05%)
+2019-01-31 11:30:43 1548934243.539793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2105149 total-bytes-write=52 payload-bytes-read=2105120/5242880 (40.15%)
+2019-01-31 11:30:43 1548934243.559152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2106145 total-bytes-write=52 payload-bytes-read=2106116/5242880 (40.17%)
+2019-01-31 11:30:43 1548934243.559409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2107639 total-bytes-write=52 payload-bytes-read=2107610/5242880 (40.20%)
+2019-01-31 11:30:43 1548934243.658016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2111125 total-bytes-write=52 payload-bytes-read=2111096/5242880 (40.27%)
+2019-01-31 11:30:43 1548934243.669306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2114561 total-bytes-write=52 payload-bytes-read=2114532/5242880 (40.33%)
+2019-01-31 11:30:43 1548934243.669994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2118545 total-bytes-write=52 payload-bytes-read=2118516/5242880 (40.41%)
+2019-01-31 11:30:43 1548934243.671731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2122529 total-bytes-write=52 payload-bytes-read=2122500/5242880 (40.48%)
+2019-01-31 11:30:43 1548934243.712386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2128505 total-bytes-write=52 payload-bytes-read=2128476/5242880 (40.60%)
+2019-01-31 11:30:43 1548934243.756396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2132439 total-bytes-write=52 payload-bytes-read=2132410/5242880 (40.67%)
+2019-01-31 11:30:43 1548934243.774237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2139909 total-bytes-write=52 payload-bytes-read=2139880/5242880 (40.81%)
+2019-01-31 11:30:43 1548934243.774319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2143893 total-bytes-write=52 payload-bytes-read=2143864/5242880 (40.89%)
+2019-01-31 11:30:43 1548934243.776369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2147827 total-bytes-write=52 payload-bytes-read=2147798/5242880 (40.97%)
+2019-01-31 11:30:43 1548934243.821008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2149321 total-bytes-write=52 payload-bytes-read=2149292/5242880 (40.99%)
+2019-01-31 11:30:43 1548934243.821209 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2156791 total-bytes-write=52 payload-bytes-read=2156762/5242880 (41.14%)
+2019-01-31 11:30:43 1548934243.821343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2160775 total-bytes-write=52 payload-bytes-read=2160746/5242880 (41.21%)
+2019-01-31 11:30:43 1548934243.829560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2164211 total-bytes-write=52 payload-bytes-read=2164182/5242880 (41.28%)
+2019-01-31 11:30:43 1548934243.831480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2168195 total-bytes-write=52 payload-bytes-read=2168166/5242880 (41.35%)
+2019-01-31 11:30:43 1548934243.831970 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2174669 total-bytes-write=52 payload-bytes-read=2174640/5242880 (41.48%)
+2019-01-31 11:30:43 1548934243.850689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2182089 total-bytes-write=52 payload-bytes-read=2182060/5242880 (41.62%)
+2019-01-31 11:30:43 1548934243.850905 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2190057 total-bytes-write=52 payload-bytes-read=2190028/5242880 (41.77%)
+2019-01-31 11:30:43 1548934243.851027 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2194041 total-bytes-write=52 payload-bytes-read=2194012/5242880 (41.85%)
+2019-01-31 11:30:43 1548934243.851138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2197975 total-bytes-write=52 payload-bytes-read=2197946/5242880 (41.92%)
+2019-01-31 11:30:43 1548934243.852670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2198473 total-bytes-write=52 payload-bytes-read=2198444/5242880 (41.93%)
+2019-01-31 11:30:43 1548934243.853713 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2201959 total-bytes-write=52 payload-bytes-read=2201930/5242880 (42.00%)
+2019-01-31 11:30:43 1548934243.895472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2202457 total-bytes-write=52 payload-bytes-read=2202428/5242880 (42.01%)
+2019-01-31 11:30:43 1548934243.896054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2204947 total-bytes-write=52 payload-bytes-read=2204918/5242880 (42.06%)
+2019-01-31 11:30:43 1548934243.909690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2208433 total-bytes-write=52 payload-bytes-read=2208404/5242880 (42.12%)
+2019-01-31 11:30:43 1548934243.911266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2216351 total-bytes-write=52 payload-bytes-read=2216322/5242880 (42.27%)
+2019-01-31 11:30:43 1548934243.911402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2220335 total-bytes-write=52 payload-bytes-read=2220306/5242880 (42.35%)
+2019-01-31 11:30:43 1548934243.927472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2220833 total-bytes-write=52 payload-bytes-read=2220804/5242880 (42.36%)
+2019-01-31 11:30:43 1548934243.928381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2224319 total-bytes-write=52 payload-bytes-read=2224290/5242880 (42.42%)
+2019-01-31 11:30:43 1548934243.929316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2228253 total-bytes-write=52 payload-bytes-read=2228224/5242880 (42.50%)
+2019-01-31 11:30:43 1548934243.939732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2231739 total-bytes-write=52 payload-bytes-read=2231710/5242880 (42.57%)
+2019-01-31 11:30:43 1548934243.943078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2239707 total-bytes-write=52 payload-bytes-read=2239678/5242880 (42.72%)
+2019-01-31 11:30:43 1548934243.943240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2244189 total-bytes-write=52 payload-bytes-read=2244160/5242880 (42.80%)
+2019-01-31 11:30:43 1548934243.943360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2247127 total-bytes-write=52 payload-bytes-read=2247098/5242880 (42.86%)
+2019-01-31 11:30:43 1548934243.955243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2250613 total-bytes-write=52 payload-bytes-read=2250584/5242880 (42.93%)
+2019-01-31 11:30:43 1548934243.963308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2253103 total-bytes-write=52 payload-bytes-read=2253074/5242880 (42.97%)
+2019-01-31 11:30:43 1548934243.995372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2256589 total-bytes-write=52 payload-bytes-read=2256560/5242880 (43.04%)
+2019-01-31 11:30:44 1548934244.037667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2258581 total-bytes-write=52 payload-bytes-read=2258552/5242880 (43.08%)
+2019-01-31 11:30:44 1548934244.049476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2262017 total-bytes-write=52 payload-bytes-read=2261988/5242880 (43.14%)
+2019-01-31 11:30:44 1548934244.050015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2266001 total-bytes-write=52 payload-bytes-read=2265972/5242880 (43.22%)
+2019-01-31 11:30:44 1548934244.052074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2273969 total-bytes-write=52 payload-bytes-read=2273940/5242880 (43.37%)
+2019-01-31 11:30:44 1548934244.052134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2274467 total-bytes-write=52 payload-bytes-read=2274438/5242880 (43.38%)
+2019-01-31 11:30:44 1548934244.052396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2277903 total-bytes-write=52 payload-bytes-read=2277874/5242880 (43.45%)
+2019-01-31 11:30:44 1548934244.102912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2281389 total-bytes-write=52 payload-bytes-read=2281360/5242880 (43.51%)
+2019-01-31 11:30:44 1548934244.142950 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2282883 total-bytes-write=52 payload-bytes-read=2282854/5242880 (43.54%)
+2019-01-31 11:30:44 1548934244.143668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2283381 total-bytes-write=52 payload-bytes-read=2283352/5242880 (43.55%)
+2019-01-31 11:30:44 1548934244.219609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:30:44 1548934244.255839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2290353 total-bytes-write=52 payload-bytes-read=2290324/5242880 (43.68%)
+2019-01-31 11:30:44 1548934244.296409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2312663 total-bytes-write=52 payload-bytes-read=2312634/5242880 (44.11%)
+2019-01-31 11:30:44 1548934244.340431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2333031 total-bytes-write=52 payload-bytes-read=2333002/5242880 (44.50%)
+2019-01-31 11:30:44 1548934244.398542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2336517 total-bytes-write=52 payload-bytes-read=2336488/5242880 (44.56%)
+2019-01-31 11:30:44 1548934244.399309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2340501 total-bytes-write=52 payload-bytes-read=2340472/5242880 (44.64%)
+2019-01-31 11:30:44 1548934244.399859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2343937 total-bytes-write=52 payload-bytes-read=2343908/5242880 (44.71%)
+2019-01-31 11:30:44 1548934244.409657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2347423 total-bytes-write=52 payload-bytes-read=2347394/5242880 (44.77%)
+2019-01-31 11:30:44 1548934244.420791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2350411 total-bytes-write=52 payload-bytes-read=2350382/5242880 (44.83%)
+2019-01-31 11:30:44 1548934244.433802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2353897 total-bytes-write=52 payload-bytes-read=2353868/5242880 (44.90%)
+2019-01-31 11:30:44 1548934244.515352 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2354395 total-bytes-write=52 payload-bytes-read=2354366/5242880 (44.91%)
+2019-01-31 11:30:44 1548934244.551216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2358877 total-bytes-write=52 payload-bytes-read=2358848/5242880 (44.99%)
+2019-01-31 11:30:44 1548934244.551330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2363309 total-bytes-write=52 payload-bytes-read=2363280/5242880 (45.08%)
+2019-01-31 11:30:44 1548934244.551446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2367791 total-bytes-write=52 payload-bytes-read=2367762/5242880 (45.16%)
+2019-01-31 11:30:44 1548934244.551758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2371277 total-bytes-write=52 payload-bytes-read=2371248/5242880 (45.23%)
+2019-01-31 11:30:44 1548934244.553420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2375709 total-bytes-write=52 payload-bytes-read=2375680/5242880 (45.31%)
+2019-01-31 11:30:44 1548934244.553582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2378697 total-bytes-write=52 payload-bytes-read=2378668/5242880 (45.37%)
+2019-01-31 11:30:44 1548934244.567534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2385669 total-bytes-write=52 payload-bytes-read=2385640/5242880 (45.50%)
+2019-01-31 11:30:44 1548934244.571496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2389155 total-bytes-write=52 payload-bytes-read=2389126/5242880 (45.57%)
+2019-01-31 11:30:44 1548934244.571919 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2393089 total-bytes-write=52 payload-bytes-read=2393060/5242880 (45.64%)
+2019-01-31 11:30:44 1548934244.573500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2397073 total-bytes-write=52 payload-bytes-read=2397044/5242880 (45.72%)
+2019-01-31 11:30:44 1548934244.573974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2401057 total-bytes-write=52 payload-bytes-read=2401028/5242880 (45.80%)
+2019-01-31 11:30:44 1548934244.616456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2441245 total-bytes-write=52 payload-bytes-read=2441216/5242880 (46.56%)
+2019-01-31 11:30:44 1548934244.664427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2471573 total-bytes-write=52 payload-bytes-read=2471544/5242880 (47.14%)
+2019-01-31 11:30:44 1548934244.669717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2475507 total-bytes-write=52 payload-bytes-read=2475478/5242880 (47.22%)
+2019-01-31 11:30:44 1548934244.714859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2478993 total-bytes-write=52 payload-bytes-read=2478964/5242880 (47.28%)
+2019-01-31 11:30:44 1548934244.753419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2479491 total-bytes-write=52 payload-bytes-read=2479462/5242880 (47.29%)
+2019-01-31 11:30:44 1548934244.754299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2482977 total-bytes-write=52 payload-bytes-read=2482948/5242880 (47.36%)
+2019-01-31 11:30:44 1548934244.755056 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:30:44 1548934244.764761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2488953 total-bytes-write=52 payload-bytes-read=2488924/5242880 (47.47%)
+2019-01-31 11:30:44 1548934244.765464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2490895 total-bytes-write=52 payload-bytes-read=2490866/5242880 (47.51%)
+2019-01-31 11:30:44 1548934244.774442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2494381 total-bytes-write=52 payload-bytes-read=2494352/5242880 (47.58%)
+2019-01-31 11:30:44 1548934244.775811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2498365 total-bytes-write=52 payload-bytes-read=2498336/5242880 (47.65%)
+2019-01-31 11:30:44 1548934244.777723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2502349 total-bytes-write=52 payload-bytes-read=2502320/5242880 (47.73%)
+2019-01-31 11:30:44 1548934244.864389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2503843 total-bytes-write=52 payload-bytes-read=2503814/5242880 (47.76%)
+2019-01-31 11:30:44 1548934244.871731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2506781 total-bytes-write=52 payload-bytes-read=2506752/5242880 (47.81%)
+2019-01-31 11:30:44 1548934244.893552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2510267 total-bytes-write=52 payload-bytes-read=2510238/5242880 (47.88%)
+2019-01-31 11:30:44 1548934244.894200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2514251 total-bytes-write=52 payload-bytes-read=2514222/5242880 (47.95%)
+2019-01-31 11:30:44 1548934244.936377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2525655 total-bytes-write=52 payload-bytes-read=2525626/5242880 (48.17%)
+2019-01-31 11:30:44 1548934244.982629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:30:44 1548934244.983666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2533125 total-bytes-write=52 payload-bytes-read=2533096/5242880 (48.31%)
+2019-01-31 11:30:44 1548934244.984215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2540545 total-bytes-write=52 payload-bytes-read=2540516/5242880 (48.46%)
+2019-01-31 11:30:45 1548934245.042260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2544031 total-bytes-write=52 payload-bytes-read=2544002/5242880 (48.52%)
+2019-01-31 11:30:45 1548934245.042669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2548015 total-bytes-write=52 payload-bytes-read=2547986/5242880 (48.60%)
+2019-01-31 11:30:45 1548934245.043533 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2551999 total-bytes-write=52 payload-bytes-read=2551970/5242880 (48.67%)
+2019-01-31 11:30:45 1548934245.084412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2572317 total-bytes-write=52 payload-bytes-read=2572288/5242880 (49.06%)
+2019-01-31 11:30:45 1548934245.128405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2577795 total-bytes-write=52 payload-bytes-read=2577766/5242880 (49.17%)
+2019-01-31 11:30:45 1548934245.193085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2579289 total-bytes-write=52 payload-bytes-read=2579260/5242880 (49.20%)
+2019-01-31 11:30:45 1548934245.225168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2582775 total-bytes-write=52 payload-bytes-read=2582746/5242880 (49.26%)
+2019-01-31 11:30:45 1548934245.226131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2584767 total-bytes-write=52 payload-bytes-read=2584738/5242880 (49.30%)
+2019-01-31 11:30:45 1548934245.236689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2588253 total-bytes-write=52 payload-bytes-read=2588224/5242880 (49.37%)
+2019-01-31 11:30:45 1548934245.246835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2588701 total-bytes-write=52 payload-bytes-read=2588672/5242880 (49.38%)
+2019-01-31 11:30:45 1548934245.247912 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2592187 total-bytes-write=52 payload-bytes-read=2592158/5242880 (49.44%)
+2019-01-31 11:30:45 1548934245.258312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2595673 total-bytes-write=52 payload-bytes-read=2595644/5242880 (49.51%)
+2019-01-31 11:30:45 1548934245.300428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2615543 total-bytes-write=52 payload-bytes-read=2615514/5242880 (49.89%)
+2019-01-31 11:30:45 1548934245.344514 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2679087 total-bytes-write=52 payload-bytes-read=2679058/5242880 (51.10%)
+2019-01-31 11:30:45 1548934245.444628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2682573 total-bytes-write=52 payload-bytes-read=2682544/5242880 (51.17%)
+2019-01-31 11:30:45 1548934245.458039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2687503 total-bytes-write=52 payload-bytes-read=2687474/5242880 (51.26%)
+2019-01-31 11:30:45 1548934245.458136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2691487 total-bytes-write=52 payload-bytes-read=2691458/5242880 (51.34%)
+2019-01-31 11:30:45 1548934245.478993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2692483 total-bytes-write=52 payload-bytes-read=2692454/5242880 (51.35%)
+2019-01-31 11:30:45 1548934245.481852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2693977 total-bytes-write=52 payload-bytes-read=2693948/5242880 (51.38%)
+2019-01-31 11:30:45 1548934245.533269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2697463 total-bytes-write=52 payload-bytes-read=2697434/5242880 (51.45%)
+2019-01-31 11:30:45 1548934245.535743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:30:45 1548934245.535827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2709365 total-bytes-write=52 payload-bytes-read=2709336/5242880 (51.68%)
+2019-01-31 11:30:45 1548934245.550361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2716835 total-bytes-write=52 payload-bytes-read=2716806/5242880 (51.82%)
+2019-01-31 11:30:45 1548934245.552259 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2720271 total-bytes-write=52 payload-bytes-read=2720242/5242880 (51.88%)
+2019-01-31 11:30:45 1548934245.560633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2723757 total-bytes-write=52 payload-bytes-read=2723728/5242880 (51.95%)
+2019-01-31 11:30:45 1548934245.618652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2724753 total-bytes-write=52 payload-bytes-read=2724724/5242880 (51.97%)
+2019-01-31 11:30:45 1548934245.619039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2727741 total-bytes-write=52 payload-bytes-read=2727712/5242880 (52.03%)
+2019-01-31 11:30:45 1548934245.628205 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2731227 total-bytes-write=52 payload-bytes-read=2731198/5242880 (52.09%)
+2019-01-31 11:30:45 1548934245.630794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2734713 total-bytes-write=52 payload-bytes-read=2734684/5242880 (52.16%)
+2019-01-31 11:30:45 1548934245.672371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2739145 total-bytes-write=52 payload-bytes-read=2739116/5242880 (52.24%)
+2019-01-31 11:30:45 1548934245.716452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2769921 total-bytes-write=52 payload-bytes-read=2769892/5242880 (52.83%)
+2019-01-31 11:30:45 1548934245.760390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2773905 total-bytes-write=52 payload-bytes-read=2773876/5242880 (52.91%)
+2019-01-31 11:30:45 1548934245.783303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2775399 total-bytes-write=52 payload-bytes-read=2775370/5242880 (52.94%)
+2019-01-31 11:30:45 1548934245.783502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2782869 total-bytes-write=52 payload-bytes-read=2782840/5242880 (53.08%)
+2019-01-31 11:30:45 1548934245.823073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2783367 total-bytes-write=52 payload-bytes-read=2783338/5242880 (53.09%)
+2019-01-31 11:30:45 1548934245.824040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2786803 total-bytes-write=52 payload-bytes-read=2786774/5242880 (53.15%)
+2019-01-31 11:30:45 1548934245.824825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2794771 total-bytes-write=52 payload-bytes-read=2794742/5242880 (53.31%)
+2019-01-31 11:30:45 1548934245.825390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2798755 total-bytes-write=52 payload-bytes-read=2798726/5242880 (53.38%)
+2019-01-31 11:30:45 1548934245.828769 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2799253 total-bytes-write=52 payload-bytes-read=2799224/5242880 (53.39%)
+2019-01-31 11:30:45 1548934245.832152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2805677 total-bytes-write=52 payload-bytes-read=2805648/5242880 (53.51%)
+2019-01-31 11:30:45 1548934245.835905 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2809163 total-bytes-write=52 payload-bytes-read=2809134/5242880 (53.58%)
+2019-01-31 11:30:45 1548934245.838293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2817131 total-bytes-write=52 payload-bytes-read=2817102/5242880 (53.73%)
+2019-01-31 11:30:45 1548934245.838375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2820069 total-bytes-write=52 payload-bytes-read=2820040/5242880 (53.79%)
+2019-01-31 11:30:45 1548934245.863266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2823555 total-bytes-write=52 payload-bytes-read=2823526/5242880 (53.85%)
+2019-01-31 11:30:45 1548934245.897295 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2828037 total-bytes-write=52 payload-bytes-read=2828008/5242880 (53.94%)
+2019-01-31 11:30:45 1548934245.897403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2834013 total-bytes-write=52 payload-bytes-read=2833984/5242880 (54.05%)
+2019-01-31 11:30:45 1548934245.946039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2841433 total-bytes-write=52 payload-bytes-read=2841404/5242880 (54.20%)
+2019-01-31 11:30:45 1548934245.946144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2846413 total-bytes-write=52 payload-bytes-read=2846384/5242880 (54.29%)
+2019-01-31 11:30:45 1548934245.946317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2851343 total-bytes-write=52 payload-bytes-read=2851314/5242880 (54.38%)
+2019-01-31 11:30:45 1548934245.970065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2854829 total-bytes-write=52 payload-bytes-read=2854800/5242880 (54.45%)
+2019-01-31 11:30:45 1548934245.970405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2858813 total-bytes-write=52 payload-bytes-read=2858784/5242880 (54.53%)
+2019-01-31 11:30:46 1548934246.022544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2860307 total-bytes-write=52 payload-bytes-read=2860278/5242880 (54.56%)
+2019-01-31 11:30:46 1548934246.023430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2863793 total-bytes-write=52 payload-bytes-read=2863764/5242880 (54.62%)
+2019-01-31 11:30:46 1548934246.044969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2865287 total-bytes-write=52 payload-bytes-read=2865258/5242880 (54.65%)
+2019-01-31 11:30:46 1548934246.047691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2872707 total-bytes-write=52 payload-bytes-read=2872678/5242880 (54.79%)
+2019-01-31 11:30:46 1548934246.049165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2880675 total-bytes-write=52 payload-bytes-read=2880646/5242880 (54.94%)
+2019-01-31 11:30:46 1548934246.049303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2884609 total-bytes-write=52 payload-bytes-read=2884580/5242880 (55.02%)
+2019-01-31 11:30:46 1548934246.050209 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2892577 total-bytes-write=52 payload-bytes-read=2892548/5242880 (55.17%)
+2019-01-31 11:30:46 1548934246.050309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2896561 total-bytes-write=52 payload-bytes-read=2896532/5242880 (55.25%)
+2019-01-31 11:30:46 1548934246.073506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2897557 total-bytes-write=52 payload-bytes-read=2897528/5242880 (55.27%)
+2019-01-31 11:30:46 1548934246.074929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2900993 total-bytes-write=52 payload-bytes-read=2900964/5242880 (55.33%)
+2019-01-31 11:30:46 1548934246.077461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2901491 total-bytes-write=52 payload-bytes-read=2901462/5242880 (55.34%)
+2019-01-31 11:30:46 1548934246.077776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2903981 total-bytes-write=52 payload-bytes-read=2903952/5242880 (55.39%)
+2019-01-31 11:30:46 1548934246.333504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2907467 total-bytes-write=52 payload-bytes-read=2907438/5242880 (55.45%)
+2019-01-31 11:30:46 1548934246.344034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2910953 total-bytes-write=52 payload-bytes-read=2910924/5242880 (55.52%)
+2019-01-31 11:30:46 1548934246.365157 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2911949 total-bytes-write=52 payload-bytes-read=2911920/5242880 (55.54%)
+2019-01-31 11:30:46 1548934246.372913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2919369 total-bytes-write=52 payload-bytes-read=2919340/5242880 (55.68%)
+2019-01-31 11:30:46 1548934246.373020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2923353 total-bytes-write=52 payload-bytes-read=2923324/5242880 (55.76%)
+2019-01-31 11:30:46 1548934246.376125 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2924349 total-bytes-write=52 payload-bytes-read=2924320/5242880 (55.78%)
+2019-01-31 11:30:46 1548934246.376609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2927835 total-bytes-write=52 payload-bytes-read=2927806/5242880 (55.84%)
+2019-01-31 11:30:46 1548934246.397812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2931321 total-bytes-write=52 payload-bytes-read=2931292/5242880 (55.91%)
+2019-01-31 11:30:46 1548934246.408606 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2934757 total-bytes-write=52 payload-bytes-read=2934728/5242880 (55.98%)
+2019-01-31 11:30:46 1548934246.409111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2938741 total-bytes-write=52 payload-bytes-read=2938712/5242880 (56.05%)
+2019-01-31 11:30:46 1548934246.419120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2942725 total-bytes-write=52 payload-bytes-read=2942696/5242880 (56.13%)
+2019-01-31 11:30:46 1548934246.420414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2950643 total-bytes-write=52 payload-bytes-read=2950614/5242880 (56.28%)
+2019-01-31 11:30:46 1548934246.482093 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2952137 total-bytes-write=52 payload-bytes-read=2952108/5242880 (56.31%)
+2019-01-31 11:30:46 1548934246.483108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2953631 total-bytes-write=52 payload-bytes-read=2953602/5242880 (56.34%)
+2019-01-31 11:30:46 1548934246.493927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=2957117 total-bytes-write=52 payload-bytes-read=2957088/5242880 (56.40%)
+2019-01-31 11:30:46 1548934246.536498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3014685 total-bytes-write=52 payload-bytes-read=3014656/5242880 (57.50%)
+2019-01-31 11:30:46 1548934246.580419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3040033 total-bytes-write=52 payload-bytes-read=3040004/5242880 (57.98%)
+2019-01-31 11:30:46 1548934246.603012 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3040531 total-bytes-write=52 payload-bytes-read=3040502/5242880 (57.99%)
+2019-01-31 11:30:46 1548934246.603432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3044017 total-bytes-write=52 payload-bytes-read=3043988/5242880 (58.06%)
+2019-01-31 11:30:46 1548934246.658811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3047453 total-bytes-write=52 payload-bytes-read=3047424/5242880 (58.13%)
+2019-01-31 11:30:46 1548934246.681053 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3048947 total-bytes-write=52 payload-bytes-read=3048918/5242880 (58.15%)
+2019-01-31 11:30:46 1548934246.681750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3052433 total-bytes-write=52 payload-bytes-read=3052404/5242880 (58.22%)
+2019-01-31 11:30:46 1548934246.693571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3052931 total-bytes-write=52 payload-bytes-read=3052902/5242880 (58.23%)
+2019-01-31 11:30:46 1548934246.693877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:30:46 1548934246.705072 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3059903 total-bytes-write=52 payload-bytes-read=3059874/5242880 (58.36%)
+2019-01-31 11:30:46 1548934246.748398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3071805 total-bytes-write=52 payload-bytes-read=3071776/5242880 (58.59%)
+2019-01-31 11:30:46 1548934246.792436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3098099 total-bytes-write=52 payload-bytes-read=3098070/5242880 (59.09%)
+2019-01-31 11:30:46 1548934246.836401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3109055 total-bytes-write=52 payload-bytes-read=3109026/5242880 (59.30%)
+2019-01-31 11:30:46 1548934246.840373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3116973 total-bytes-write=52 payload-bytes-read=3116944/5242880 (59.45%)
+2019-01-31 11:30:46 1548934246.840464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3120957 total-bytes-write=52 payload-bytes-read=3120928/5242880 (59.53%)
+2019-01-31 11:30:46 1548934246.840704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3128925 total-bytes-write=52 payload-bytes-read=3128896/5242880 (59.68%)
+2019-01-31 11:30:46 1548934246.840853 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3132859 total-bytes-write=52 payload-bytes-read=3132830/5242880 (59.75%)
+2019-01-31 11:30:46 1548934246.842812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3133357 total-bytes-write=52 payload-bytes-read=3133328/5242880 (59.76%)
+2019-01-31 11:30:46 1548934246.843675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3136843 total-bytes-write=52 payload-bytes-read=3136814/5242880 (59.83%)
+2019-01-31 11:30:46 1548934246.844686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3140827 total-bytes-write=52 payload-bytes-read=3140798/5242880 (59.91%)
+2019-01-31 11:30:46 1548934246.877748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3142321 total-bytes-write=52 payload-bytes-read=3142292/5242880 (59.93%)
+2019-01-31 11:30:46 1548934246.878160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3145757 total-bytes-write=52 payload-bytes-read=3145728/5242880 (60.00%)
+2019-01-31 11:30:46 1548934246.901717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3146255 total-bytes-write=52 payload-bytes-read=3146226/5242880 (60.01%)
+2019-01-31 11:30:46 1548934246.902920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3149741 total-bytes-write=52 payload-bytes-read=3149712/5242880 (60.08%)
+2019-01-31 11:30:46 1548934246.922855 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3150239 total-bytes-write=52 payload-bytes-read=3150210/5242880 (60.09%)
+2019-01-31 11:30:46 1548934246.926384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3157709 total-bytes-write=52 payload-bytes-read=3157680/5242880 (60.23%)
+2019-01-31 11:30:46 1548934246.926587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3165627 total-bytes-write=52 payload-bytes-read=3165598/5242880 (60.38%)
+2019-01-31 11:30:46 1548934246.927676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3168117 total-bytes-write=52 payload-bytes-read=3168088/5242880 (60.43%)
+2019-01-31 11:30:46 1548934246.949798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3171603 total-bytes-write=52 payload-bytes-read=3171574/5242880 (60.49%)
+2019-01-31 11:30:47 1548934247.017784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3174591 total-bytes-write=52 payload-bytes-read=3174562/5242880 (60.55%)
+2019-01-31 11:30:47 1548934247.130951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3177081 total-bytes-write=52 payload-bytes-read=3177052/5242880 (60.60%)
+2019-01-31 11:30:47 1548934247.431190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3178525 total-bytes-write=52 payload-bytes-read=3178496/5242880 (60.62%)
+2019-01-31 11:30:47 1548934247.470211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3182011 total-bytes-write=52 payload-bytes-read=3181982/5242880 (60.69%)
+2019-01-31 11:30:47 1548934247.479329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3185497 total-bytes-write=52 payload-bytes-read=3185468/5242880 (60.76%)
+2019-01-31 11:30:47 1548934247.480112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3189481 total-bytes-write=52 payload-bytes-read=3189452/5242880 (60.83%)
+2019-01-31 11:30:47 1548934247.480953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3192967 total-bytes-write=52 payload-bytes-read=3192938/5242880 (60.90%)
+2019-01-31 11:30:47 1548934247.501365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3196403 total-bytes-write=52 payload-bytes-read=3196374/5242880 (60.97%)
+2019-01-31 11:30:47 1548934247.502137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3200387 total-bytes-write=52 payload-bytes-read=3200358/5242880 (61.04%)
+2019-01-31 11:30:47 1548934247.609283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3204371 total-bytes-write=52 payload-bytes-read=3204342/5242880 (61.12%)
+2019-01-31 11:30:47 1548934247.609431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3208853 total-bytes-write=52 payload-bytes-read=3208824/5242880 (61.20%)
+2019-01-31 11:30:47 1548934247.609638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3216273 total-bytes-write=52 payload-bytes-read=3216244/5242880 (61.34%)
+2019-01-31 11:30:47 1548934247.609800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3221751 total-bytes-write=52 payload-bytes-read=3221722/5242880 (61.45%)
+2019-01-31 11:30:47 1548934247.610006 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3226731 total-bytes-write=52 payload-bytes-read=3226702/5242880 (61.54%)
+2019-01-31 11:30:47 1548934247.610184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3230779 total-bytes-write=52 payload-bytes-read=3230750/5242880 (61.62%)
+2019-01-31 11:30:47 1548934247.652409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3253523 total-bytes-write=52 payload-bytes-read=3253494/5242880 (62.06%)
+2019-01-31 11:30:47 1548934247.696413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3260943 total-bytes-write=52 payload-bytes-read=3260914/5242880 (62.20%)
+2019-01-31 11:30:47 1548934247.697926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3264927 total-bytes-write=52 payload-bytes-read=3264898/5242880 (62.27%)
+2019-01-31 11:30:47 1548934247.700636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3268911 total-bytes-write=52 payload-bytes-read=3268882/5242880 (62.35%)
+2019-01-31 11:30:47 1548934247.744408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3274389 total-bytes-write=52 payload-bytes-read=3274360/5242880 (62.45%)
+2019-01-31 11:30:47 1548934247.788418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3298691 total-bytes-write=52 payload-bytes-read=3298662/5242880 (62.92%)
+2019-01-31 11:30:47 1548934247.836405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3315573 total-bytes-write=52 payload-bytes-read=3315544/5242880 (63.24%)
+2019-01-31 11:30:47 1548934247.869599 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3320055 total-bytes-write=52 payload-bytes-read=3320026/5242880 (63.32%)
+2019-01-31 11:30:47 1548934247.869838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3326479 total-bytes-write=52 payload-bytes-read=3326450/5242880 (63.45%)
+2019-01-31 11:30:47 1548934247.871814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3333949 total-bytes-write=52 payload-bytes-read=3333920/5242880 (63.59%)
+2019-01-31 11:30:47 1548934247.871975 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3338431 total-bytes-write=52 payload-bytes-read=3338402/5242880 (63.67%)
+2019-01-31 11:30:47 1548934247.872140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3344357 total-bytes-write=52 payload-bytes-read=3344328/5242880 (63.79%)
+2019-01-31 11:30:47 1548934247.872266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3348341 total-bytes-write=52 payload-bytes-read=3348312/5242880 (63.86%)
+2019-01-31 11:30:47 1548934247.873476 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3355313 total-bytes-write=52 payload-bytes-read=3355284/5242880 (64.00%)
+2019-01-31 11:30:47 1548934247.873622 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3359247 total-bytes-write=52 payload-bytes-read=3359218/5242880 (64.07%)
+2019-01-31 11:30:47 1548934247.891497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3367215 total-bytes-write=52 payload-bytes-read=3367186/5242880 (64.22%)
+2019-01-31 11:30:47 1548934247.891591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3368211 total-bytes-write=52 payload-bytes-read=3368182/5242880 (64.24%)
+2019-01-31 11:30:47 1548934247.891681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3372693 total-bytes-write=52 payload-bytes-read=3372664/5242880 (64.33%)
+2019-01-31 11:30:47 1548934247.891796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3375631 total-bytes-write=52 payload-bytes-read=3375602/5242880 (64.38%)
+2019-01-31 11:30:47 1548934247.891935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3379117 total-bytes-write=52 payload-bytes-read=3379088/5242880 (64.45%)
+2019-01-31 11:30:47 1548934247.902213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3383101 total-bytes-write=52 payload-bytes-read=3383072/5242880 (64.53%)
+2019-01-31 11:30:47 1548934247.920018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3386587 total-bytes-write=52 payload-bytes-read=3386558/5242880 (64.59%)
+2019-01-31 11:30:47 1548934247.934030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3390073 total-bytes-write=52 payload-bytes-read=3390044/5242880 (64.66%)
+2019-01-31 11:30:47 1548934247.976431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3418857 total-bytes-write=52 payload-bytes-read=3418828/5242880 (65.21%)
+2019-01-31 11:30:48 1548934248.020396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3422841 total-bytes-write=52 payload-bytes-read=3422812/5242880 (65.28%)
+2019-01-31 11:30:48 1548934248.070254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3423837 total-bytes-write=52 payload-bytes-read=3423808/5242880 (65.30%)
+2019-01-31 11:30:48 1548934248.114620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3425281 total-bytes-write=52 payload-bytes-read=3425252/5242880 (65.33%)
+2019-01-31 11:30:48 1548934248.245659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3428767 total-bytes-write=52 payload-bytes-read=3428738/5242880 (65.40%)
+2019-01-31 11:30:48 1548934248.253991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3432253 total-bytes-write=52 payload-bytes-read=3432224/5242880 (65.46%)
+2019-01-31 11:30:48 1548934248.296402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3442163 total-bytes-write=52 payload-bytes-read=3442134/5242880 (65.65%)
+2019-01-31 11:30:48 1548934248.340453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3445649 total-bytes-write=52 payload-bytes-read=3445620/5242880 (65.72%)
+2019-01-31 11:30:48 1548934248.363565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3449135 total-bytes-write=52 payload-bytes-read=3449106/5242880 (65.79%)
+2019-01-31 11:30:48 1548934248.404412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3461037 total-bytes-write=52 payload-bytes-read=3461008/5242880 (66.01%)
+2019-01-31 11:30:48 1548934248.448396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3469005 total-bytes-write=52 payload-bytes-read=3468976/5242880 (66.17%)
+2019-01-31 11:30:48 1548934248.450375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3469503 total-bytes-write=52 payload-bytes-read=3469474/5242880 (66.17%)
+2019-01-31 11:30:48 1548934248.451928 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3476923 total-bytes-write=52 payload-bytes-read=3476894/5242880 (66.32%)
+2019-01-31 11:30:48 1548934248.452030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3480907 total-bytes-write=52 payload-bytes-read=3480878/5242880 (66.39%)
+2019-01-31 11:30:48 1548934248.452914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3484891 total-bytes-write=52 payload-bytes-read=3484862/5242880 (66.47%)
+2019-01-31 11:30:48 1548934248.496406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3497789 total-bytes-write=52 payload-bytes-read=3497760/5242880 (66.71%)
+2019-01-31 11:30:48 1548934248.571065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3498287 total-bytes-write=52 payload-bytes-read=3498258/5242880 (66.72%)
+2019-01-31 11:30:48 1548934248.572168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3501773 total-bytes-write=52 payload-bytes-read=3501744/5242880 (66.79%)
+2019-01-31 11:30:48 1548934248.603552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3502271 total-bytes-write=52 payload-bytes-read=3502242/5242880 (66.80%)
+2019-01-31 11:30:48 1548934248.604041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3505757 total-bytes-write=52 payload-bytes-read=3505728/5242880 (66.87%)
+2019-01-31 11:30:48 1548934248.614659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3509193 total-bytes-write=52 payload-bytes-read=3509164/5242880 (66.93%)
+2019-01-31 11:30:48 1548934248.623110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3509691 total-bytes-write=52 payload-bytes-read=3509662/5242880 (66.94%)
+2019-01-31 11:30:48 1548934248.623706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3513177 total-bytes-write=52 payload-bytes-read=3513148/5242880 (67.01%)
+2019-01-31 11:30:48 1548934248.626364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3517161 total-bytes-write=52 payload-bytes-read=3517132/5242880 (67.08%)
+2019-01-31 11:30:48 1548934248.635676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3524581 total-bytes-write=52 payload-bytes-read=3524552/5242880 (67.23%)
+2019-01-31 11:30:48 1548934248.644163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3526075 total-bytes-write=52 payload-bytes-read=3526046/5242880 (67.25%)
+2019-01-31 11:30:48 1548934248.644991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3529561 total-bytes-write=52 payload-bytes-read=3529532/5242880 (67.32%)
+2019-01-31 11:30:48 1548934248.646148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3533545 total-bytes-write=52 payload-bytes-read=3533516/5242880 (67.40%)
+2019-01-31 11:30:48 1548934248.648562 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3539471 total-bytes-write=52 payload-bytes-read=3539442/5242880 (67.51%)
+2019-01-31 11:30:48 1548934248.672586 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3542957 total-bytes-write=52 payload-bytes-read=3542928/5242880 (67.58%)
+2019-01-31 11:30:48 1548934248.673219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3546941 total-bytes-write=52 payload-bytes-read=3546912/5242880 (67.65%)
+2019-01-31 11:30:48 1548934248.673950 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3550925 total-bytes-write=52 payload-bytes-read=3550896/5242880 (67.73%)
+2019-01-31 11:30:48 1548934248.710435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3627367 total-bytes-write=52 payload-bytes-read=3627338/5242880 (69.19%)
+2019-01-31 11:30:48 1548934248.723370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3630853 total-bytes-write=52 payload-bytes-read=3630824/5242880 (69.25%)
+2019-01-31 11:30:48 1548934248.781149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3631351 total-bytes-write=52 payload-bytes-read=3631322/5242880 (69.26%)
+2019-01-31 11:30:48 1548934248.863986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3631849 total-bytes-write=52 payload-bytes-read=3631820/5242880 (69.27%)
+2019-01-31 11:30:48 1548934248.878257 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3635335 total-bytes-write=52 payload-bytes-read=3635306/5242880 (69.34%)
+2019-01-31 11:30:48 1548934248.881171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3643253 total-bytes-write=52 payload-bytes-read=3643224/5242880 (69.49%)
+2019-01-31 11:30:48 1548934248.881469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3647735 total-bytes-write=52 payload-bytes-read=3647706/5242880 (69.57%)
+2019-01-31 11:30:48 1548934248.883200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3655155 total-bytes-write=52 payload-bytes-read=3655126/5242880 (69.72%)
+2019-01-31 11:30:48 1548934248.883348 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3659139 total-bytes-write=52 payload-bytes-read=3659110/5242880 (69.79%)
+2019-01-31 11:30:48 1548934248.883652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3663123 total-bytes-write=52 payload-bytes-read=3663094/5242880 (69.87%)
+2019-01-31 11:30:48 1548934248.924377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3666609 total-bytes-write=52 payload-bytes-read=3666580/5242880 (69.93%)
+2019-01-31 11:30:48 1548934248.964269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3670045 total-bytes-write=52 payload-bytes-read=3670016/5242880 (70.00%)
+2019-01-31 11:30:48 1548934248.974569 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3671539 total-bytes-write=52 payload-bytes-read=3671510/5242880 (70.03%)
+2019-01-31 11:30:48 1548934248.974981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3673531 total-bytes-write=52 payload-bytes-read=3673502/5242880 (70.07%)
+2019-01-31 11:30:49 1548934249.060524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3677579 total-bytes-write=52 payload-bytes-read=3677550/5242880 (70.14%)
+2019-01-31 11:30:49 1548934249.104423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3688421 total-bytes-write=52 payload-bytes-read=3688392/5242880 (70.35%)
+2019-01-31 11:30:49 1548934249.148399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3692903 total-bytes-write=52 payload-bytes-read=3692874/5242880 (70.44%)
+2019-01-31 11:30:49 1548934249.176491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3693899 total-bytes-write=52 payload-bytes-read=3693870/5242880 (70.45%)
+2019-01-31 11:30:49 1548934249.177024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3697385 total-bytes-write=52 payload-bytes-read=3697356/5242880 (70.52%)
+2019-01-31 11:30:49 1548934249.260359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3698381 total-bytes-write=52 payload-bytes-read=3698352/5242880 (70.54%)
+2019-01-31 11:30:49 1548934249.450512 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3701867 total-bytes-write=52 payload-bytes-read=3701838/5242880 (70.61%)
+2019-01-31 11:30:49 1548934249.482295 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3705303 total-bytes-write=52 payload-bytes-read=3705274/5242880 (70.67%)
+2019-01-31 11:30:49 1548934249.494082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3708789 total-bytes-write=52 payload-bytes-read=3708760/5242880 (70.74%)
+2019-01-31 11:30:49 1548934249.506066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3712275 total-bytes-write=52 payload-bytes-read=3712246/5242880 (70.81%)
+2019-01-31 11:30:49 1548934249.548484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3744545 total-bytes-write=52 payload-bytes-read=3744516/5242880 (71.42%)
+2019-01-31 11:30:49 1548934249.592390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3752961 total-bytes-write=52 payload-bytes-read=3752932/5242880 (71.58%)
+2019-01-31 11:30:49 1548934249.602639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3753957 total-bytes-write=52 payload-bytes-read=3753928/5242880 (71.60%)
+2019-01-31 11:30:49 1548934249.603353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3757443 total-bytes-write=52 payload-bytes-read=3757414/5242880 (71.67%)
+2019-01-31 11:30:49 1548934249.624726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3764913 total-bytes-write=52 payload-bytes-read=3764884/5242880 (71.81%)
+2019-01-31 11:30:49 1548934249.626705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3768847 total-bytes-write=52 payload-bytes-read=3768818/5242880 (71.88%)
+2019-01-31 11:30:49 1548934249.634437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3769843 total-bytes-write=52 payload-bytes-read=3769814/5242880 (71.90%)
+2019-01-31 11:30:49 1548934249.634960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3770839 total-bytes-write=52 payload-bytes-read=3770810/5242880 (71.92%)
+2019-01-31 11:30:49 1548934249.676407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3787721 total-bytes-write=52 payload-bytes-read=3787692/5242880 (72.24%)
+2019-01-31 11:30:49 1548934249.720371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3791207 total-bytes-write=52 payload-bytes-read=3791178/5242880 (72.31%)
+2019-01-31 11:30:49 1548934249.724336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3795191 total-bytes-write=52 payload-bytes-read=3795162/5242880 (72.39%)
+2019-01-31 11:30:49 1548934249.726103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3803109 total-bytes-write=52 payload-bytes-read=3803080/5242880 (72.54%)
+2019-01-31 11:30:49 1548934249.726175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3805101 total-bytes-write=52 payload-bytes-read=3805072/5242880 (72.58%)
+2019-01-31 11:30:49 1548934249.735196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3808587 total-bytes-write=52 payload-bytes-read=3808558/5242880 (72.64%)
+2019-01-31 11:30:49 1548934249.745261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3809583 total-bytes-write=52 payload-bytes-read=3809554/5242880 (72.66%)
+2019-01-31 11:30:49 1548934249.746083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3813069 total-bytes-write=52 payload-bytes-read=3813040/5242880 (72.73%)
+2019-01-31 11:30:49 1548934249.760310 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3816555 total-bytes-write=52 payload-bytes-read=3816526/5242880 (72.79%)
+2019-01-31 11:30:49 1548934249.800497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3863217 total-bytes-write=52 payload-bytes-read=3863188/5242880 (73.68%)
+2019-01-31 11:30:49 1548934249.844429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3874621 total-bytes-write=52 payload-bytes-read=3874592/5242880 (73.90%)
+2019-01-31 11:30:49 1548934249.845306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3878107 total-bytes-write=52 payload-bytes-read=3878078/5242880 (73.97%)
+2019-01-31 11:30:49 1548934249.846478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3886025 total-bytes-write=52 payload-bytes-read=3885996/5242880 (74.12%)
+2019-01-31 11:30:49 1548934249.849191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3890009 total-bytes-write=52 payload-bytes-read=3889980/5242880 (74.20%)
+2019-01-31 11:30:49 1548934249.849785 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3892997 total-bytes-write=52 payload-bytes-read=3892968/5242880 (74.25%)
+2019-01-31 11:30:49 1548934249.879140 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3893993 total-bytes-write=52 payload-bytes-read=3893964/5242880 (74.27%)
+2019-01-31 11:30:49 1548934249.880390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3897479 total-bytes-write=52 payload-bytes-read=3897450/5242880 (74.34%)
+2019-01-31 11:30:49 1548934249.881018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3901413 total-bytes-write=52 payload-bytes-read=3901384/5242880 (74.41%)
+2019-01-31 11:30:49 1548934249.881760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3909381 total-bytes-write=52 payload-bytes-read=3909352/5242880 (74.56%)
+2019-01-31 11:30:49 1548934249.925382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3910377 total-bytes-write=52 payload-bytes-read=3910348/5242880 (74.58%)
+2019-01-31 11:30:49 1548934249.926448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3913863 total-bytes-write=52 payload-bytes-read=3913834/5242880 (74.65%)
+2019-01-31 11:30:50 1548934250.007825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3915357 total-bytes-write=52 payload-bytes-read=3915328/5242880 (74.68%)
+2019-01-31 11:30:50 1548934250.034553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3918793 total-bytes-write=52 payload-bytes-read=3918764/5242880 (74.74%)
+2019-01-31 11:30:50 1548934250.056302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3922279 total-bytes-write=52 payload-bytes-read=3922250/5242880 (74.81%)
+2019-01-31 11:30:50 1548934250.056768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3925267 total-bytes-write=52 payload-bytes-read=3925238/5242880 (74.87%)
+2019-01-31 11:30:50 1548934250.067291 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3928753 total-bytes-write=52 payload-bytes-read=3928724/5242880 (74.93%)
+2019-01-31 11:30:50 1548934250.068288 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3932687 total-bytes-write=52 payload-bytes-read=3932658/5242880 (75.01%)
+2019-01-31 11:30:50 1548934250.090642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3936173 total-bytes-write=52 payload-bytes-read=3936144/5242880 (75.08%)
+2019-01-31 11:30:50 1548934250.101122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3939659 total-bytes-write=52 payload-bytes-read=3939630/5242880 (75.14%)
+2019-01-31 11:30:50 1548934250.144417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3962517 total-bytes-write=52 payload-bytes-read=3962488/5242880 (75.58%)
+2019-01-31 11:30:50 1548934250.188377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3964509 total-bytes-write=52 payload-bytes-read=3964480/5242880 (75.62%)
+2019-01-31 11:30:50 1548934250.261021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3967945 total-bytes-write=52 payload-bytes-read=3967916/5242880 (75.68%)
+2019-01-31 11:30:50 1548934250.335408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3971431 total-bytes-write=52 payload-bytes-read=3971402/5242880 (75.75%)
+2019-01-31 11:30:50 1548934250.342168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3974917 total-bytes-write=52 payload-bytes-read=3974888/5242880 (75.81%)
+2019-01-31 11:30:50 1548934250.384402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3989807 total-bytes-write=52 payload-bytes-read=3989778/5242880 (76.10%)
+2019-01-31 11:30:50 1548934250.460056 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3993293 total-bytes-write=52 payload-bytes-read=3993264/5242880 (76.17%)
+2019-01-31 11:30:50 1548934250.470736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3993791 total-bytes-write=52 payload-bytes-read=3993762/5242880 (76.17%)
+2019-01-31 11:30:50 1548934250.471295 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3996281 total-bytes-write=52 payload-bytes-read=3996252/5242880 (76.22%)
+2019-01-31 11:30:50 1548934250.482475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=3999717 total-bytes-write=52 payload-bytes-read=3999688/5242880 (76.29%)
+2019-01-31 11:30:50 1548934250.483099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4003701 total-bytes-write=52 payload-bytes-read=4003672/5242880 (76.36%)
+2019-01-31 11:30:50 1548934250.493264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4004697 total-bytes-write=52 payload-bytes-read=4004668/5242880 (76.38%)
+2019-01-31 11:30:50 1548934250.494621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4008183 total-bytes-write=52 payload-bytes-read=4008154/5242880 (76.45%)
+2019-01-31 11:30:50 1548934250.503859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4008681 total-bytes-write=52 payload-bytes-read=4008652/5242880 (76.46%)
+2019-01-31 11:30:50 1548934250.504290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4012167 total-bytes-write=52 payload-bytes-read=4012138/5242880 (76.53%)
+2019-01-31 11:30:50 1548934250.505135 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4016101 total-bytes-write=52 payload-bytes-read=4016072/5242880 (76.60%)
+2019-01-31 11:30:50 1548934250.506454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4024069 total-bytes-write=52 payload-bytes-read=4024040/5242880 (76.75%)
+2019-01-31 11:30:50 1548934250.520319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4027555 total-bytes-write=52 payload-bytes-read=4027526/5242880 (76.82%)
+2019-01-31 11:30:50 1548934250.522943 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4035473 total-bytes-write=52 payload-bytes-read=4035444/5242880 (76.97%)
+2019-01-31 11:30:50 1548934250.526793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4036967 total-bytes-write=52 payload-bytes-read=4036938/5242880 (77.00%)
+2019-01-31 11:30:50 1548934250.528122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4040453 total-bytes-write=52 payload-bytes-read=4040424/5242880 (77.06%)
+2019-01-31 11:30:50 1548934250.529490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4048371 total-bytes-write=52 payload-bytes-read=4048342/5242880 (77.22%)
+2019-01-31 11:30:50 1548934250.540819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4048869 total-bytes-write=52 payload-bytes-read=4048840/5242880 (77.23%)
+2019-01-31 11:30:50 1548934250.542309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4056339 total-bytes-write=52 payload-bytes-read=4056310/5242880 (77.37%)
+2019-01-31 11:30:50 1548934250.542776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4060323 total-bytes-write=52 payload-bytes-read=4060294/5242880 (77.44%)
+2019-01-31 11:30:50 1548934250.543329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4064257 total-bytes-write=52 payload-bytes-read=4064228/5242880 (77.52%)
+2019-01-31 11:30:50 1548934250.551486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4067743 total-bytes-write=52 payload-bytes-read=4067714/5242880 (77.59%)
+2019-01-31 11:30:50 1548934250.552672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4075711 total-bytes-write=52 payload-bytes-read=4075682/5242880 (77.74%)
+2019-01-31 11:30:50 1548934250.554395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4080143 total-bytes-write=52 payload-bytes-read=4080114/5242880 (77.82%)
+2019-01-31 11:30:50 1548934250.555139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4087613 total-bytes-write=52 payload-bytes-read=4087584/5242880 (77.96%)
+2019-01-31 11:30:50 1548934250.572662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4088111 total-bytes-write=52 payload-bytes-read=4088082/5242880 (77.97%)
+2019-01-31 11:30:50 1548934250.573756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4091597 total-bytes-write=52 payload-bytes-read=4091568/5242880 (78.04%)
+2019-01-31 11:30:50 1548934250.583545 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4095083 total-bytes-write=52 payload-bytes-read=4095054/5242880 (78.11%)
+2019-01-31 11:30:50 1548934250.624479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4135769 total-bytes-write=52 payload-bytes-read=4135740/5242880 (78.88%)
+2019-01-31 11:30:50 1548934250.668408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4140251 total-bytes-write=52 payload-bytes-read=4140222/5242880 (78.97%)
+2019-01-31 11:30:50 1548934250.673836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4143737 total-bytes-write=52 payload-bytes-read=4143708/5242880 (79.03%)
+2019-01-31 11:30:50 1548934250.675111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4146675 total-bytes-write=52 payload-bytes-read=4146646/5242880 (79.09%)
+2019-01-31 11:30:50 1548934250.683826 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4150161 total-bytes-write=52 payload-bytes-read=4150132/5242880 (79.16%)
+2019-01-31 11:30:50 1548934250.685621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4156635 total-bytes-write=52 payload-bytes-read=4156606/5242880 (79.28%)
+2019-01-31 11:30:50 1548934250.695042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4160121 total-bytes-write=52 payload-bytes-read=4160092/5242880 (79.35%)
+2019-01-31 11:30:50 1548934250.710269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4163557 total-bytes-write=52 payload-bytes-read=4163528/5242880 (79.41%)
+2019-01-31 11:30:50 1548934250.751405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4164055 total-bytes-write=52 payload-bytes-read=4164026/5242880 (79.42%)
+2019-01-31 11:30:50 1548934250.755635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4167541 total-bytes-write=52 payload-bytes-read=4167512/5242880 (79.49%)
+2019-01-31 11:30:50 1548934250.821611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4168537 total-bytes-write=52 payload-bytes-read=4168508/5242880 (79.51%)
+2019-01-31 11:30:50 1548934250.821985 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4176007 total-bytes-write=52 payload-bytes-read=4175978/5242880 (79.65%)
+2019-01-31 11:30:50 1548934250.822101 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4179941 total-bytes-write=52 payload-bytes-read=4179912/5242880 (79.73%)
+2019-01-31 11:30:50 1548934250.830051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4180439 total-bytes-write=52 payload-bytes-read=4180410/5242880 (79.73%)
+2019-01-31 11:30:50 1548934250.832131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4183925 total-bytes-write=52 payload-bytes-read=4183896/5242880 (79.80%)
+2019-01-31 11:30:50 1548934250.833141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4189901 total-bytes-write=52 payload-bytes-read=4189872/5242880 (79.92%)
+2019-01-31 11:30:50 1548934250.865847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4193387 total-bytes-write=52 payload-bytes-read=4193358/5242880 (79.98%)
+2019-01-31 11:30:50 1548934250.868018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4197321 total-bytes-write=52 payload-bytes-read=4197292/5242880 (80.06%)
+2019-01-31 11:30:50 1548934250.878627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4201803 total-bytes-write=52 payload-bytes-read=4201774/5242880 (80.14%)
+2019-01-31 11:30:50 1548934250.879269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4205787 total-bytes-write=52 payload-bytes-read=4205758/5242880 (80.22%)
+2019-01-31 11:30:50 1548934250.889314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4209771 total-bytes-write=52 payload-bytes-read=4209742/5242880 (80.29%)
+2019-01-31 11:30:50 1548934250.932388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4217191 total-bytes-write=52 payload-bytes-read=4217162/5242880 (80.44%)
+2019-01-31 11:30:51 1548934251.107116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4220677 total-bytes-write=52 payload-bytes-read=4220648/5242880 (80.50%)
+2019-01-31 11:30:51 1548934251.107199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4223167 total-bytes-write=52 payload-bytes-read=4223138/5242880 (80.55%)
+2019-01-31 11:30:51 1548934251.118723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4226653 total-bytes-write=52 payload-bytes-read=4226624/5242880 (80.62%)
+2019-01-31 11:30:51 1548934251.139756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE total-bytes-read=4230089 total-bytes-write=52 payload-bytes-read=4230060/5242880 (80.68%)
+2019-01-31 11:30:51 1548934251.144945 [message] [shd-tgen-driver.c:107] [_tgendriver_onHeartbeat] [driver-heartbeat] bytes-read=14716017 bytes-written=332 current-transfers-succeeded=2 current-transfers-failed=0 total-transfers-succeeded=2 total-transfers-failed=0
+2019-01-31 11:30:51 1548934251.144999 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=PAYLOAD,error=NONE moving from state PAYLOAD to state ERROR
+2019-01-31 11:30:51 1548934251.145039 [info] [shd-tgen-transfer.c:371] [_tgentransfer_changeError] transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=ERROR,error=NONE moving from error NONE to error TIMEOUT
+2019-01-31 11:30:51 1548934251.145092 [message] [shd-tgen-transfer.c:1504] [_tgentransfer_log] [transfer-error] transport TCP,14,localhost:127.0.0.1:36418,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,3,phlox,GET,5242880,phlox,3,state=ERROR,error=TIMEOUT total-bytes-read=4230089 total-bytes-write=52 payload-bytes-read=4230060/5242880 (80.68%) usecs-to-socket-create=9 usecs-to-socket-connect=190 usecs-to-proxy-init=268 usecs-to-proxy-choice=544 usecs-to-proxy-request=645 usecs-to-proxy-response=-1 usecs-to-command=574722 usecs-to-response=1205097 usecs-to-first-byte=1245750 usecs-to-last-byte=-1 usecs-to-checksum=-1
+2019-01-31 11:30:51 1548934251.145229 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:30:51 1548934251.145286 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 14
+2019-01-31 11:30:51 1548934251.145355 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:30:51 1548934251.145417 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:30:51 1548934251.145558 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:30:51 1548934251.145619 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:30:51 1548934251.924119 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:30:51 1548934251.924181 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:30:51 1548934251.924251 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36428 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:30:51 1548934251.924300 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:30:51 1548934251.924372 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,4,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:30:52 1548934252.579879 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:30:52 1548934252.579955 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:30:52 1548934252.684458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:30:52 1548934252.727627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=7499 total-bytes-write=52 payload-bytes-read=7470/5242880 (0.14%)
+2019-01-31 11:30:52 1548934252.766982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=11483 total-bytes-write=52 payload-bytes-read=11454/5242880 (0.22%)
+2019-01-31 11:30:52 1548934252.768148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=15965 total-bytes-write=52 payload-bytes-read=15936/5242880 (0.30%)
+2019-01-31 11:30:52 1548934252.810266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=19401 total-bytes-write=52 payload-bytes-read=19372/5242880 (0.37%)
+2019-01-31 11:30:52 1548934252.811215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=20397 total-bytes-write=52 payload-bytes-read=20368/5242880 (0.39%)
+2019-01-31 11:30:52 1548934252.850842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=23883 total-bytes-write=52 payload-bytes-read=23854/5242880 (0.45%)
+2019-01-31 11:30:52 1548934252.851978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=27369 total-bytes-write=52 payload-bytes-read=27340/5242880 (0.52%)
+2019-01-31 11:30:52 1548934252.855428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=31851 total-bytes-write=52 payload-bytes-read=31822/5242880 (0.61%)
+2019-01-31 11:30:52 1548934252.855822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=35785 total-bytes-write=52 payload-bytes-read=35756/5242880 (0.68%)
+2019-01-31 11:30:52 1548934252.898296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=39271 total-bytes-write=52 payload-bytes-read=39242/5242880 (0.75%)
+2019-01-31 11:30:52 1548934252.899360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=43255 total-bytes-write=52 payload-bytes-read=43226/5242880 (0.82%)
+2019-01-31 11:30:52 1548934252.899829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=47239 total-bytes-write=52 payload-bytes-read=47210/5242880 (0.90%)
+2019-01-31 11:30:52 1548934252.933822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=51671 total-bytes-write=52 payload-bytes-read=51642/5242880 (0.98%)
+2019-01-31 11:30:52 1548934252.935263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=55157 total-bytes-write=52 payload-bytes-read=55128/5242880 (1.05%)
+2019-01-31 11:30:52 1548934252.937647 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=59141 total-bytes-write=52 payload-bytes-read=59112/5242880 (1.13%)
+2019-01-31 11:30:52 1548934252.942726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=63189 total-bytes-write=52 payload-bytes-read=63160/5242880 (1.20%)
+2019-01-31 11:30:52 1548934252.984408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=86431 total-bytes-write=52 payload-bytes-read=86402/5242880 (1.65%)
+2019-01-31 11:30:53 1548934253.028479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=130653 total-bytes-write=52 payload-bytes-read=130624/5242880 (2.49%)
+2019-01-31 11:30:53 1548934253.072468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=166359 total-bytes-write=52 payload-bytes-read=166330/5242880 (3.17%)
+2019-01-31 11:30:53 1548934253.073440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=170343 total-bytes-write=52 payload-bytes-read=170314/5242880 (3.25%)
+2019-01-31 11:30:53 1548934253.075567 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=174825 total-bytes-write=52 payload-bytes-read=174796/5242880 (3.33%)
+2019-01-31 11:30:53 1548934253.075737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=182245 total-bytes-write=52 payload-bytes-read=182216/5242880 (3.48%)
+2019-01-31 11:30:53 1548934253.075862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=186229 total-bytes-write=52 payload-bytes-read=186200/5242880 (3.55%)
+2019-01-31 11:30:53 1548934253.102315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=190711 total-bytes-write=52 payload-bytes-read=190682/5242880 (3.64%)
+2019-01-31 11:30:53 1548934253.103722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=194197 total-bytes-write=52 payload-bytes-read=194168/5242880 (3.70%)
+2019-01-31 11:30:53 1548934253.105068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=202115 total-bytes-write=52 payload-bytes-read=202086/5242880 (3.85%)
+2019-01-31 11:30:53 1548934253.106604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=206099 total-bytes-write=52 payload-bytes-read=206070/5242880 (3.93%)
+2019-01-31 11:30:53 1548934253.107240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=210083 total-bytes-write=52 payload-bytes-read=210054/5242880 (4.01%)
+2019-01-31 11:30:53 1548934253.148456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:30:53 1548934253.550304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:30:53 1548934253.634306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=254753 total-bytes-write=52 payload-bytes-read=254724/5242880 (4.86%)
+2019-01-31 11:30:53 1548934253.717142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=258239 total-bytes-write=52 payload-bytes-read=258210/5242880 (4.92%)
+2019-01-31 11:30:53 1548934253.717381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=261725 total-bytes-write=52 payload-bytes-read=261696/5242880 (4.99%)
+2019-01-31 11:30:53 1548934253.718852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=266157 total-bytes-write=52 payload-bytes-read=266128/5242880 (5.08%)
+2019-01-31 11:30:53 1548934253.764408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:30:53 1548934253.802353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=274125 total-bytes-write=52 payload-bytes-read=274096/5242880 (5.23%)
+2019-01-31 11:30:53 1548934253.803659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=279553 total-bytes-write=52 payload-bytes-read=279524/5242880 (5.33%)
+2019-01-31 11:30:53 1548934253.805974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=287023 total-bytes-write=52 payload-bytes-read=286994/5242880 (5.47%)
+2019-01-31 11:30:53 1548934253.806210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=291007 total-bytes-write=52 payload-bytes-read=290978/5242880 (5.55%)
+2019-01-31 11:30:53 1548934253.845847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:30:53 1548934253.846933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=295439 total-bytes-write=52 payload-bytes-read=295410/5242880 (5.63%)
+2019-01-31 11:30:53 1548934253.883666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=299423 total-bytes-write=52 payload-bytes-read=299394/5242880 (5.71%)
+2019-01-31 11:30:53 1548934253.886827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=303905 total-bytes-write=52 payload-bytes-read=303876/5242880 (5.80%)
+2019-01-31 11:30:53 1548934253.889144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=307391 total-bytes-write=52 payload-bytes-read=307362/5242880 (5.86%)
+2019-01-31 11:30:53 1548934253.891722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=311439 total-bytes-write=52 payload-bytes-read=311410/5242880 (5.94%)
+2019-01-31 11:30:53 1548934253.932436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=340159 total-bytes-write=52 payload-bytes-read=340130/5242880 (6.49%)
+2019-01-31 11:30:53 1548934253.976437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=373425 total-bytes-write=52 payload-bytes-read=373396/5242880 (7.12%)
+2019-01-31 11:30:54 1548934254.020493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=421581 total-bytes-write=52 payload-bytes-read=421552/5242880 (8.04%)
+2019-01-31 11:30:54 1548934254.064481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=453851 total-bytes-write=52 payload-bytes-read=453822/5242880 (8.66%)
+2019-01-31 11:30:54 1548934254.067704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=461769 total-bytes-write=52 payload-bytes-read=461740/5242880 (8.81%)
+2019-01-31 11:30:54 1548934254.072518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=469239 total-bytes-write=52 payload-bytes-read=469210/5242880 (8.95%)
+2019-01-31 11:30:54 1548934254.072720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=477157 total-bytes-write=52 payload-bytes-read=477128/5242880 (9.10%)
+2019-01-31 11:30:54 1548934254.072921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=485125 total-bytes-write=52 payload-bytes-read=485096/5242880 (9.25%)
+2019-01-31 11:30:54 1548934254.073131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=493043 total-bytes-write=52 payload-bytes-read=493014/5242880 (9.40%)
+2019-01-31 11:30:54 1548934254.073273 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=496031 total-bytes-write=52 payload-bytes-read=496002/5242880 (9.46%)
+2019-01-31 11:30:54 1548934254.449372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=499517 total-bytes-write=52 payload-bytes-read=499488/5242880 (9.53%)
+2019-01-31 11:30:54 1548934254.470319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=506987 total-bytes-write=52 payload-bytes-read=506958/5242880 (9.67%)
+2019-01-31 11:30:54 1548934254.470416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=510921 total-bytes-write=52 payload-bytes-read=510892/5242880 (9.74%)
+2019-01-31 11:30:54 1548934254.495313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=514407 total-bytes-write=52 payload-bytes-read=514378/5242880 (9.81%)
+2019-01-31 11:30:54 1548934254.525753 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=517893 total-bytes-write=52 payload-bytes-read=517864/5242880 (9.88%)
+2019-01-31 11:30:54 1548934254.559255 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=519387 total-bytes-write=52 payload-bytes-read=519358/5242880 (9.91%)
+2019-01-31 11:30:54 1548934254.560862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=526807 total-bytes-write=52 payload-bytes-read=526778/5242880 (10.05%)
+2019-01-31 11:30:54 1548934254.561098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=534775 total-bytes-write=52 payload-bytes-read=534746/5242880 (10.20%)
+2019-01-31 11:30:54 1548934254.562477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=538759 total-bytes-write=52 payload-bytes-read=538730/5242880 (10.28%)
+2019-01-31 11:30:54 1548934254.562548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=542693 total-bytes-write=52 payload-bytes-read=542664/5242880 (10.35%)
+2019-01-31 11:30:54 1548934254.571675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=543689 total-bytes-write=52 payload-bytes-read=543660/5242880 (10.37%)
+2019-01-31 11:30:54 1548934254.575509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=547175 total-bytes-write=52 payload-bytes-read=547146/5242880 (10.44%)
+2019-01-31 11:30:54 1548934254.577967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=551159 total-bytes-write=52 payload-bytes-read=551130/5242880 (10.51%)
+2019-01-31 11:30:54 1548934254.581154 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=554645 total-bytes-write=52 payload-bytes-read=554616/5242880 (10.58%)
+2019-01-31 11:30:54 1548934254.583598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=558081 total-bytes-write=52 payload-bytes-read=558052/5242880 (10.64%)
+2019-01-31 11:30:54 1548934254.591632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=561567 total-bytes-write=52 payload-bytes-read=561538/5242880 (10.71%)
+2019-01-31 11:30:54 1548934254.594559 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=565551 total-bytes-write=52 payload-bytes-read=565522/5242880 (10.79%)
+2019-01-31 11:30:54 1548934254.601654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=567045 total-bytes-write=52 payload-bytes-read=567016/5242880 (10.81%)
+2019-01-31 11:30:54 1548934254.602180 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=570531 total-bytes-write=52 payload-bytes-read=570502/5242880 (10.88%)
+2019-01-31 11:30:54 1548934254.613489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=573967 total-bytes-write=52 payload-bytes-read=573938/5242880 (10.95%)
+2019-01-31 11:30:54 1548934254.623741 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=577453 total-bytes-write=52 payload-bytes-read=577424/5242880 (11.01%)
+2019-01-31 11:30:54 1548934254.636361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=578449 total-bytes-write=52 payload-bytes-read=578420/5242880 (11.03%)
+2019-01-31 11:30:54 1548934254.639647 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=582497 total-bytes-write=52 payload-bytes-read=582468/5242880 (11.11%)
+2019-01-31 11:30:54 1548934254.680528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=647969 total-bytes-write=52 payload-bytes-read=647940/5242880 (12.36%)
+2019-01-31 11:30:54 1548934254.724456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=690647 total-bytes-write=52 payload-bytes-read=690618/5242880 (13.17%)
+2019-01-31 11:30:54 1548934254.755463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=694133 total-bytes-write=52 payload-bytes-read=694104/5242880 (13.24%)
+2019-01-31 11:30:54 1548934254.766743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=694631 total-bytes-write=52 payload-bytes-read=694602/5242880 (13.25%)
+2019-01-31 11:30:54 1548934254.767838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=698117 total-bytes-write=52 payload-bytes-read=698088/5242880 (13.31%)
+2019-01-31 11:30:54 1548934254.769414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=702101 total-bytes-write=52 payload-bytes-read=702072/5242880 (13.39%)
+2019-01-31 11:30:54 1548934254.772248 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=710019 total-bytes-write=52 payload-bytes-read=709990/5242880 (13.54%)
+2019-01-31 11:30:54 1548934254.772383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=714003 total-bytes-write=52 payload-bytes-read=713974/5242880 (13.62%)
+2019-01-31 11:30:54 1548934254.772566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=717987 total-bytes-write=52 payload-bytes-read=717958/5242880 (13.69%)
+2019-01-31 11:30:54 1548934254.816397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=733375 total-bytes-write=52 payload-bytes-read=733346/5242880 (13.99%)
+2019-01-31 11:30:54 1548934254.860391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=743783 total-bytes-write=52 payload-bytes-read=743754/5242880 (14.19%)
+2019-01-31 11:30:54 1548934254.905658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=744281 total-bytes-write=52 payload-bytes-read=744252/5242880 (14.20%)
+2019-01-31 11:30:55 1548934255.360610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=747767 total-bytes-write=52 payload-bytes-read=747738/5242880 (14.26%)
+2019-01-31 11:30:55 1548934255.448051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=751253 total-bytes-write=52 payload-bytes-read=751224/5242880 (14.33%)
+2019-01-31 11:30:55 1548934255.534238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=758673 total-bytes-write=52 payload-bytes-read=758644/5242880 (14.47%)
+2019-01-31 11:30:55 1548934255.534341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=762657 total-bytes-write=52 payload-bytes-read=762628/5242880 (14.55%)
+2019-01-31 11:30:55 1548934255.574810 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=766143 total-bytes-write=52 payload-bytes-read=766114/5242880 (14.61%)
+2019-01-31 11:30:55 1548934255.621175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=770077 total-bytes-write=52 payload-bytes-read=770048/5242880 (14.69%)
+2019-01-31 11:30:55 1548934255.624460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=774061 total-bytes-write=52 payload-bytes-read=774032/5242880 (14.76%)
+2019-01-31 11:30:55 1548934255.626384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=778045 total-bytes-write=52 payload-bytes-read=778016/5242880 (14.84%)
+2019-01-31 11:30:55 1548934255.627176 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=778543 total-bytes-write=52 payload-bytes-read=778514/5242880 (14.85%)
+2019-01-31 11:30:55 1548934255.628169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=782029 total-bytes-write=52 payload-bytes-read=782000/5242880 (14.92%)
+2019-01-31 11:30:55 1548934255.628801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=783025 total-bytes-write=52 payload-bytes-read=782996/5242880 (14.93%)
+2019-01-31 11:30:55 1548934255.630824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=786461 total-bytes-write=52 payload-bytes-read=786432/5242880 (15.00%)
+2019-01-31 11:30:55 1548934255.663950 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=791939 total-bytes-write=52 payload-bytes-read=791910/5242880 (15.10%)
+2019-01-31 11:30:55 1548934255.702384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=795425 total-bytes-write=52 payload-bytes-read=795396/5242880 (15.17%)
+2019-01-31 11:30:55 1548934255.708236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=799409 total-bytes-write=52 payload-bytes-read=799380/5242880 (15.25%)
+2019-01-31 11:30:55 1548934255.710074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=803457 total-bytes-write=52 payload-bytes-read=803428/5242880 (15.32%)
+2019-01-31 11:30:55 1548934255.752478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=843581 total-bytes-write=52 payload-bytes-read=843552/5242880 (16.09%)
+2019-01-31 11:30:55 1548934255.796418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=862455 total-bytes-write=52 payload-bytes-read=862426/5242880 (16.45%)
+2019-01-31 11:30:55 1548934255.798843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=866439 total-bytes-write=52 payload-bytes-read=866410/5242880 (16.53%)
+2019-01-31 11:30:55 1548934255.799098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=870373 total-bytes-write=52 payload-bytes-read=870344/5242880 (16.60%)
+2019-01-31 11:30:55 1548934255.806379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=877843 total-bytes-write=52 payload-bytes-read=877814/5242880 (16.74%)
+2019-01-31 11:30:55 1548934255.809507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=885761 total-bytes-write=52 payload-bytes-read=885732/5242880 (16.89%)
+2019-01-31 11:30:55 1548934255.809627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=889745 total-bytes-write=52 payload-bytes-read=889716/5242880 (16.97%)
+2019-01-31 11:30:55 1548934255.811672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=894227 total-bytes-write=52 payload-bytes-read=894198/5242880 (17.06%)
+2019-01-31 11:30:55 1548934255.811894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=901647 total-bytes-write=52 payload-bytes-read=901618/5242880 (17.20%)
+2019-01-31 11:30:55 1548934255.813620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=909615 total-bytes-write=52 payload-bytes-read=909586/5242880 (17.35%)
+2019-01-31 11:30:55 1548934255.813751 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=913599 total-bytes-write=52 payload-bytes-read=913570/5242880 (17.42%)
+2019-01-31 11:30:55 1548934255.814196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=917533 total-bytes-write=52 payload-bytes-read=917504/5242880 (17.50%)
+2019-01-31 11:30:55 1548934255.830984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=921517 total-bytes-write=52 payload-bytes-read=921488/5242880 (17.58%)
+2019-01-31 11:30:55 1548934255.831748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=925999 total-bytes-write=52 payload-bytes-read=925970/5242880 (17.66%)
+2019-01-31 11:30:55 1548934255.833339 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=929485 total-bytes-write=52 payload-bytes-read=929456/5242880 (17.73%)
+2019-01-31 11:30:55 1548934255.868436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=933469 total-bytes-write=52 payload-bytes-read=933440/5242880 (17.80%)
+2019-01-31 11:30:55 1548934255.874011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=937403 total-bytes-write=52 payload-bytes-read=937374/5242880 (17.88%)
+2019-01-31 11:30:55 1548934255.876064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=941885 total-bytes-write=52 payload-bytes-read=941856/5242880 (17.96%)
+2019-01-31 11:30:55 1548934255.876250 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=945371 total-bytes-write=52 payload-bytes-read=945342/5242880 (18.03%)
+2019-01-31 11:30:55 1548934255.877045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=949355 total-bytes-write=52 payload-bytes-read=949326/5242880 (18.11%)
+2019-01-31 11:30:55 1548934255.877906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=953289 total-bytes-write=52 payload-bytes-read=953260/5242880 (18.18%)
+2019-01-31 11:30:55 1548934255.881003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=957273 total-bytes-write=52 payload-bytes-read=957244/5242880 (18.26%)
+2019-01-31 11:30:55 1548934255.884331 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=960759 total-bytes-write=52 payload-bytes-read=960730/5242880 (18.32%)
+2019-01-31 11:30:55 1548934255.887019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=968677 total-bytes-write=52 payload-bytes-read=968648/5242880 (18.48%)
+2019-01-31 11:30:55 1548934255.887193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=972661 total-bytes-write=52 payload-bytes-read=972632/5242880 (18.55%)
+2019-01-31 11:30:55 1548934255.889269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=980629 total-bytes-write=52 payload-bytes-read=980600/5242880 (18.70%)
+2019-01-31 11:30:55 1548934255.889428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=984563 total-bytes-write=52 payload-bytes-read=984534/5242880 (18.78%)
+2019-01-31 11:30:55 1548934255.897200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=988547 total-bytes-write=52 payload-bytes-read=988518/5242880 (18.85%)
+2019-01-31 11:30:55 1548934255.951422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=992531 total-bytes-write=52 payload-bytes-read=992502/5242880 (18.93%)
+2019-01-31 11:30:56 1548934256.594941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=996017 total-bytes-write=52 payload-bytes-read=995988/5242880 (19.00%)
+2019-01-31 11:30:56 1548934256.677504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=999453 total-bytes-write=52 payload-bytes-read=999424/5242880 (19.06%)
+2019-01-31 11:30:56 1548934256.761197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1002939 total-bytes-write=52 payload-bytes-read=1002910/5242880 (19.13%)
+2019-01-31 11:30:56 1548934256.763849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1010907 total-bytes-write=52 payload-bytes-read=1010878/5242880 (19.28%)
+2019-01-31 11:30:56 1548934256.855811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1017331 total-bytes-write=52 payload-bytes-read=1017302/5242880 (19.40%)
+2019-01-31 11:30:56 1548934256.855901 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1021813 total-bytes-write=52 payload-bytes-read=1021784/5242880 (19.49%)
+2019-01-31 11:30:56 1548934256.856181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1029283 total-bytes-write=52 payload-bytes-read=1029254/5242880 (19.63%)
+2019-01-31 11:30:56 1548934256.939262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1035707 total-bytes-write=52 payload-bytes-read=1035678/5242880 (19.75%)
+2019-01-31 11:30:56 1548934256.943809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1043177 total-bytes-write=52 payload-bytes-read=1043148/5242880 (19.90%)
+2019-01-31 11:30:56 1548934256.944748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1049103 total-bytes-write=52 payload-bytes-read=1049074/5242880 (20.01%)
+2019-01-31 11:30:56 1548934256.944828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1052589 total-bytes-write=52 payload-bytes-read=1052560/5242880 (20.08%)
+2019-01-31 11:30:57 1548934257.023917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1056573 total-bytes-write=52 payload-bytes-read=1056544/5242880 (20.15%)
+2019-01-31 11:30:57 1548934257.038403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1060621 total-bytes-write=52 payload-bytes-read=1060592/5242880 (20.23%)
+2019-01-31 11:30:57 1548934257.080479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1098753 total-bytes-write=52 payload-bytes-read=1098724/5242880 (20.96%)
+2019-01-31 11:30:57 1548934257.124377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1102239 total-bytes-write=52 payload-bytes-read=1102210/5242880 (21.02%)
+2019-01-31 11:30:57 1548934257.167511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1106223 total-bytes-write=52 payload-bytes-read=1106194/5242880 (21.10%)
+2019-01-31 11:30:57 1548934257.169439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1109709 total-bytes-write=52 payload-bytes-read=1109680/5242880 (21.17%)
+2019-01-31 11:30:57 1548934257.171680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1113693 total-bytes-write=52 payload-bytes-read=1113664/5242880 (21.24%)
+2019-01-31 11:30:57 1548934257.173018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1117627 total-bytes-write=52 payload-bytes-read=1117598/5242880 (21.32%)
+2019-01-31 11:30:57 1548934257.176217 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1122109 total-bytes-write=52 payload-bytes-read=1122080/5242880 (21.40%)
+2019-01-31 11:30:57 1548934257.176514 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1129579 total-bytes-write=52 payload-bytes-read=1129550/5242880 (21.54%)
+2019-01-31 11:30:57 1548934257.178512 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1137497 total-bytes-write=52 payload-bytes-read=1137468/5242880 (21.70%)
+2019-01-31 11:30:57 1548934257.178681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1141481 total-bytes-write=52 payload-bytes-read=1141452/5242880 (21.77%)
+2019-01-31 11:30:57 1548934257.178856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1145465 total-bytes-write=52 payload-bytes-read=1145436/5242880 (21.85%)
+2019-01-31 11:30:57 1548934257.220453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1181171 total-bytes-write=52 payload-bytes-read=1181142/5242880 (22.53%)
+2019-01-31 11:30:57 1548934257.268534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1197057 total-bytes-write=52 payload-bytes-read=1197028/5242880 (22.83%)
+2019-01-31 11:30:57 1548934257.272818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1201539 total-bytes-write=52 payload-bytes-read=1201510/5242880 (22.92%)
+2019-01-31 11:30:57 1548934257.273642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1205025 total-bytes-write=52 payload-bytes-read=1204996/5242880 (22.98%)
+2019-01-31 11:30:57 1548934257.275904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1212943 total-bytes-write=52 payload-bytes-read=1212914/5242880 (23.13%)
+2019-01-31 11:30:57 1548934257.281412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1216927 total-bytes-write=52 payload-bytes-read=1216898/5242880 (23.21%)
+2019-01-31 11:30:57 1548934257.288228 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1224895 total-bytes-write=52 payload-bytes-read=1224866/5242880 (23.36%)
+2019-01-31 11:30:57 1548934257.293027 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1228829 total-bytes-write=52 payload-bytes-read=1228800/5242880 (23.44%)
+2019-01-31 11:30:57 1548934257.294116 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1232813 total-bytes-write=52 payload-bytes-read=1232784/5242880 (23.51%)
+2019-01-31 11:30:57 1548934257.298827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1236299 total-bytes-write=52 payload-bytes-read=1236270/5242880 (23.58%)
+2019-01-31 11:30:57 1548934257.299381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1240781 total-bytes-write=52 payload-bytes-read=1240752/5242880 (23.67%)
+2019-01-31 11:30:57 1548934257.578731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1244267 total-bytes-write=52 payload-bytes-read=1244238/5242880 (23.73%)
+2019-01-31 11:30:57 1548934257.579282 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1248201 total-bytes-write=52 payload-bytes-read=1248172/5242880 (23.81%)
+2019-01-31 11:30:57 1548934257.594202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1251687 total-bytes-write=52 payload-bytes-read=1251658/5242880 (23.87%)
+2019-01-31 11:30:57 1548934257.611949 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1252185 total-bytes-write=52 payload-bytes-read=1252156/5242880 (23.88%)
+2019-01-31 11:30:57 1548934257.612425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1255671 total-bytes-write=52 payload-bytes-read=1255642/5242880 (23.95%)
+2019-01-31 11:30:57 1548934257.639433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1259655 total-bytes-write=52 payload-bytes-read=1259626/5242880 (24.03%)
+2019-01-31 11:30:57 1548934257.645677 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1263589 total-bytes-write=52 payload-bytes-read=1263560/5242880 (24.10%)
+2019-01-31 11:30:57 1548934257.645747 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1265581 total-bytes-write=52 payload-bytes-read=1265552/5242880 (24.14%)
+2019-01-31 11:30:57 1548934257.656462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1272055 total-bytes-write=52 payload-bytes-read=1272026/5242880 (24.26%)
+2019-01-31 11:30:57 1548934257.673032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1279475 total-bytes-write=52 payload-bytes-read=1279446/5242880 (24.40%)
+2019-01-31 11:30:57 1548934257.673151 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1283459 total-bytes-write=52 payload-bytes-read=1283430/5242880 (24.48%)
+2019-01-31 11:30:57 1548934257.687261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1283957 total-bytes-write=52 payload-bytes-read=1283928/5242880 (24.49%)
+2019-01-31 11:30:57 1548934257.688507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1287443 total-bytes-write=52 payload-bytes-read=1287414/5242880 (24.56%)
+2019-01-31 11:30:57 1548934257.754768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1292423 total-bytes-write=52 payload-bytes-read=1292394/5242880 (24.65%)
+2019-01-31 11:30:57 1548934257.754923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1296357 total-bytes-write=52 payload-bytes-read=1296328/5242880 (24.73%)
+2019-01-31 11:30:57 1548934257.755917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1304325 total-bytes-write=52 payload-bytes-read=1304296/5242880 (24.88%)
+2019-01-31 11:30:57 1548934257.756763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1308309 total-bytes-write=52 payload-bytes-read=1308280/5242880 (24.95%)
+2019-01-31 11:30:57 1548934257.758095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1316227 total-bytes-write=52 payload-bytes-read=1316198/5242880 (25.10%)
+2019-01-31 11:30:57 1548934257.758179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1317721 total-bytes-write=52 payload-bytes-read=1317692/5242880 (25.13%)
+2019-01-31 11:30:57 1548934257.764444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1321207 total-bytes-write=52 payload-bytes-read=1321178/5242880 (25.20%)
+2019-01-31 11:30:57 1548934257.765985 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1325191 total-bytes-write=52 payload-bytes-read=1325162/5242880 (25.28%)
+2019-01-31 11:30:57 1548934257.766307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1329125 total-bytes-write=52 payload-bytes-read=1329096/5242880 (25.35%)
+2019-01-31 11:30:57 1548934257.830657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1332611 total-bytes-write=52 payload-bytes-read=1332582/5242880 (25.42%)
+2019-01-31 11:30:57 1548934257.841019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1336097 total-bytes-write=52 payload-bytes-read=1336068/5242880 (25.48%)
+2019-01-31 11:30:57 1548934257.884368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1336595 total-bytes-write=52 payload-bytes-read=1336566/5242880 (25.49%)
+2019-01-31 11:30:57 1548934257.885100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1340081 total-bytes-write=52 payload-bytes-read=1340052/5242880 (25.56%)
+2019-01-31 11:30:57 1548934257.928509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1397649 total-bytes-write=52 payload-bytes-read=1397620/5242880 (26.66%)
+2019-01-31 11:30:57 1548934257.972442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1431911 total-bytes-write=52 payload-bytes-read=1431882/5242880 (27.31%)
+2019-01-31 11:30:58 1548934258.012975 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1433405 total-bytes-write=52 payload-bytes-read=1433376/5242880 (27.34%)
+2019-01-31 11:30:58 1548934258.015904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1436891 total-bytes-write=52 payload-bytes-read=1436862/5242880 (27.41%)
+2019-01-31 11:30:58 1548934258.068893 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1438385 total-bytes-write=52 payload-bytes-read=1438356/5242880 (27.43%)
+2019-01-31 11:30:58 1548934258.082079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1445805 total-bytes-write=52 payload-bytes-read=1445776/5242880 (27.58%)
+2019-01-31 11:30:58 1548934258.082162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1449789 total-bytes-write=52 payload-bytes-read=1449760/5242880 (27.65%)
+2019-01-31 11:30:58 1548934258.089342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1453275 total-bytes-write=52 payload-bytes-read=1453246/5242880 (27.72%)
+2019-01-31 11:30:58 1548934258.090955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1461193 total-bytes-write=52 payload-bytes-read=1461164/5242880 (27.87%)
+2019-01-31 11:30:58 1548934258.092489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1465675 total-bytes-write=52 payload-bytes-read=1465646/5242880 (27.95%)
+2019-01-31 11:30:58 1548934258.092652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1469161 total-bytes-write=52 payload-bytes-read=1469132/5242880 (28.02%)
+2019-01-31 11:30:58 1548934258.095190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1477079 total-bytes-write=52 payload-bytes-read=1477050/5242880 (28.17%)
+2019-01-31 11:30:58 1548934258.095326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1481063 total-bytes-write=52 payload-bytes-read=1481034/5242880 (28.25%)
+2019-01-31 11:30:58 1548934258.100156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1481561 total-bytes-write=52 payload-bytes-read=1481532/5242880 (28.26%)
+2019-01-31 11:30:58 1548934258.101112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1485047 total-bytes-write=52 payload-bytes-read=1485018/5242880 (28.32%)
+2019-01-31 11:30:58 1548934258.139695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1486541 total-bytes-write=52 payload-bytes-read=1486512/5242880 (28.35%)
+2019-01-31 11:30:58 1548934258.140134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1489031 total-bytes-write=52 payload-bytes-read=1489002/5242880 (28.40%)
+2019-01-31 11:30:58 1548934258.594206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1490973 total-bytes-write=52 payload-bytes-read=1490944/5242880 (28.44%)
+2019-01-31 11:30:58 1548934258.677303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1494459 total-bytes-write=52 payload-bytes-read=1494430/5242880 (28.50%)
+2019-01-31 11:30:58 1548934258.731581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1497447 total-bytes-write=52 payload-bytes-read=1497418/5242880 (28.56%)
+2019-01-31 11:30:58 1548934258.759995 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1500933 total-bytes-write=52 payload-bytes-read=1500904/5242880 (28.63%)
+2019-01-31 11:30:58 1548934258.760895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1504917 total-bytes-write=52 payload-bytes-read=1504888/5242880 (28.70%)
+2019-01-31 11:30:58 1548934258.816365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1508851 total-bytes-write=52 payload-bytes-read=1508822/5242880 (28.78%)
+2019-01-31 11:30:58 1548934258.842870 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1512835 total-bytes-write=52 payload-bytes-read=1512806/5242880 (28.85%)
+2019-01-31 11:30:58 1548934258.843029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1513333 total-bytes-write=52 payload-bytes-read=1513304/5242880 (28.86%)
+2019-01-31 11:30:58 1548934258.844019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1516819 total-bytes-write=52 payload-bytes-read=1516790/5242880 (28.93%)
+2019-01-31 11:30:58 1548934258.844516 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1520305 total-bytes-write=52 payload-bytes-read=1520276/5242880 (29.00%)
+2019-01-31 11:30:58 1548934258.845365 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1524239 total-bytes-write=52 payload-bytes-read=1524210/5242880 (29.07%)
+2019-01-31 11:30:58 1548934258.845712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1527227 total-bytes-write=52 payload-bytes-read=1527198/5242880 (29.13%)
+2019-01-31 11:30:58 1548934258.901330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1534697 total-bytes-write=52 payload-bytes-read=1534668/5242880 (29.27%)
+2019-01-31 11:30:58 1548934258.927123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1541619 total-bytes-write=52 payload-bytes-read=1541590/5242880 (29.40%)
+2019-01-31 11:30:58 1548934258.927814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1545667 total-bytes-write=52 payload-bytes-read=1545638/5242880 (29.48%)
+2019-01-31 11:30:58 1548934258.968428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1562485 total-bytes-write=52 payload-bytes-read=1562456/5242880 (29.80%)
+2019-01-31 11:30:59 1548934259.012448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1594257 total-bytes-write=52 payload-bytes-read=1594228/5242880 (30.41%)
+2019-01-31 11:30:59 1548934259.056474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1634495 total-bytes-write=52 payload-bytes-read=1634466/5242880 (31.17%)
+2019-01-31 11:30:59 1548934259.100446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1653369 total-bytes-write=52 payload-bytes-read=1653340/5242880 (31.53%)
+2019-01-31 11:30:59 1548934259.163998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1660789 total-bytes-write=52 payload-bytes-read=1660760/5242880 (31.68%)
+2019-01-31 11:30:59 1548934259.164092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1664773 total-bytes-write=52 payload-bytes-read=1664744/5242880 (31.75%)
+2019-01-31 11:30:59 1548934259.164280 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1672691 total-bytes-write=52 payload-bytes-read=1672662/5242880 (31.90%)
+2019-01-31 11:30:59 1548934259.164425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1677173 total-bytes-write=52 payload-bytes-read=1677144/5242880 (31.99%)
+2019-01-31 11:30:59 1548934259.164563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1681157 total-bytes-write=52 payload-bytes-read=1681128/5242880 (32.06%)
+2019-01-31 11:30:59 1548934259.164688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1685141 total-bytes-write=52 payload-bytes-read=1685112/5242880 (32.14%)
+2019-01-31 11:30:59 1548934259.208500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1737231 total-bytes-write=52 payload-bytes-read=1737202/5242880 (33.13%)
+2019-01-31 11:30:59 1548934259.736559 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1740717 total-bytes-write=52 payload-bytes-read=1740688/5242880 (33.20%)
+2019-01-31 11:30:59 1548934259.820132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1744203 total-bytes-write=52 payload-bytes-read=1744174/5242880 (33.27%)
+2019-01-31 11:30:59 1548934259.901226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1747689 total-bytes-write=52 payload-bytes-read=1747660/5242880 (33.33%)
+2019-01-31 11:30:59 1548934259.902347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1751673 total-bytes-write=52 payload-bytes-read=1751644/5242880 (33.41%)
+2019-01-31 11:30:59 1548934259.904401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1755607 total-bytes-write=52 payload-bytes-read=1755578/5242880 (33.48%)
+2019-01-31 11:30:59 1548934259.983334 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1758097 total-bytes-write=52 payload-bytes-read=1758068/5242880 (33.53%)
+2019-01-31 11:30:59 1548934259.983895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1760089 total-bytes-write=52 payload-bytes-read=1760060/5242880 (33.57%)
+2019-01-31 11:30:59 1548934259.987087 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1767559 total-bytes-write=52 payload-bytes-read=1767530/5242880 (33.71%)
+2019-01-31 11:30:59 1548934259.987153 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1769053 total-bytes-write=52 payload-bytes-read=1769024/5242880 (33.74%)
+2019-01-31 11:30:59 1548934259.987721 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1772489 total-bytes-write=52 payload-bytes-read=1772460/5242880 (33.81%)
+2019-01-31 11:30:59 1548934259.989851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1776473 total-bytes-write=52 payload-bytes-read=1776444/5242880 (33.88%)
+2019-01-31 11:31:00 1548934260.069752 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1780457 total-bytes-write=52 payload-bytes-read=1780428/5242880 (33.96%)
+2019-01-31 11:31:00 1548934260.071197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1784939 total-bytes-write=52 payload-bytes-read=1784910/5242880 (34.04%)
+2019-01-31 11:31:00 1548934260.072394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1788375 total-bytes-write=52 payload-bytes-read=1788346/5242880 (34.11%)
+2019-01-31 11:31:00 1548934260.073715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1792359 total-bytes-write=52 payload-bytes-read=1792330/5242880 (34.19%)
+2019-01-31 11:31:00 1548934260.075035 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1796407 total-bytes-write=52 payload-bytes-read=1796378/5242880 (34.26%)
+2019-01-31 11:31:00 1548934260.116436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1816213 total-bytes-write=52 payload-bytes-read=1816184/5242880 (34.64%)
+2019-01-31 11:31:00 1548934260.160422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1846989 total-bytes-write=52 payload-bytes-read=1846960/5242880 (35.23%)
+2019-01-31 11:31:00 1548934260.204457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1888173 total-bytes-write=52 payload-bytes-read=1888144/5242880 (36.01%)
+2019-01-31 11:31:00 1548934260.248481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1924427 total-bytes-write=52 payload-bytes-read=1924398/5242880 (36.70%)
+2019-01-31 11:31:00 1548934260.248556 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1928411 total-bytes-write=52 payload-bytes-read=1928382/5242880 (36.78%)
+2019-01-31 11:31:00 1548934260.250921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1932395 total-bytes-write=52 payload-bytes-read=1932366/5242880 (36.86%)
+2019-01-31 11:31:00 1548934260.292415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1955701 total-bytes-write=52 payload-bytes-read=1955672/5242880 (37.30%)
+2019-01-31 11:31:00 1548934260.336452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1985481 total-bytes-write=52 payload-bytes-read=1985452/5242880 (37.87%)
+2019-01-31 11:31:00 1548934260.694049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1988967 total-bytes-write=52 payload-bytes-read=1988938/5242880 (37.94%)
+2019-01-31 11:31:00 1548934260.705173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1992453 total-bytes-write=52 payload-bytes-read=1992424/5242880 (38.00%)
+2019-01-31 11:31:00 1548934260.714942 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1995939 total-bytes-write=52 payload-bytes-read=1995910/5242880 (38.07%)
+2019-01-31 11:31:00 1548934260.715307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=1999873 total-bytes-write=52 payload-bytes-read=1999844/5242880 (38.14%)
+2019-01-31 11:31:00 1548934260.771508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2000869 total-bytes-write=52 payload-bytes-read=2000840/5242880 (38.16%)
+2019-01-31 11:31:00 1548934260.772731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2004355 total-bytes-write=52 payload-bytes-read=2004326/5242880 (38.23%)
+2019-01-31 11:31:00 1548934260.773630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2007841 total-bytes-write=52 payload-bytes-read=2007812/5242880 (38.30%)
+2019-01-31 11:31:00 1548934260.786004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2015261 total-bytes-write=52 payload-bytes-read=2015232/5242880 (38.44%)
+2019-01-31 11:31:00 1548934260.786260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2023229 total-bytes-write=52 payload-bytes-read=2023200/5242880 (38.59%)
+2019-01-31 11:31:00 1548934260.786550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2025221 total-bytes-write=52 payload-bytes-read=2025192/5242880 (38.63%)
+2019-01-31 11:31:00 1548934260.827874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2028707 total-bytes-write=52 payload-bytes-read=2028678/5242880 (38.69%)
+2019-01-31 11:31:00 1548934260.829051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2032641 total-bytes-write=52 payload-bytes-read=2032612/5242880 (38.77%)
+2019-01-31 11:31:00 1548934260.829595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2036625 total-bytes-write=52 payload-bytes-read=2036596/5242880 (38.84%)
+2019-01-31 11:31:00 1548934260.830224 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2040111 total-bytes-write=52 payload-bytes-read=2040082/5242880 (38.91%)
+2019-01-31 11:31:00 1548934260.845208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2043597 total-bytes-write=52 payload-bytes-read=2043568/5242880 (38.98%)
+2019-01-31 11:31:00 1548934260.888483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2097181 total-bytes-write=52 payload-bytes-read=2097152/5242880 (40.00%)
+2019-01-31 11:31:00 1548934260.932405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2113117 total-bytes-write=52 payload-bytes-read=2113088/5242880 (40.30%)
+2019-01-31 11:31:00 1548934260.932680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2117549 total-bytes-write=52 payload-bytes-read=2117520/5242880 (40.39%)
+2019-01-31 11:31:00 1548934260.932773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2119541 total-bytes-write=52 payload-bytes-read=2119512/5242880 (40.43%)
+2019-01-31 11:31:00 1548934260.934631 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2127011 total-bytes-write=52 payload-bytes-read=2126982/5242880 (40.57%)
+2019-01-31 11:31:00 1548934260.934754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2129949 total-bytes-write=52 payload-bytes-read=2129920/5242880 (40.62%)
+2019-01-31 11:31:00 1548934260.984874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2133435 total-bytes-write=52 payload-bytes-read=2133406/5242880 (40.69%)
+2019-01-31 11:31:01 1548934261.058063 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2134431 total-bytes-write=52 payload-bytes-read=2134402/5242880 (40.71%)
+2019-01-31 11:31:01 1548934261.059021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2137917 total-bytes-write=52 payload-bytes-read=2137888/5242880 (40.78%)
+2019-01-31 11:31:01 1548934261.060407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2145885 total-bytes-write=52 payload-bytes-read=2145856/5242880 (40.93%)
+2019-01-31 11:31:01 1548934261.061153 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2150317 total-bytes-write=52 payload-bytes-read=2150288/5242880 (41.01%)
+2019-01-31 11:31:01 1548934261.061283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2153803 total-bytes-write=52 payload-bytes-read=2153774/5242880 (41.08%)
+2019-01-31 11:31:01 1548934261.070125 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2157289 total-bytes-write=52 payload-bytes-read=2157260/5242880 (41.15%)
+2019-01-31 11:31:01 1548934261.112477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2204947 total-bytes-write=52 payload-bytes-read=2204918/5242880 (42.06%)
+2019-01-31 11:31:01 1548934261.156429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2228253 total-bytes-write=52 payload-bytes-read=2228224/5242880 (42.50%)
+2019-01-31 11:31:01 1548934261.171066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2231739 total-bytes-write=52 payload-bytes-read=2231710/5242880 (42.57%)
+2019-01-31 11:31:01 1548934261.400601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2233731 total-bytes-write=52 payload-bytes-read=2233702/5242880 (42.60%)
+2019-01-31 11:31:01 1548934261.639923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2237217 total-bytes-write=52 payload-bytes-read=2237188/5242880 (42.67%)
+2019-01-31 11:31:01 1548934261.641199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2241201 total-bytes-write=52 payload-bytes-read=2241172/5242880 (42.75%)
+2019-01-31 11:31:01 1548934261.651178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2244637 total-bytes-write=52 payload-bytes-read=2244608/5242880 (42.81%)
+2019-01-31 11:31:01 1548934261.652011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2252605 total-bytes-write=52 payload-bytes-read=2252576/5242880 (42.96%)
+2019-01-31 11:31:01 1548934261.652870 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2256589 total-bytes-write=52 payload-bytes-read=2256560/5242880 (43.04%)
+2019-01-31 11:31:01 1548934261.663074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2260075 total-bytes-write=52 payload-bytes-read=2260046/5242880 (43.11%)
+2019-01-31 11:31:01 1548934261.663946 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2264009 total-bytes-write=52 payload-bytes-read=2263980/5242880 (43.18%)
+2019-01-31 11:31:01 1548934261.664534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2267495 total-bytes-write=52 payload-bytes-read=2267466/5242880 (43.25%)
+2019-01-31 11:31:01 1548934261.675597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2270981 total-bytes-write=52 payload-bytes-read=2270952/5242880 (43.31%)
+2019-01-31 11:31:01 1548934261.677873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2278899 total-bytes-write=52 payload-bytes-read=2278870/5242880 (43.47%)
+2019-01-31 11:31:01 1548934261.678096 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2283381 total-bytes-write=52 payload-bytes-read=2283352/5242880 (43.55%)
+2019-01-31 11:31:01 1548934261.678258 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:31:01 1548934261.721016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2290353 total-bytes-write=52 payload-bytes-read=2290324/5242880 (43.68%)
+2019-01-31 11:31:01 1548934261.733091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2293789 total-bytes-write=52 payload-bytes-read=2293760/5242880 (43.75%)
+2019-01-31 11:31:01 1548934261.745137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2294785 total-bytes-write=52 payload-bytes-read=2294756/5242880 (43.77%)
+2019-01-31 11:31:01 1548934261.745954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2298271 total-bytes-write=52 payload-bytes-read=2298242/5242880 (43.84%)
+2019-01-31 11:31:01 1548934261.788538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2362811 total-bytes-write=52 payload-bytes-read=2362782/5242880 (45.07%)
+2019-01-31 11:31:01 1548934261.832440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2380689 total-bytes-write=52 payload-bytes-read=2380660/5242880 (45.41%)
+2019-01-31 11:31:01 1548934261.833043 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2388159 total-bytes-write=52 payload-bytes-read=2388130/5242880 (45.55%)
+2019-01-31 11:31:01 1548934261.838479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2393089 total-bytes-write=52 payload-bytes-read=2393060/5242880 (45.64%)
+2019-01-31 11:31:01 1548934261.840162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2396575 total-bytes-write=52 payload-bytes-read=2396546/5242880 (45.71%)
+2019-01-31 11:31:01 1548934261.842113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2400559 total-bytes-write=52 payload-bytes-read=2400530/5242880 (45.79%)
+2019-01-31 11:31:01 1548934261.842902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2403049 total-bytes-write=52 payload-bytes-read=2403020/5242880 (45.83%)
+2019-01-31 11:31:01 1548934261.851998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2406037 total-bytes-write=52 payload-bytes-read=2406008/5242880 (45.89%)
+2019-01-31 11:31:01 1548934261.938092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2407531 total-bytes-write=52 payload-bytes-read=2407502/5242880 (45.92%)
+2019-01-31 11:31:01 1548934261.949260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2410967 total-bytes-write=52 payload-bytes-read=2410938/5242880 (45.98%)
+2019-01-31 11:31:01 1548934261.959686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2414453 total-bytes-write=52 payload-bytes-read=2414424/5242880 (46.05%)
+2019-01-31 11:31:01 1548934261.960694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2418437 total-bytes-write=52 payload-bytes-read=2418408/5242880 (46.13%)
+2019-01-31 11:31:01 1548934261.961991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2426355 total-bytes-write=52 payload-bytes-read=2426326/5242880 (46.28%)
+2019-01-31 11:31:01 1548934261.962047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2426853 total-bytes-write=52 payload-bytes-read=2426824/5242880 (46.29%)
+2019-01-31 11:31:01 1548934261.962541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2430339 total-bytes-write=52 payload-bytes-read=2430310/5242880 (46.35%)
+2019-01-31 11:31:01 1548934261.963988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2438307 total-bytes-write=52 payload-bytes-read=2438278/5242880 (46.51%)
+2019-01-31 11:31:01 1548934261.964213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2442241 total-bytes-write=52 payload-bytes-read=2442212/5242880 (46.58%)
+2019-01-31 11:31:01 1548934261.971206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2442739 total-bytes-write=52 payload-bytes-read=2442710/5242880 (46.59%)
+2019-01-31 11:31:01 1548934261.971360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2443735 total-bytes-write=52 payload-bytes-read=2443706/5242880 (46.61%)
+2019-01-31 11:31:01 1548934261.982574 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2447221 total-bytes-write=52 payload-bytes-read=2447192/5242880 (46.68%)
+2019-01-31 11:31:01 1548934261.993958 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2447719 total-bytes-write=52 payload-bytes-read=2447690/5242880 (46.69%)
+2019-01-31 11:31:01 1548934261.994608 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2451205 total-bytes-write=52 payload-bytes-read=2451176/5242880 (46.75%)
+2019-01-31 11:31:02 1548934262.062161 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2454691 total-bytes-write=52 payload-bytes-read=2454662/5242880 (46.82%)
+2019-01-31 11:31:02 1548934262.104462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2477997 total-bytes-write=52 payload-bytes-read=2477968/5242880 (47.26%)
+2019-01-31 11:31:02 1548934262.264172 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2481483 total-bytes-write=52 payload-bytes-read=2481454/5242880 (47.33%)
+2019-01-31 11:31:02 1548934262.345376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2481981 total-bytes-write=52 payload-bytes-read=2481952/5242880 (47.34%)
+2019-01-31 11:31:02 1548934262.431498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:31:02 1548934262.444333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2492887 total-bytes-write=52 payload-bytes-read=2492858/5242880 (47.55%)
+2019-01-31 11:31:02 1548934262.444442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2496871 total-bytes-write=52 payload-bytes-read=2496842/5242880 (47.62%)
+2019-01-31 11:31:02 1548934262.446393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2500855 total-bytes-write=52 payload-bytes-read=2500826/5242880 (47.70%)
+2019-01-31 11:31:02 1548934262.488473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2539549 total-bytes-write=52 payload-bytes-read=2539520/5242880 (48.44%)
+2019-01-31 11:31:02 1548934262.532463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2579289 total-bytes-write=52 payload-bytes-read=2579260/5242880 (49.20%)
+2019-01-31 11:31:02 1548934262.576518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2611061 total-bytes-write=52 payload-bytes-read=2611032/5242880 (49.80%)
+2019-01-31 11:31:02 1548934262.577464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2614547 total-bytes-write=52 payload-bytes-read=2614518/5242880 (49.87%)
+2019-01-31 11:31:02 1548934262.578228 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2620025 total-bytes-write=52 payload-bytes-read=2619996/5242880 (49.97%)
+2019-01-31 11:31:02 1548934262.609021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2623461 total-bytes-write=52 payload-bytes-read=2623432/5242880 (50.04%)
+2019-01-31 11:31:02 1548934262.667136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2624457 total-bytes-write=52 payload-bytes-read=2624428/5242880 (50.06%)
+2019-01-31 11:31:02 1548934262.668120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2627943 total-bytes-write=52 payload-bytes-read=2627914/5242880 (50.12%)
+2019-01-31 11:31:02 1548934262.679079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2628939 total-bytes-write=52 payload-bytes-read=2628910/5242880 (50.14%)
+2019-01-31 11:31:02 1548934262.680381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2632425 total-bytes-write=52 payload-bytes-read=2632396/5242880 (50.21%)
+2019-01-31 11:31:02 1548934262.680609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2636409 total-bytes-write=52 payload-bytes-read=2636380/5242880 (50.28%)
+2019-01-31 11:31:02 1548934262.681632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2640343 total-bytes-write=52 payload-bytes-read=2640314/5242880 (50.36%)
+2019-01-31 11:31:02 1548934262.682803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2644825 total-bytes-write=52 payload-bytes-read=2644796/5242880 (50.45%)
+2019-01-31 11:31:02 1548934262.683151 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2651299 total-bytes-write=52 payload-bytes-read=2651270/5242880 (50.57%)
+2019-01-31 11:31:02 1548934262.702854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2652295 total-bytes-write=52 payload-bytes-read=2652266/5242880 (50.59%)
+2019-01-31 11:31:02 1548934262.703129 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2652793 total-bytes-write=52 payload-bytes-read=2652764/5242880 (50.60%)
+2019-01-31 11:31:02 1548934262.715108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2656229 total-bytes-write=52 payload-bytes-read=2656200/5242880 (50.66%)
+2019-01-31 11:31:02 1548934262.715723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2660213 total-bytes-write=52 payload-bytes-read=2660184/5242880 (50.74%)
+2019-01-31 11:31:02 1548934262.716340 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2664197 total-bytes-write=52 payload-bytes-read=2664168/5242880 (50.81%)
+2019-01-31 11:31:02 1548934262.760411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2675601 total-bytes-write=52 payload-bytes-read=2675572/5242880 (51.03%)
+2019-01-31 11:31:02 1548934262.804375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2676099 total-bytes-write=52 payload-bytes-read=2676070/5242880 (51.04%)
+2019-01-31 11:31:02 1548934262.824551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2676597 total-bytes-write=52 payload-bytes-read=2676568/5242880 (51.05%)
+2019-01-31 11:31:02 1548934262.832399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2684067 total-bytes-write=52 payload-bytes-read=2684038/5242880 (51.19%)
+2019-01-31 11:31:02 1548934262.832584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2691985 total-bytes-write=52 payload-bytes-read=2691956/5242880 (51.34%)
+2019-01-31 11:31:02 1548934262.836546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2695471 total-bytes-write=52 payload-bytes-read=2695442/5242880 (51.41%)
+2019-01-31 11:31:02 1548934262.871451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2701945 total-bytes-write=52 payload-bytes-read=2701916/5242880 (51.53%)
+2019-01-31 11:31:02 1548934262.880916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:31:02 1548934262.881672 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2708867 total-bytes-write=52 payload-bytes-read=2708838/5242880 (51.67%)
+2019-01-31 11:31:02 1548934262.892013 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2712353 total-bytes-write=52 payload-bytes-read=2712324/5242880 (51.73%)
+2019-01-31 11:31:02 1548934262.932398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2724255 total-bytes-write=52 payload-bytes-read=2724226/5242880 (51.96%)
+2019-01-31 11:31:03 1548934263.011005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2727741 total-bytes-write=52 payload-bytes-read=2727712/5242880 (52.03%)
+2019-01-31 11:31:03 1548934263.116581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2730231 total-bytes-write=52 payload-bytes-read=2730202/5242880 (52.07%)
+2019-01-31 11:31:03 1548934263.128430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2733717 total-bytes-write=52 payload-bytes-read=2733688/5242880 (52.14%)
+2019-01-31 11:31:03 1548934263.417283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2737153 total-bytes-write=52 payload-bytes-read=2737124/5242880 (52.21%)
+2019-01-31 11:31:03 1548934263.456243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2740639 total-bytes-write=52 payload-bytes-read=2740610/5242880 (52.27%)
+2019-01-31 11:31:03 1548934263.463629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2743129 total-bytes-write=52 payload-bytes-read=2743100/5242880 (52.32%)
+2019-01-31 11:31:03 1548934263.482197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2750599 total-bytes-write=52 payload-bytes-read=2750570/5242880 (52.46%)
+2019-01-31 11:31:03 1548934263.489905 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2754035 total-bytes-write=52 payload-bytes-read=2754006/5242880 (52.53%)
+2019-01-31 11:31:03 1548934263.491074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2758019 total-bytes-write=52 payload-bytes-read=2757990/5242880 (52.60%)
+2019-01-31 11:31:03 1548934263.501551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2759015 total-bytes-write=52 payload-bytes-read=2758986/5242880 (52.62%)
+2019-01-31 11:31:03 1548934263.509050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2766485 total-bytes-write=52 payload-bytes-read=2766456/5242880 (52.77%)
+2019-01-31 11:31:03 1548934263.514114 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2769921 total-bytes-write=52 payload-bytes-read=2769892/5242880 (52.83%)
+2019-01-31 11:31:03 1548934263.514777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2773905 total-bytes-write=52 payload-bytes-read=2773876/5242880 (52.91%)
+2019-01-31 11:31:03 1548934263.529334 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2774901 total-bytes-write=52 payload-bytes-read=2774872/5242880 (52.93%)
+2019-01-31 11:31:03 1548934263.531986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2782371 total-bytes-write=52 payload-bytes-read=2782342/5242880 (53.07%)
+2019-01-31 11:31:03 1548934263.532120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2786305 total-bytes-write=52 payload-bytes-read=2786276/5242880 (53.14%)
+2019-01-31 11:31:03 1548934263.532264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2788795 total-bytes-write=52 payload-bytes-read=2788766/5242880 (53.19%)
+2019-01-31 11:31:03 1548934263.541607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2796265 total-bytes-write=52 payload-bytes-read=2796236/5242880 (53.33%)
+2019-01-31 11:31:03 1548934263.541845 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2804183 total-bytes-write=52 payload-bytes-read=2804154/5242880 (53.48%)
+2019-01-31 11:31:03 1548934263.541948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2807171 total-bytes-write=52 payload-bytes-read=2807142/5242880 (53.54%)
+2019-01-31 11:31:03 1548934263.549996 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2814641 total-bytes-write=52 payload-bytes-read=2814612/5242880 (53.68%)
+2019-01-31 11:31:03 1548934263.550136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2820567 total-bytes-write=52 payload-bytes-read=2820538/5242880 (53.80%)
+2019-01-31 11:31:03 1548934263.558262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2824053 total-bytes-write=52 payload-bytes-read=2824024/5242880 (53.86%)
+2019-01-31 11:31:03 1548934263.566029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2828535 total-bytes-write=52 payload-bytes-read=2828506/5242880 (53.95%)
+2019-01-31 11:31:03 1548934263.658428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2829531 total-bytes-write=52 payload-bytes-read=2829502/5242880 (53.97%)
+2019-01-31 11:31:03 1548934263.669167 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2833017 total-bytes-write=52 payload-bytes-read=2832988/5242880 (54.03%)
+2019-01-31 11:31:03 1548934263.672273 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2836951 total-bytes-write=52 payload-bytes-read=2836922/5242880 (54.11%)
+2019-01-31 11:31:03 1548934263.673065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2845417 total-bytes-write=52 payload-bytes-read=2845388/5242880 (54.27%)
+2019-01-31 11:31:03 1548934263.675636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2848903 total-bytes-write=52 payload-bytes-read=2848874/5242880 (54.34%)
+2019-01-31 11:31:03 1548934263.676898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2856821 total-bytes-write=52 payload-bytes-read=2856792/5242880 (54.49%)
+2019-01-31 11:31:03 1548934263.676978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2859809 total-bytes-write=52 payload-bytes-read=2859780/5242880 (54.55%)
+2019-01-31 11:31:03 1548934263.681532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2863295 total-bytes-write=52 payload-bytes-read=2863266/5242880 (54.61%)
+2019-01-31 11:31:03 1548934263.693198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2867229 total-bytes-write=52 payload-bytes-read=2867200/5242880 (54.69%)
+2019-01-31 11:31:03 1548934263.695401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2875197 total-bytes-write=52 payload-bytes-read=2875168/5242880 (54.84%)
+2019-01-31 11:31:03 1548934263.695526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2879679 total-bytes-write=52 payload-bytes-read=2879650/5242880 (54.92%)
+2019-01-31 11:31:03 1548934263.695807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2883165 total-bytes-write=52 payload-bytes-read=2883136/5242880 (54.99%)
+2019-01-31 11:31:03 1548934263.697272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2891083 total-bytes-write=52 payload-bytes-read=2891054/5242880 (55.14%)
+2019-01-31 11:31:03 1548934263.698529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2893573 total-bytes-write=52 payload-bytes-read=2893544/5242880 (55.19%)
+2019-01-31 11:31:03 1548934263.704051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2897059 total-bytes-write=52 payload-bytes-read=2897030/5242880 (55.26%)
+2019-01-31 11:31:03 1548934263.705290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2900993 total-bytes-write=52 payload-bytes-read=2900964/5242880 (55.33%)
+2019-01-31 11:31:03 1548934263.706012 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2909459 total-bytes-write=52 payload-bytes-read=2909430/5242880 (55.49%)
+2019-01-31 11:31:03 1548934263.752676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2912945 total-bytes-write=52 payload-bytes-read=2912916/5242880 (55.56%)
+2019-01-31 11:31:03 1548934263.753993 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2916381 total-bytes-write=52 payload-bytes-read=2916352/5242880 (55.62%)
+2019-01-31 11:31:03 1548934263.757006 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2920365 total-bytes-write=52 payload-bytes-read=2920336/5242880 (55.70%)
+2019-01-31 11:31:03 1548934263.758244 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2924349 total-bytes-write=52 payload-bytes-read=2924320/5242880 (55.78%)
+2019-01-31 11:31:03 1548934263.800459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2952137 total-bytes-write=52 payload-bytes-read=2952108/5242880 (56.31%)
+2019-01-31 11:31:03 1548934263.844429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2966031 total-bytes-write=52 payload-bytes-read=2966002/5242880 (56.57%)
+2019-01-31 11:31:03 1548934263.856882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2973501 total-bytes-write=52 payload-bytes-read=2973472/5242880 (56.71%)
+2019-01-31 11:31:03 1548934263.920091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2973999 total-bytes-write=52 payload-bytes-read=2973970/5242880 (56.72%)
+2019-01-31 11:31:03 1548934263.920943 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2977485 total-bytes-write=52 payload-bytes-read=2977456/5242880 (56.79%)
+2019-01-31 11:31:04 1548934264.002670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2978481 total-bytes-write=52 payload-bytes-read=2978452/5242880 (56.81%)
+2019-01-31 11:31:04 1548934264.428139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2981917 total-bytes-write=52 payload-bytes-read=2981888/5242880 (56.88%)
+2019-01-31 11:31:04 1548934264.510736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2985403 total-bytes-write=52 payload-bytes-read=2985374/5242880 (56.94%)
+2019-01-31 11:31:04 1548934264.511511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2987395 total-bytes-write=52 payload-bytes-read=2987366/5242880 (56.98%)
+2019-01-31 11:31:04 1548934264.595872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2994865 total-bytes-write=52 payload-bytes-read=2994836/5242880 (57.12%)
+2019-01-31 11:31:04 1548934264.596015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=2998301 total-bytes-write=52 payload-bytes-read=2998272/5242880 (57.19%)
+2019-01-31 11:31:04 1548934264.677679 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3002285 total-bytes-write=52 payload-bytes-read=3002256/5242880 (57.26%)
+2019-01-31 11:31:04 1548934264.678633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3003281 total-bytes-write=52 payload-bytes-read=3003252/5242880 (57.28%)
+2019-01-31 11:31:04 1548934264.679159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3006767 total-bytes-write=52 payload-bytes-read=3006738/5242880 (57.35%)
+2019-01-31 11:31:04 1548934264.680654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3014685 total-bytes-write=52 payload-bytes-read=3014656/5242880 (57.50%)
+2019-01-31 11:31:04 1548934264.681518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3019665 total-bytes-write=52 payload-bytes-read=3019636/5242880 (57.59%)
+2019-01-31 11:31:04 1548934264.717850 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3023649 total-bytes-write=52 payload-bytes-read=3023620/5242880 (57.67%)
+2019-01-31 11:31:04 1548934264.718888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3027135 total-bytes-write=52 payload-bytes-read=3027106/5242880 (57.74%)
+2019-01-31 11:31:04 1548934264.761743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3031069 total-bytes-write=52 payload-bytes-read=3031040/5242880 (57.81%)
+2019-01-31 11:31:04 1548934264.763154 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3035053 total-bytes-write=52 payload-bytes-read=3035024/5242880 (57.89%)
+2019-01-31 11:31:04 1548934264.764112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3039535 total-bytes-write=52 payload-bytes-read=3039506/5242880 (57.97%)
+2019-01-31 11:31:04 1548934264.764216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3043021 total-bytes-write=52 payload-bytes-read=3042992/5242880 (58.04%)
+2019-01-31 11:31:04 1548934264.764752 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3044515 total-bytes-write=52 payload-bytes-read=3044486/5242880 (58.07%)
+2019-01-31 11:31:04 1548934264.766435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3050441 total-bytes-write=52 payload-bytes-read=3050412/5242880 (58.18%)
+2019-01-31 11:31:04 1548934264.766764 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3052931 total-bytes-write=52 payload-bytes-read=3052902/5242880 (58.23%)
+2019-01-31 11:31:04 1548934264.776463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:31:04 1548934264.819504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3059903 total-bytes-write=52 payload-bytes-read=3059874/5242880 (58.36%)
+2019-01-31 11:31:04 1548934264.860501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3118965 total-bytes-write=52 payload-bytes-read=3118936/5242880 (59.49%)
+2019-01-31 11:31:04 1548934264.904453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3130867 total-bytes-write=52 payload-bytes-read=3130838/5242880 (59.72%)
+2019-01-31 11:31:04 1548934264.904682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3134851 total-bytes-write=52 payload-bytes-read=3134822/5242880 (59.79%)
+2019-01-31 11:31:04 1548934264.905407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3139333 total-bytes-write=52 payload-bytes-read=3139304/5242880 (59.88%)
+2019-01-31 11:31:04 1548934264.907082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3142819 total-bytes-write=52 payload-bytes-read=3142790/5242880 (59.94%)
+2019-01-31 11:31:04 1548934264.927654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3146753 total-bytes-write=52 payload-bytes-read=3146724/5242880 (60.02%)
+2019-01-31 11:31:04 1548934264.928861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3150737 total-bytes-write=52 payload-bytes-read=3150708/5242880 (60.09%)
+2019-01-31 11:31:04 1548934264.933812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3155219 total-bytes-write=52 payload-bytes-read=3155190/5242880 (60.18%)
+2019-01-31 11:31:04 1548934264.935709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3158705 total-bytes-write=52 payload-bytes-read=3158676/5242880 (60.25%)
+2019-01-31 11:31:04 1548934264.940934 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3166623 total-bytes-write=52 payload-bytes-read=3166594/5242880 (60.40%)
+2019-01-31 11:31:04 1548934264.941066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3171105 total-bytes-write=52 payload-bytes-read=3171076/5242880 (60.48%)
+2019-01-31 11:31:04 1548934264.941384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3178525 total-bytes-write=52 payload-bytes-read=3178496/5242880 (60.62%)
+2019-01-31 11:31:04 1548934264.946236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3186493 total-bytes-write=52 payload-bytes-read=3186464/5242880 (60.78%)
+2019-01-31 11:31:04 1548934264.946305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3186991 total-bytes-write=52 payload-bytes-read=3186962/5242880 (60.79%)
+2019-01-31 11:31:04 1548934264.946690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3188485 total-bytes-write=52 payload-bytes-read=3188456/5242880 (60.81%)
+2019-01-31 11:31:04 1548934264.947949 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3191971 total-bytes-write=52 payload-bytes-read=3191942/5242880 (60.88%)
+2019-01-31 11:31:04 1548934264.985454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3195905 total-bytes-write=52 payload-bytes-read=3195876/5242880 (60.96%)
+2019-01-31 11:31:04 1548934264.986227 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3199889 total-bytes-write=52 payload-bytes-read=3199860/5242880 (61.03%)
+2019-01-31 11:31:04 1548934264.987435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3204371 total-bytes-write=52 payload-bytes-read=3204342/5242880 (61.12%)
+2019-01-31 11:31:04 1548934264.989091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3207857 total-bytes-write=52 payload-bytes-read=3207828/5242880 (61.18%)
+2019-01-31 11:31:04 1548934264.989926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3212289 total-bytes-write=52 payload-bytes-read=3212260/5242880 (61.27%)
+2019-01-31 11:31:05 1548934265.010254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3215775 total-bytes-write=52 payload-bytes-read=3215746/5242880 (61.34%)
+2019-01-31 11:31:05 1548934265.011889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3219759 total-bytes-write=52 payload-bytes-read=3219730/5242880 (61.41%)
+2019-01-31 11:31:05 1548934265.054955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3224241 total-bytes-write=52 payload-bytes-read=3224212/5242880 (61.50%)
+2019-01-31 11:31:05 1548934265.055763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3226731 total-bytes-write=52 payload-bytes-read=3226702/5242880 (61.54%)
+2019-01-31 11:31:05 1548934265.414699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3230167 total-bytes-write=52 payload-bytes-read=3230138/5242880 (61.61%)
+2019-01-31 11:31:05 1548934265.422962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3238135 total-bytes-write=52 payload-bytes-read=3238106/5242880 (61.76%)
+2019-01-31 11:31:05 1548934265.423092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3242119 total-bytes-write=52 payload-bytes-read=3242090/5242880 (61.84%)
+2019-01-31 11:31:05 1548934265.425442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3242617 total-bytes-write=52 payload-bytes-read=3242588/5242880 (61.85%)
+2019-01-31 11:31:05 1548934265.426750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3246053 total-bytes-write=52 payload-bytes-read=3246024/5242880 (61.91%)
+2019-01-31 11:31:05 1548934265.427182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3250037 total-bytes-write=52 payload-bytes-read=3250008/5242880 (61.99%)
+2019-01-31 11:31:05 1548934265.429097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3254021 total-bytes-write=52 payload-bytes-read=3253992/5242880 (62.06%)
+2019-01-31 11:31:05 1548934265.430695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3258005 total-bytes-write=52 payload-bytes-read=3257976/5242880 (62.14%)
+2019-01-31 11:31:05 1548934265.430846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3258503 total-bytes-write=52 payload-bytes-read=3258474/5242880 (62.15%)
+2019-01-31 11:31:05 1548934265.432329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3261939 total-bytes-write=52 payload-bytes-read=3261910/5242880 (62.22%)
+2019-01-31 11:31:05 1548934265.449236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3262437 total-bytes-write=52 payload-bytes-read=3262408/5242880 (62.23%)
+2019-01-31 11:31:05 1548934265.449649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3265923 total-bytes-write=52 payload-bytes-read=3265894/5242880 (62.29%)
+2019-01-31 11:31:05 1548934265.494663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3269907 total-bytes-write=52 payload-bytes-read=3269878/5242880 (62.37%)
+2019-01-31 11:31:05 1548934265.494866 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3273955 total-bytes-write=52 payload-bytes-read=3273926/5242880 (62.45%)
+2019-01-31 11:31:05 1548934265.494973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3277825 total-bytes-write=52 payload-bytes-read=3277796/5242880 (62.52%)
+2019-01-31 11:31:05 1548934265.495170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3281809 total-bytes-write=52 payload-bytes-read=3281780/5242880 (62.59%)
+2019-01-31 11:31:05 1548934265.502353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3285295 total-bytes-write=52 payload-bytes-read=3285266/5242880 (62.66%)
+2019-01-31 11:31:05 1548934265.502850 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3289279 total-bytes-write=52 payload-bytes-read=3289250/5242880 (62.74%)
+2019-01-31 11:31:05 1548934265.503727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3293213 total-bytes-write=52 payload-bytes-read=3293184/5242880 (62.81%)
+2019-01-31 11:31:05 1548934265.504142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3296699 total-bytes-write=52 payload-bytes-read=3296670/5242880 (62.88%)
+2019-01-31 11:31:05 1548934265.515215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3297695 total-bytes-write=52 payload-bytes-read=3297666/5242880 (62.90%)
+2019-01-31 11:31:05 1548934265.516556 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3301743 total-bytes-write=52 payload-bytes-read=3301714/5242880 (62.98%)
+2019-01-31 11:31:05 1548934265.560433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3318561 total-bytes-write=52 payload-bytes-read=3318532/5242880 (63.30%)
+2019-01-31 11:31:05 1548934265.604449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3344357 total-bytes-write=52 payload-bytes-read=3344328/5242880 (63.79%)
+2019-01-31 11:31:05 1548934265.648499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3400481 total-bytes-write=52 payload-bytes-read=3400452/5242880 (64.86%)
+2019-01-31 11:31:05 1548934265.692448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3419355 total-bytes-write=52 payload-bytes-read=3419326/5242880 (65.22%)
+2019-01-31 11:31:05 1548934265.700819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3422841 total-bytes-write=52 payload-bytes-read=3422812/5242880 (65.28%)
+2019-01-31 11:31:05 1548934265.761938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3426277 total-bytes-write=52 payload-bytes-read=3426248/5242880 (65.35%)
+2019-01-31 11:31:05 1548934265.762797 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3433249 total-bytes-write=52 payload-bytes-read=3433220/5242880 (65.48%)
+2019-01-31 11:31:05 1548934265.783592 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3434245 total-bytes-write=52 payload-bytes-read=3434216/5242880 (65.50%)
+2019-01-31 11:31:05 1548934265.785768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3440221 total-bytes-write=52 payload-bytes-read=3440192/5242880 (65.62%)
+2019-01-31 11:31:05 1548934265.832768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3443657 total-bytes-write=52 payload-bytes-read=3443628/5242880 (65.68%)
+2019-01-31 11:31:05 1548934265.847100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3448139 total-bytes-write=52 payload-bytes-read=3448110/5242880 (65.77%)
+2019-01-31 11:31:05 1548934265.847835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3452123 total-bytes-write=52 payload-bytes-read=3452094/5242880 (65.84%)
+2019-01-31 11:31:05 1548934265.856315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3452621 total-bytes-write=52 payload-bytes-read=3452592/5242880 (65.85%)
+2019-01-31 11:31:05 1548934265.857050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3456107 total-bytes-write=52 payload-bytes-read=3456078/5242880 (65.92%)
+2019-01-31 11:31:05 1548934265.859662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3460041 total-bytes-write=52 payload-bytes-read=3460012/5242880 (65.99%)
+2019-01-31 11:31:05 1548934265.867409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3461037 total-bytes-write=52 payload-bytes-read=3461008/5242880 (66.01%)
+2019-01-31 11:31:05 1548934265.868197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3464523 total-bytes-write=52 payload-bytes-read=3464494/5242880 (66.08%)
+2019-01-31 11:31:05 1548934265.906469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3468507 total-bytes-write=52 payload-bytes-read=3468478/5242880 (66.16%)
+2019-01-31 11:31:05 1548934265.936705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3471495 total-bytes-write=52 payload-bytes-read=3471466/5242880 (66.21%)
+2019-01-31 11:31:06 1548934266.019141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3472491 total-bytes-write=52 payload-bytes-read=3472462/5242880 (66.23%)
+2019-01-31 11:31:06 1548934266.064636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3474931 total-bytes-write=52 payload-bytes-read=3474902/5242880 (66.28%)
+2019-01-31 11:31:06 1548934266.094076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3478417 total-bytes-write=52 payload-bytes-read=3478388/5242880 (66.34%)
+2019-01-31 11:31:06 1548934266.105719 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:31:06 1548934266.152440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3513675 total-bytes-write=52 payload-bytes-read=3513646/5242880 (67.02%)
+2019-01-31 11:31:06 1548934266.200416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3516663 total-bytes-write=52 payload-bytes-read=3516634/5242880 (67.07%)
+2019-01-31 11:31:06 1548934266.234069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3519651 total-bytes-write=52 payload-bytes-read=3519622/5242880 (67.13%)
+2019-01-31 11:31:06 1548934266.276481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3557847 total-bytes-write=52 payload-bytes-read=3557818/5242880 (67.86%)
+2019-01-31 11:31:06 1548934266.320485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3593603 total-bytes-write=52 payload-bytes-read=3593574/5242880 (68.54%)
+2019-01-31 11:31:06 1548934266.324610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3595595 total-bytes-write=52 payload-bytes-read=3595566/5242880 (68.58%)
+2019-01-31 11:31:06 1548934266.327451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3599081 total-bytes-write=52 payload-bytes-read=3599052/5242880 (68.65%)
+2019-01-31 11:31:06 1548934266.327761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3603065 total-bytes-write=52 payload-bytes-read=3603036/5242880 (68.72%)
+2019-01-31 11:31:06 1548934266.336796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3606999 total-bytes-write=52 payload-bytes-read=3606970/5242880 (68.80%)
+2019-01-31 11:31:06 1548934266.341102 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3610983 total-bytes-write=52 payload-bytes-read=3610954/5242880 (68.87%)
+2019-01-31 11:31:06 1548934266.349332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3614469 total-bytes-write=52 payload-bytes-read=3614440/5242880 (68.94%)
+2019-01-31 11:31:06 1548934266.352766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3618453 total-bytes-write=52 payload-bytes-read=3618424/5242880 (69.02%)
+2019-01-31 11:31:06 1548934266.358170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3622387 total-bytes-write=52 payload-bytes-read=3622358/5242880 (69.09%)
+2019-01-31 11:31:06 1548934266.359532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3629359 total-bytes-write=52 payload-bytes-read=3629330/5242880 (69.22%)
+2019-01-31 11:31:06 1548934266.359597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3630355 total-bytes-write=52 payload-bytes-read=3630326/5242880 (69.24%)
+2019-01-31 11:31:06 1548934266.373255 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3637775 total-bytes-write=52 payload-bytes-read=3637746/5242880 (69.38%)
+2019-01-31 11:31:06 1548934266.373339 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3641759 total-bytes-write=52 payload-bytes-read=3641730/5242880 (69.46%)
+2019-01-31 11:31:06 1548934266.390588 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3643253 total-bytes-write=52 payload-bytes-read=3643224/5242880 (69.49%)
+2019-01-31 11:31:06 1548934266.392165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3650723 total-bytes-write=52 payload-bytes-read=3650694/5242880 (69.63%)
+2019-01-31 11:31:06 1548934266.393092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3658641 total-bytes-write=52 payload-bytes-read=3658612/5242880 (69.78%)
+2019-01-31 11:31:06 1548934266.402211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3660135 total-bytes-write=52 payload-bytes-read=3660106/5242880 (69.81%)
+2019-01-31 11:31:06 1548934266.404175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3663123 total-bytes-write=52 payload-bytes-read=3663094/5242880 (69.87%)
+2019-01-31 11:31:06 1548934266.415174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3666609 total-bytes-write=52 payload-bytes-read=3666580/5242880 (69.93%)
+2019-01-31 11:31:06 1548934266.438380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3668601 total-bytes-write=52 payload-bytes-read=3668572/5242880 (69.97%)
+2019-01-31 11:31:06 1548934266.481447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3672037 total-bytes-write=52 payload-bytes-read=3672008/5242880 (70.04%)
+2019-01-31 11:31:06 1548934266.493006 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3675523 total-bytes-write=52 payload-bytes-read=3675494/5242880 (70.10%)
+2019-01-31 11:31:06 1548934266.493847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3679507 total-bytes-write=52 payload-bytes-read=3679478/5242880 (70.18%)
+2019-01-31 11:31:06 1548934266.494345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3683491 total-bytes-write=52 payload-bytes-read=3683462/5242880 (70.26%)
+2019-01-31 11:31:06 1548934266.536409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3694895 total-bytes-write=52 payload-bytes-read=3694866/5242880 (70.47%)
+2019-01-31 11:31:06 1548934266.593658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3695891 total-bytes-write=52 payload-bytes-read=3695862/5242880 (70.49%)
+2019-01-31 11:31:06 1548934266.594743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3703311 total-bytes-write=52 payload-bytes-read=3703282/5242880 (70.63%)
+2019-01-31 11:31:06 1548934266.596156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3711279 total-bytes-write=52 payload-bytes-read=3711250/5242880 (70.79%)
+2019-01-31 11:31:06 1548934266.618391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3711777 total-bytes-write=52 payload-bytes-read=3711748/5242880 (70.80%)
+2019-01-31 11:31:06 1548934266.620090 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3715263 total-bytes-write=52 payload-bytes-read=3715234/5242880 (70.86%)
+2019-01-31 11:31:06 1548934266.630204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3716259 total-bytes-write=52 payload-bytes-read=3716230/5242880 (70.88%)
+2019-01-31 11:31:06 1548934266.630891 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3723181 total-bytes-write=52 payload-bytes-read=3723152/5242880 (71.01%)
+2019-01-31 11:31:06 1548934266.786576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3730651 total-bytes-write=52 payload-bytes-read=3730622/5242880 (71.16%)
+2019-01-31 11:31:06 1548934266.786669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3734137 total-bytes-write=52 payload-bytes-read=3734108/5242880 (71.22%)
+2019-01-31 11:31:06 1548934266.824548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3737573 total-bytes-write=52 payload-bytes-read=3737544/5242880 (71.29%)
+2019-01-31 11:31:06 1548934266.835128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3743549 total-bytes-write=52 payload-bytes-read=3743520/5242880 (71.40%)
+2019-01-31 11:31:06 1548934266.872618 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3751019 total-bytes-write=52 payload-bytes-read=3750990/5242880 (71.54%)
+2019-01-31 11:31:06 1548934266.873876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3758937 total-bytes-write=52 payload-bytes-read=3758908/5242880 (71.70%)
+2019-01-31 11:31:06 1548934266.874421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3759435 total-bytes-write=52 payload-bytes-read=3759406/5242880 (71.70%)
+2019-01-31 11:31:06 1548934266.875542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3762921 total-bytes-write=52 payload-bytes-read=3762892/5242880 (71.77%)
+2019-01-31 11:31:06 1548934266.897724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3767901 total-bytes-write=52 payload-bytes-read=3767872/5242880 (71.87%)
+2019-01-31 11:31:06 1548934266.897833 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3774325 total-bytes-write=52 payload-bytes-read=3774296/5242880 (71.99%)
+2019-01-31 11:31:06 1548934266.914969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3777811 total-bytes-write=52 payload-bytes-read=3777782/5242880 (72.06%)
+2019-01-31 11:31:06 1548934266.916450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3781795 total-bytes-write=52 payload-bytes-read=3781766/5242880 (72.13%)
+2019-01-31 11:31:06 1548934266.916854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3785729 total-bytes-write=52 payload-bytes-read=3785700/5242880 (72.21%)
+2019-01-31 11:31:06 1548934266.917984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3789713 total-bytes-write=52 payload-bytes-read=3789684/5242880 (72.28%)
+2019-01-31 11:31:06 1548934266.931685 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3793199 total-bytes-write=52 payload-bytes-read=3793170/5242880 (72.35%)
+2019-01-31 11:31:06 1548934266.952493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3794195 total-bytes-write=52 payload-bytes-read=3794166/5242880 (72.37%)
+2019-01-31 11:31:06 1548934266.953133 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3797681 total-bytes-write=52 payload-bytes-read=3797652/5242880 (72.43%)
+2019-01-31 11:31:06 1548934266.953455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3801117 total-bytes-write=52 payload-bytes-read=3801088/5242880 (72.50%)
+2019-01-31 11:31:06 1548934266.980355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3804603 total-bytes-write=52 payload-bytes-read=3804574/5242880 (72.57%)
+2019-01-31 11:31:06 1548934266.982872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3808089 total-bytes-write=52 payload-bytes-read=3808060/5242880 (72.63%)
+2019-01-31 11:31:07 1548934267.024399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3816555 total-bytes-write=52 payload-bytes-read=3816526/5242880 (72.79%)
+2019-01-31 11:31:07 1548934267.068528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3881095 total-bytes-write=52 payload-bytes-read=3881066/5242880 (74.03%)
+2019-01-31 11:31:07 1548934267.112421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3890009 total-bytes-write=52 payload-bytes-read=3889980/5242880 (74.20%)
+2019-01-31 11:31:07 1548934267.128469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3891005 total-bytes-write=52 payload-bytes-read=3890976/5242880 (74.21%)
+2019-01-31 11:31:07 1548934267.131791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3894491 total-bytes-write=52 payload-bytes-read=3894462/5242880 (74.28%)
+2019-01-31 11:31:07 1548934267.237802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3897977 total-bytes-write=52 payload-bytes-read=3897948/5242880 (74.35%)
+2019-01-31 11:31:07 1548934267.280435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3910875 total-bytes-write=52 payload-bytes-read=3910846/5242880 (74.59%)
+2019-01-31 11:31:07 1548934267.324421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3916801 total-bytes-write=52 payload-bytes-read=3916772/5242880 (74.71%)
+2019-01-31 11:31:07 1548934267.340337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3920287 total-bytes-write=52 payload-bytes-read=3920258/5242880 (74.77%)
+2019-01-31 11:31:07 1548934267.380883 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3921283 total-bytes-write=52 payload-bytes-read=3921254/5242880 (74.79%)
+2019-01-31 11:31:07 1548934267.380966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3921781 total-bytes-write=52 payload-bytes-read=3921752/5242880 (74.80%)
+2019-01-31 11:31:07 1548934267.381732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3925267 total-bytes-write=52 payload-bytes-read=3925238/5242880 (74.87%)
+2019-01-31 11:31:07 1548934267.393487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3932687 total-bytes-write=52 payload-bytes-read=3932658/5242880 (75.01%)
+2019-01-31 11:31:07 1548934267.396881 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3940655 total-bytes-write=52 payload-bytes-read=3940626/5242880 (75.16%)
+2019-01-31 11:31:07 1548934267.396958 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3941153 total-bytes-write=52 payload-bytes-read=3941124/5242880 (75.17%)
+2019-01-31 11:31:07 1548934267.398063 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3948573 total-bytes-write=52 payload-bytes-read=3948544/5242880 (75.31%)
+2019-01-31 11:31:07 1548934267.398264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3956541 total-bytes-write=52 payload-bytes-read=3956512/5242880 (75.46%)
+2019-01-31 11:31:07 1548934267.403890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3957039 total-bytes-write=52 payload-bytes-read=3957010/5242880 (75.47%)
+2019-01-31 11:31:07 1548934267.404130 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3958533 total-bytes-write=52 payload-bytes-read=3958504/5242880 (75.50%)
+2019-01-31 11:31:07 1548934267.416330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3962019 total-bytes-write=52 payload-bytes-read=3961990/5242880 (75.57%)
+2019-01-31 11:31:07 1548934267.431582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3962517 total-bytes-write=52 payload-bytes-read=3962488/5242880 (75.58%)
+2019-01-31 11:31:07 1548934267.431951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3965953 total-bytes-write=52 payload-bytes-read=3965924/5242880 (75.64%)
+2019-01-31 11:31:07 1548934267.459247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3966949 total-bytes-write=52 payload-bytes-read=3966920/5242880 (75.66%)
+2019-01-31 11:31:07 1548934267.464463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3970435 total-bytes-write=52 payload-bytes-read=3970406/5242880 (75.73%)
+2019-01-31 11:31:07 1548934267.564759 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3971431 total-bytes-write=52 payload-bytes-read=3971402/5242880 (75.75%)
+2019-01-31 11:31:07 1548934267.581865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3974917 total-bytes-write=52 payload-bytes-read=3974888/5242880 (75.81%)
+2019-01-31 11:31:07 1548934267.582655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3978901 total-bytes-write=52 payload-bytes-read=3978872/5242880 (75.89%)
+2019-01-31 11:31:07 1548934267.585651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3986819 total-bytes-write=52 payload-bytes-read=3986790/5242880 (76.04%)
+2019-01-31 11:31:07 1548934267.585762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3990305 total-bytes-write=52 payload-bytes-read=3990276/5242880 (76.11%)
+2019-01-31 11:31:07 1548934267.591532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=3993791 total-bytes-write=52 payload-bytes-read=3993762/5242880 (76.17%)
+2019-01-31 11:31:07 1548934267.632413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4013661 total-bytes-write=52 payload-bytes-read=4013632/5242880 (76.55%)
+2019-01-31 11:31:07 1548934267.676424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4039955 total-bytes-write=52 payload-bytes-read=4039926/5242880 (77.06%)
+2019-01-31 11:31:07 1548934267.720436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4060323 total-bytes-write=52 payload-bytes-read=4060294/5242880 (77.44%)
+2019-01-31 11:31:07 1548934267.720955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4068241 total-bytes-write=52 payload-bytes-read=4068212/5242880 (77.59%)
+2019-01-31 11:31:07 1548934267.721620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4072723 total-bytes-write=52 payload-bytes-read=4072694/5242880 (77.68%)
+2019-01-31 11:31:07 1548934267.724523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4074217 total-bytes-write=52 payload-bytes-read=4074188/5242880 (77.71%)
+2019-01-31 11:31:07 1548934267.732546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4077703 total-bytes-write=52 payload-bytes-read=4077674/5242880 (77.78%)
+2019-01-31 11:31:07 1548934267.733913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4081637 total-bytes-write=52 payload-bytes-read=4081608/5242880 (77.85%)
+2019-01-31 11:31:07 1548934267.734540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4085123 total-bytes-write=52 payload-bytes-read=4085094/5242880 (77.92%)
+2019-01-31 11:31:07 1548934267.753331 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4088609 total-bytes-write=52 payload-bytes-read=4088580/5242880 (77.98%)
+2019-01-31 11:31:07 1548934267.796450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4113409 total-bytes-write=52 payload-bytes-read=4113380/5242880 (78.46%)
+2019-01-31 11:31:07 1548934267.840412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4114903 total-bytes-write=52 payload-bytes-read=4114874/5242880 (78.48%)
+2019-01-31 11:31:07 1548934267.865609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4118389 total-bytes-write=52 payload-bytes-read=4118360/5242880 (78.55%)
+2019-01-31 11:31:07 1548934267.899162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4118887 total-bytes-write=52 payload-bytes-read=4118858/5242880 (78.56%)
+2019-01-31 11:31:07 1548934267.899823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4122373 total-bytes-write=52 payload-bytes-read=4122344/5242880 (78.63%)
+2019-01-31 11:31:07 1548934267.900285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4126357 total-bytes-write=52 payload-bytes-read=4126328/5242880 (78.70%)
+2019-01-31 11:31:07 1548934267.912593 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4133777 total-bytes-write=52 payload-bytes-read=4133748/5242880 (78.84%)
+2019-01-31 11:31:07 1548934267.912691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4137761 total-bytes-write=52 payload-bytes-read=4137732/5242880 (78.92%)
+2019-01-31 11:31:07 1548934267.919513 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4138259 total-bytes-write=52 payload-bytes-read=4138230/5242880 (78.93%)
+2019-01-31 11:31:07 1548934267.920206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4140251 total-bytes-write=52 payload-bytes-read=4140222/5242880 (78.97%)
+2019-01-31 11:31:07 1548934267.999416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4143737 total-bytes-write=52 payload-bytes-read=4143708/5242880 (79.03%)
+2019-01-31 11:31:08 1548934268.055275 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4147173 total-bytes-write=52 payload-bytes-read=4147144/5242880 (79.10%)
+2019-01-31 11:31:08 1548934268.055629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4151157 total-bytes-write=52 payload-bytes-read=4151128/5242880 (79.18%)
+2019-01-31 11:31:08 1548934268.057828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4155141 total-bytes-write=52 payload-bytes-read=4155112/5242880 (79.25%)
+2019-01-31 11:31:08 1548934268.100433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4167541 total-bytes-write=52 payload-bytes-read=4167512/5242880 (79.49%)
+2019-01-31 11:31:08 1548934268.172983 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4168039 total-bytes-write=52 payload-bytes-read=4168010/5242880 (79.50%)
+2019-01-31 11:31:08 1548934268.177491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4170031 total-bytes-write=52 payload-bytes-read=4170002/5242880 (79.54%)
+2019-01-31 11:31:08 1548934268.221449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4173517 total-bytes-write=52 payload-bytes-read=4173488/5242880 (79.60%)
+2019-01-31 11:31:08 1548934268.235330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4177003 total-bytes-write=52 payload-bytes-read=4176974/5242880 (79.67%)
+2019-01-31 11:31:08 1548934268.276439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4209771 total-bytes-write=52 payload-bytes-read=4209742/5242880 (80.29%)
+2019-01-31 11:31:08 1548934268.320482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4254441 total-bytes-write=52 payload-bytes-read=4254412/5242880 (81.15%)
+2019-01-31 11:31:08 1548934268.364401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4262359 total-bytes-write=52 payload-bytes-read=4262330/5242880 (81.30%)
+2019-01-31 11:31:08 1548934268.388084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4269331 total-bytes-write=52 payload-bytes-read=4269302/5242880 (81.43%)
+2019-01-31 11:31:08 1548934268.495075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4272817 total-bytes-write=52 payload-bytes-read=4272788/5242880 (81.50%)
+2019-01-31 11:31:08 1548934268.496233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4276751 total-bytes-write=52 payload-bytes-read=4276722/5242880 (81.57%)
+2019-01-31 11:31:08 1548934268.499613 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4280735 total-bytes-write=52 payload-bytes-read=4280706/5242880 (81.65%)
+2019-01-31 11:31:08 1548934268.504904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4281731 total-bytes-write=52 payload-bytes-read=4281702/5242880 (81.67%)
+2019-01-31 11:31:08 1548934268.508097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4289201 total-bytes-write=52 payload-bytes-read=4289172/5242880 (81.81%)
+2019-01-31 11:31:08 1548934268.508302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4297119 total-bytes-write=52 payload-bytes-read=4297090/5242880 (81.96%)
+2019-01-31 11:31:08 1548934268.508423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4301103 total-bytes-write=52 payload-bytes-read=4301074/5242880 (82.04%)
+2019-01-31 11:31:08 1548934268.529016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4306083 total-bytes-write=52 payload-bytes-read=4306054/5242880 (82.13%)
+2019-01-31 11:31:08 1548934268.530669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4310017 total-bytes-write=52 payload-bytes-read=4309988/5242880 (82.21%)
+2019-01-31 11:31:08 1548934268.532399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4317985 total-bytes-write=52 payload-bytes-read=4317956/5242880 (82.36%)
+2019-01-31 11:31:08 1548934268.532900 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4321969 total-bytes-write=52 payload-bytes-read=4321940/5242880 (82.43%)
+2019-01-31 11:31:08 1548934268.533092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4325903 total-bytes-write=52 payload-bytes-read=4325874/5242880 (82.51%)
+2019-01-31 11:31:08 1548934268.563727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4329887 total-bytes-write=52 payload-bytes-read=4329858/5242880 (82.59%)
+2019-01-31 11:31:08 1548934268.565721 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4333871 total-bytes-write=52 payload-bytes-read=4333842/5242880 (82.66%)
+2019-01-31 11:31:08 1548934268.608400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4337357 total-bytes-write=52 payload-bytes-read=4337328/5242880 (82.73%)
+2019-01-31 11:31:08 1548934268.617163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4338353 total-bytes-write=52 payload-bytes-read=4338324/5242880 (82.75%)
+2019-01-31 11:31:08 1548934268.618407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4341789 total-bytes-write=52 payload-bytes-read=4341760/5242880 (82.81%)
+2019-01-31 11:31:08 1548934268.629726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4342287 total-bytes-write=52 payload-bytes-read=4342258/5242880 (82.82%)
+2019-01-31 11:31:08 1548934268.631044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4345773 total-bytes-write=52 payload-bytes-read=4345744/5242880 (82.89%)
+2019-01-31 11:31:08 1548934268.632944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4349757 total-bytes-write=52 payload-bytes-read=4349728/5242880 (82.96%)
+2019-01-31 11:31:08 1548934268.676390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4362157 total-bytes-write=52 payload-bytes-read=4362128/5242880 (83.20%)
+2019-01-31 11:31:08 1548934268.720416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4365643 total-bytes-write=52 payload-bytes-read=4365614/5242880 (83.27%)
+2019-01-31 11:31:08 1548934268.830677 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4369129 total-bytes-write=52 payload-bytes-read=4369100/5242880 (83.33%)
+2019-01-31 11:31:08 1548934268.872416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4383521 total-bytes-write=52 payload-bytes-read=4383492/5242880 (83.61%)
+2019-01-31 11:31:08 1548934268.916407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4396917 total-bytes-write=52 payload-bytes-read=4396888/5242880 (83.86%)
+2019-01-31 11:31:08 1548934268.917346 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4400403 total-bytes-write=52 payload-bytes-read=4400374/5242880 (83.93%)
+2019-01-31 11:31:08 1548934268.917986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4404387 total-bytes-write=52 payload-bytes-read=4404358/5242880 (84.01%)
+2019-01-31 11:31:08 1548934268.967988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4404885 total-bytes-write=52 payload-bytes-read=4404856/5242880 (84.02%)
+2019-01-31 11:31:08 1548934268.972154 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4412305 total-bytes-write=52 payload-bytes-read=4412276/5242880 (84.16%)
+2019-01-31 11:31:09 1548934269.065922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4416289 total-bytes-write=52 payload-bytes-read=4416260/5242880 (84.23%)
+2019-01-31 11:31:09 1548934269.066862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4420771 total-bytes-write=52 payload-bytes-read=4420742/5242880 (84.32%)
+2019-01-31 11:31:09 1548934269.067149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4428191 total-bytes-write=52 payload-bytes-read=4428162/5242880 (84.46%)
+2019-01-31 11:31:09 1548934269.067347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4433171 total-bytes-write=52 payload-bytes-read=4433142/5242880 (84.56%)
+2019-01-31 11:31:09 1548934269.067664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4441089 total-bytes-write=52 payload-bytes-read=4441060/5242880 (84.71%)
+2019-01-31 11:31:09 1548934269.067826 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4445073 total-bytes-write=52 payload-bytes-read=4445044/5242880 (84.78%)
+2019-01-31 11:31:09 1548934269.068038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4450053 total-bytes-write=52 payload-bytes-read=4450024/5242880 (84.88%)
+2019-01-31 11:31:09 1548934269.068193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4454037 total-bytes-write=52 payload-bytes-read=4454008/5242880 (84.95%)
+2019-01-31 11:31:09 1548934269.068509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4461457 total-bytes-write=52 payload-bytes-read=4461428/5242880 (85.09%)
+2019-01-31 11:31:09 1548934269.068806 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4469425 total-bytes-write=52 payload-bytes-read=4469396/5242880 (85.25%)
+2019-01-31 11:31:09 1548934269.068971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4473359 total-bytes-write=52 payload-bytes-read=4473330/5242880 (85.32%)
+2019-01-31 11:31:09 1548934269.069109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4476347 total-bytes-write=52 payload-bytes-read=4476318/5242880 (85.38%)
+2019-01-31 11:31:09 1548934269.102330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4479833 total-bytes-write=52 payload-bytes-read=4479804/5242880 (85.45%)
+2019-01-31 11:31:09 1548934269.136526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4483817 total-bytes-write=52 payload-bytes-read=4483788/5242880 (85.52%)
+2019-01-31 11:31:09 1548934269.149442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4487801 total-bytes-write=52 payload-bytes-read=4487772/5242880 (85.60%)
+2019-01-31 11:31:09 1548934269.192389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4496217 total-bytes-write=52 payload-bytes-read=4496188/5242880 (85.76%)
+2019-01-31 11:31:09 1548934269.236434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4517581 total-bytes-write=52 payload-bytes-read=4517552/5242880 (86.17%)
+2019-01-31 11:31:09 1548934269.286059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4521067 total-bytes-write=52 payload-bytes-read=4521038/5242880 (86.23%)
+2019-01-31 11:31:09 1548934269.287009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4528487 total-bytes-write=52 payload-bytes-read=4528458/5242880 (86.37%)
+2019-01-31 11:31:09 1548934269.296512 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4531973 total-bytes-write=52 payload-bytes-read=4531944/5242880 (86.44%)
+2019-01-31 11:31:09 1548934269.312074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4535957 total-bytes-write=52 payload-bytes-read=4535928/5242880 (86.52%)
+2019-01-31 11:31:09 1548934269.312708 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4539393 total-bytes-write=52 payload-bytes-read=4539364/5242880 (86.58%)
+2019-01-31 11:31:09 1548934269.313272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4541385 total-bytes-write=52 payload-bytes-read=4541356/5242880 (86.62%)
+2019-01-31 11:31:09 1548934269.320489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4544871 total-bytes-write=52 payload-bytes-read=4544842/5242880 (86.69%)
+2019-01-31 11:31:09 1548934269.321494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4548855 total-bytes-write=52 payload-bytes-read=4548826/5242880 (86.76%)
+2019-01-31 11:31:09 1548934269.331982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4550349 total-bytes-write=52 payload-bytes-read=4550320/5242880 (86.79%)
+2019-01-31 11:31:09 1548934269.333355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4553835 total-bytes-write=52 payload-bytes-read=4553806/5242880 (86.86%)
+2019-01-31 11:31:09 1548934269.352575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4557271 total-bytes-write=52 payload-bytes-read=4557242/5242880 (86.92%)
+2019-01-31 11:31:09 1548934269.353497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4560757 total-bytes-write=52 payload-bytes-read=4560728/5242880 (86.99%)
+2019-01-31 11:31:09 1548934269.368322 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4564243 total-bytes-write=52 payload-bytes-read=4564214/5242880 (87.06%)
+2019-01-31 11:31:09 1548934269.408382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4564741 total-bytes-write=52 payload-bytes-read=4564712/5242880 (87.06%)
+2019-01-31 11:31:09 1548934269.424452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4565737 total-bytes-write=52 payload-bytes-read=4565708/5242880 (87.08%)
+2019-01-31 11:31:09 1548934269.425344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4569223 total-bytes-write=52 payload-bytes-read=4569194/5242880 (87.15%)
+2019-01-31 11:31:09 1548934269.468412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4586603 total-bytes-write=52 payload-bytes-read=4586574/5242880 (87.48%)
+2019-01-31 11:31:09 1548934269.512393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4590039 total-bytes-write=52 payload-bytes-read=4590010/5242880 (87.55%)
+2019-01-31 11:31:09 1548934269.515832 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4590537 total-bytes-write=52 payload-bytes-read=4590508/5242880 (87.56%)
+2019-01-31 11:31:09 1548934269.517938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4598007 total-bytes-write=52 payload-bytes-read=4597978/5242880 (87.70%)
+2019-01-31 11:31:09 1548934269.520785 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4601991 total-bytes-write=52 payload-bytes-read=4601962/5242880 (87.78%)
+2019-01-31 11:31:09 1548934269.539182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4603485 total-bytes-write=52 payload-bytes-read=4603456/5242880 (87.80%)
+2019-01-31 11:31:09 1548934269.542300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4606921 total-bytes-write=52 payload-bytes-read=4606892/5242880 (87.87%)
+2019-01-31 11:31:09 1548934269.606854 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4610407 total-bytes-write=52 payload-bytes-read=4610378/5242880 (87.94%)
+2019-01-31 11:31:09 1548934269.607305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4614391 total-bytes-write=52 payload-bytes-read=4614362/5242880 (88.01%)
+2019-01-31 11:31:09 1548934269.620529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4617877 total-bytes-write=52 payload-bytes-read=4617848/5242880 (88.08%)
+2019-01-31 11:31:09 1548934269.623819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4621811 total-bytes-write=52 payload-bytes-read=4621782/5242880 (88.15%)
+2019-01-31 11:31:09 1548934269.624738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4628285 total-bytes-write=52 payload-bytes-read=4628256/5242880 (88.28%)
+2019-01-31 11:31:09 1548934269.635391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4631771 total-bytes-write=52 payload-bytes-read=4631742/5242880 (88.34%)
+2019-01-31 11:31:09 1548934269.661520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4632767 total-bytes-write=52 payload-bytes-read=4632738/5242880 (88.36%)
+2019-01-31 11:31:09 1548934269.662043 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4635755 total-bytes-write=52 payload-bytes-read=4635726/5242880 (88.42%)
+2019-01-31 11:31:09 1548934269.695041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4639191 total-bytes-write=52 payload-bytes-read=4639162/5242880 (88.48%)
+2019-01-31 11:31:09 1548934269.696143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4641681 total-bytes-write=52 payload-bytes-read=4641652/5242880 (88.53%)
+2019-01-31 11:31:09 1548934269.704527 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4645167 total-bytes-write=52 payload-bytes-read=4645138/5242880 (88.60%)
+2019-01-31 11:31:09 1548934269.705187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4649151 total-bytes-write=52 payload-bytes-read=4649122/5242880 (88.67%)
+2019-01-31 11:31:09 1548934269.716995 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4652637 total-bytes-write=52 payload-bytes-read=4652608/5242880 (88.74%)
+2019-01-31 11:31:09 1548934269.717929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4656571 total-bytes-write=52 payload-bytes-read=4656542/5242880 (88.82%)
+2019-01-31 11:31:09 1548934269.727926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4657069 total-bytes-write=52 payload-bytes-read=4657040/5242880 (88.83%)
+2019-01-31 11:31:09 1548934269.728042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4660555 total-bytes-write=52 payload-bytes-read=4660526/5242880 (88.89%)
+2019-01-31 11:31:09 1548934269.820997 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4662049 total-bytes-write=52 payload-bytes-read=4662020/5242880 (88.92%)
+2019-01-31 11:31:09 1548934269.821086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4665037 total-bytes-write=52 payload-bytes-read=4665008/5242880 (88.98%)
+2019-01-31 11:31:09 1548934269.833703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4672457 total-bytes-write=52 payload-bytes-read=4672428/5242880 (89.12%)
+2019-01-31 11:31:09 1548934269.834176 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4680425 total-bytes-write=52 payload-bytes-read=4680396/5242880 (89.27%)
+2019-01-31 11:31:09 1548934269.834483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4680923 total-bytes-write=52 payload-bytes-read=4680894/5242880 (89.28%)
+2019-01-31 11:31:09 1548934269.836584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4688343 total-bytes-write=52 payload-bytes-read=4688314/5242880 (89.42%)
+2019-01-31 11:31:09 1548934269.836742 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4692327 total-bytes-write=52 payload-bytes-read=4692298/5242880 (89.50%)
+2019-01-31 11:31:09 1548934269.837913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4696311 total-bytes-write=52 payload-bytes-read=4696282/5242880 (89.57%)
+2019-01-31 11:31:09 1548934269.880414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4703731 total-bytes-write=52 payload-bytes-read=4703702/5242880 (89.72%)
+2019-01-31 11:31:09 1548934269.924376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4712197 total-bytes-write=52 payload-bytes-read=4712168/5242880 (89.88%)
+2019-01-31 11:31:09 1548934269.968473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4748949 total-bytes-write=52 payload-bytes-read=4748920/5242880 (90.58%)
+2019-01-31 11:31:10 1548934270.012434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4761847 total-bytes-write=52 payload-bytes-read=4761818/5242880 (90.82%)
+2019-01-31 11:31:10 1548934270.054236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4762345 total-bytes-write=52 payload-bytes-read=4762316/5242880 (90.83%)
+2019-01-31 11:31:10 1548934270.055357 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4765831 total-bytes-write=52 payload-bytes-read=4765802/5242880 (90.90%)
+2019-01-31 11:31:10 1548934270.059753 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4773749 total-bytes-write=52 payload-bytes-read=4773720/5242880 (91.05%)
+2019-01-31 11:31:10 1548934270.059834 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4777733 total-bytes-write=52 payload-bytes-read=4777704/5242880 (91.13%)
+2019-01-31 11:31:10 1548934270.242977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4778231 total-bytes-write=52 payload-bytes-read=4778202/5242880 (91.14%)
+2019-01-31 11:31:10 1548934270.330382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4782713 total-bytes-write=52 payload-bytes-read=4782684/5242880 (91.22%)
+2019-01-31 11:31:10 1548934270.330605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4787145 total-bytes-write=52 payload-bytes-read=4787116/5242880 (91.31%)
+2019-01-31 11:31:10 1548934270.330754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4790631 total-bytes-write=52 payload-bytes-read=4790602/5242880 (91.37%)
+2019-01-31 11:31:10 1548934270.475146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4794117 total-bytes-write=52 payload-bytes-read=4794088/5242880 (91.44%)
+2019-01-31 11:31:10 1548934270.550411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4797603 total-bytes-write=52 payload-bytes-read=4797574/5242880 (91.51%)
+2019-01-31 11:31:10 1548934270.623195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4801537 total-bytes-write=52 payload-bytes-read=4801508/5242880 (91.58%)
+2019-01-31 11:31:10 1548934270.664430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4813489 total-bytes-write=52 payload-bytes-read=4813460/5242880 (91.81%)
+2019-01-31 11:31:10 1548934270.708376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4817423 total-bytes-write=52 payload-bytes-read=4817394/5242880 (91.88%)
+2019-01-31 11:31:10 1548934270.716179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4822403 total-bytes-write=52 payload-bytes-read=4822374/5242880 (91.98%)
+2019-01-31 11:31:10 1548934270.717010 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4825889 total-bytes-write=52 payload-bytes-read=4825860/5242880 (92.05%)
+2019-01-31 11:31:10 1548934270.722750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4829873 total-bytes-write=52 payload-bytes-read=4829844/5242880 (92.12%)
+2019-01-31 11:31:10 1548934270.723381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4831367 total-bytes-write=52 payload-bytes-read=4831338/5242880 (92.15%)
+2019-01-31 11:31:10 1548934270.725336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4835799 total-bytes-write=52 payload-bytes-read=4835770/5242880 (92.23%)
+2019-01-31 11:31:10 1548934270.725455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4839783 total-bytes-write=52 payload-bytes-read=4839754/5242880 (92.31%)
+2019-01-31 11:31:10 1548934270.725514 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4840281 total-bytes-write=52 payload-bytes-read=4840252/5242880 (92.32%)
+2019-01-31 11:31:10 1548934270.789652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4843767 total-bytes-write=52 payload-bytes-read=4843738/5242880 (92.39%)
+2019-01-31 11:31:10 1548934270.798857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4847253 total-bytes-write=52 payload-bytes-read=4847224/5242880 (92.45%)
+2019-01-31 11:31:10 1548934270.840413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4865131 total-bytes-write=52 payload-bytes-read=4865102/5242880 (92.79%)
+2019-01-31 11:31:10 1548934270.884396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4882013 total-bytes-write=52 payload-bytes-read=4881984/5242880 (93.12%)
+2019-01-31 11:31:10 1548934270.891200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4885449 total-bytes-write=52 payload-bytes-read=4885420/5242880 (93.18%)
+2019-01-31 11:31:10 1548934270.892109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4889433 total-bytes-write=52 payload-bytes-read=4889404/5242880 (93.26%)
+2019-01-31 11:31:10 1548934270.939245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4892919 total-bytes-write=52 payload-bytes-read=4892890/5242880 (93.32%)
+2019-01-31 11:31:10 1548934270.956676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4896405 total-bytes-write=52 payload-bytes-read=4896376/5242880 (93.39%)
+2019-01-31 11:31:11 1548934271.000439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4919711 total-bytes-write=52 payload-bytes-read=4919682/5242880 (93.84%)
+2019-01-31 11:31:11 1548934271.044416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4927679 total-bytes-write=52 payload-bytes-read=4927650/5242880 (93.99%)
+2019-01-31 11:31:11 1548934271.052217 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4931613 total-bytes-write=52 payload-bytes-read=4931584/5242880 (94.06%)
+2019-01-31 11:31:11 1548934271.052991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4935597 total-bytes-write=52 payload-bytes-read=4935568/5242880 (94.14%)
+2019-01-31 11:31:11 1548934271.054638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4940079 total-bytes-write=52 payload-bytes-read=4940050/5242880 (94.22%)
+2019-01-31 11:31:11 1548934271.059001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4943565 total-bytes-write=52 payload-bytes-read=4943536/5242880 (94.29%)
+2019-01-31 11:31:11 1548934271.060074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4947549 total-bytes-write=52 payload-bytes-read=4947520/5242880 (94.37%)
+2019-01-31 11:31:11 1548934271.062212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4951483 total-bytes-write=52 payload-bytes-read=4951454/5242880 (94.44%)
+2019-01-31 11:31:11 1548934271.125404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4957957 total-bytes-write=52 payload-bytes-read=4957928/5242880 (94.56%)
+2019-01-31 11:31:11 1548934271.135466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4961941 total-bytes-write=52 payload-bytes-read=4961912/5242880 (94.64%)
+2019-01-31 11:31:11 1548934271.137696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4965875 total-bytes-write=52 payload-bytes-read=4965846/5242880 (94.72%)
+2019-01-31 11:31:11 1548934271.139976 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4969361 total-bytes-write=52 payload-bytes-read=4969332/5242880 (94.78%)
+2019-01-31 11:31:11 1548934271.141089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4972847 total-bytes-write=52 payload-bytes-read=4972818/5242880 (94.85%)
+2019-01-31 11:31:11 1548934271.184411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=4982259 total-bytes-write=52 payload-bytes-read=4982230/5242880 (95.03%)
+2019-01-31 11:31:11 1548934271.228426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5005117 total-bytes-write=52 payload-bytes-read=5005088/5242880 (95.46%)
+2019-01-31 11:31:11 1548934271.272406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5014031 total-bytes-write=52 payload-bytes-read=5014002/5242880 (95.63%)
+2019-01-31 11:31:11 1548934271.289984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5017517 total-bytes-write=52 payload-bytes-read=5017488/5242880 (95.70%)
+2019-01-31 11:31:11 1548934271.291195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5021501 total-bytes-write=52 payload-bytes-read=5021472/5242880 (95.78%)
+2019-01-31 11:31:11 1548934271.305231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5025485 total-bytes-write=52 payload-bytes-read=5025456/5242880 (95.85%)
+2019-01-31 11:31:11 1548934271.348422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5038881 total-bytes-write=52 payload-bytes-read=5038852/5242880 (96.11%)
+2019-01-31 11:31:11 1548934271.415915 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5042367 total-bytes-write=52 payload-bytes-read=5042338/5242880 (96.17%)
+2019-01-31 11:31:11 1548934271.416846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5049289 total-bytes-write=52 payload-bytes-read=5049260/5242880 (96.31%)
+2019-01-31 11:31:11 1548934271.440553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5052775 total-bytes-write=52 payload-bytes-read=5052746/5242880 (96.37%)
+2019-01-31 11:31:11 1548934271.501405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5053771 total-bytes-write=52 payload-bytes-read=5053742/5242880 (96.39%)
+2019-01-31 11:31:11 1548934271.502804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5061241 total-bytes-write=52 payload-bytes-read=5061212/5242880 (96.53%)
+2019-01-31 11:31:11 1548934271.503565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5065175 total-bytes-write=52 payload-bytes-read=5065146/5242880 (96.61%)
+2019-01-31 11:31:11 1548934271.513258 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5065673 total-bytes-write=52 payload-bytes-read=5065644/5242880 (96.62%)
+2019-01-31 11:31:11 1548934271.513738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5069159 total-bytes-write=52 payload-bytes-read=5069130/5242880 (96.69%)
+2019-01-31 11:31:11 1548934271.524118 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5072645 total-bytes-write=52 payload-bytes-read=5072616/5242880 (96.75%)
+2019-01-31 11:31:11 1548934271.564393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5079567 total-bytes-write=52 payload-bytes-read=5079538/5242880 (96.88%)
+2019-01-31 11:31:11 1548934271.608458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5106907 total-bytes-write=52 payload-bytes-read=5106878/5242880 (97.41%)
+2019-01-31 11:31:11 1548934271.652416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5111389 total-bytes-write=52 payload-bytes-read=5111360/5242880 (97.49%)
+2019-01-31 11:31:11 1548934271.666882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5116817 total-bytes-write=52 payload-bytes-read=5116788/5242880 (97.59%)
+2019-01-31 11:31:11 1548934271.667430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5120303 total-bytes-write=52 payload-bytes-read=5120274/5242880 (97.66%)
+2019-01-31 11:31:11 1548934271.682108 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5124287 total-bytes-write=52 payload-bytes-read=5124258/5242880 (97.74%)
+2019-01-31 11:31:11 1548934271.682503 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5127773 total-bytes-write=52 payload-bytes-read=5127744/5242880 (97.80%)
+2019-01-31 11:31:11 1548934271.682783 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5128221 total-bytes-write=52 payload-bytes-read=5128192/5242880 (97.81%)
+2019-01-31 11:31:11 1548934271.701308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5131707 total-bytes-write=52 payload-bytes-read=5131678/5242880 (97.88%)
+2019-01-31 11:31:11 1548934271.721362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5132205 total-bytes-write=52 payload-bytes-read=5132176/5242880 (97.89%)
+2019-01-31 11:31:11 1548934271.722422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5135691 total-bytes-write=52 payload-bytes-read=5135662/5242880 (97.95%)
+2019-01-31 11:31:11 1548934271.723128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5139675 total-bytes-write=52 payload-bytes-read=5139646/5242880 (98.03%)
+2019-01-31 11:31:11 1548934271.723528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5143659 total-bytes-write=52 payload-bytes-read=5143630/5242880 (98.11%)
+2019-01-31 11:31:11 1548934271.764414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5152573 total-bytes-write=52 payload-bytes-read=5152544/5242880 (98.28%)
+2019-01-31 11:31:11 1548934271.820437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5157553 total-bytes-write=52 payload-bytes-read=5157524/5242880 (98.37%)
+2019-01-31 11:31:11 1548934271.821200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5160989 total-bytes-write=52 payload-bytes-read=5160960/5242880 (98.44%)
+2019-01-31 11:31:11 1548934271.833680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5164475 total-bytes-write=52 payload-bytes-read=5164446/5242880 (98.50%)
+2019-01-31 11:31:11 1548934271.834880 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5172443 total-bytes-write=52 payload-bytes-read=5172414/5242880 (98.66%)
+2019-01-31 11:31:11 1548934271.835884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5176427 total-bytes-write=52 payload-bytes-read=5176398/5242880 (98.73%)
+2019-01-31 11:31:11 1548934271.845523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5179863 total-bytes-write=52 payload-bytes-read=5179834/5242880 (98.80%)
+2019-01-31 11:31:11 1548934271.861817 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5180859 total-bytes-write=52 payload-bytes-read=5180830/5242880 (98.82%)
+2019-01-31 11:31:11 1548934271.862532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5184345 total-bytes-write=52 payload-bytes-read=5184316/5242880 (98.88%)
+2019-01-31 11:31:11 1548934271.878717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5188329 total-bytes-write=52 payload-bytes-read=5188300/5242880 (98.96%)
+2019-01-31 11:31:11 1548934271.878802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5192313 total-bytes-write=52 payload-bytes-read=5192284/5242880 (99.03%)
+2019-01-31 11:31:11 1548934271.920407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5206207 total-bytes-write=52 payload-bytes-read=5206178/5242880 (99.30%)
+2019-01-31 11:31:11 1548934271.964452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5222093 total-bytes-write=52 payload-bytes-read=5222064/5242880 (99.60%)
+2019-01-31 11:31:12 1548934272.008433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE total-bytes-read=5241465 total-bytes-write=52 payload-bytes-read=5241436/5242880 (99.97%)
+2019-01-31 11:31:12 1548934272.192790 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:31:12 1548934272.192923 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:31:12 1548934272.192989 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=SUCCESS,error=NONE MD5 checksums passed: computed=4a76e4399c514f8d5738c31bf678aa74 received=4a76e4399c514f8d5738c31bf678aa74
+2019-01-31 11:31:12 1548934272.193075 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,12,localhost:127.0.0.1:36428,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,4,phlox,GET,5242880,phlox,4,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=12 usecs-to-socket-connect=194 usecs-to-proxy-init=257 usecs-to-proxy-choice=391 usecs-to-proxy-request=458 usecs-to-proxy-response=-1 usecs-to-command=779136 usecs-to-response=1434668 usecs-to-first-byte=1539126 usecs-to-last-byte=21047582 usecs-to-checksum=21047697
+2019-01-31 11:31:12 1548934272.193245 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:31:12 1548934272.193336 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 12
+2019-01-31 11:31:12 1548934272.193459 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:31:12 1548934272.193557 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:31:12 1548934272.193629 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:31:12 1548934272.193710 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:31:12 1548934272.943155 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:31:12 1548934272.943267 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:31:12 1548934272.943349 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36436 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:31:12 1548934272.943416 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:31:12 1548934272.943500 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,5,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:31:13 1548934273.611082 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:31:13 1548934273.611148 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:31:13 1548934273.652385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:31:13 1548934273.721239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=9989 total-bytes-write=52 payload-bytes-read=9960/5242880 (0.19%)
+2019-01-31 11:31:13 1548934273.727376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=11483 total-bytes-write=52 payload-bytes-read=11454/5242880 (0.22%)
+2019-01-31 11:31:13 1548934273.798744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=14969 total-bytes-write=52 payload-bytes-read=14940/5242880 (0.28%)
+2019-01-31 11:31:13 1548934273.803379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=18405 total-bytes-write=52 payload-bytes-read=18376/5242880 (0.35%)
+2019-01-31 11:31:13 1548934273.804829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:31:13 1548934273.812202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=23385 total-bytes-write=52 payload-bytes-read=23356/5242880 (0.45%)
+2019-01-31 11:31:13 1548934273.881823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=26871 total-bytes-write=52 payload-bytes-read=26842/5242880 (0.51%)
+2019-01-31 11:31:13 1548934273.883078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=30855 total-bytes-write=52 payload-bytes-read=30826/5242880 (0.59%)
+2019-01-31 11:31:13 1548934273.883718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=35287 total-bytes-write=52 payload-bytes-read=35258/5242880 (0.67%)
+2019-01-31 11:31:13 1548934273.883801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=36283 total-bytes-write=52 payload-bytes-read=36254/5242880 (0.69%)
+2019-01-31 11:31:13 1548934273.887443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=37777 total-bytes-write=52 payload-bytes-read=37748/5242880 (0.72%)
+2019-01-31 11:31:13 1548934273.888206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=42259 total-bytes-write=52 payload-bytes-read=42230/5242880 (0.81%)
+2019-01-31 11:31:13 1548934273.889649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=45745 total-bytes-write=52 payload-bytes-read=45716/5242880 (0.87%)
+2019-01-31 11:31:13 1548934273.934654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=49679 total-bytes-write=52 payload-bytes-read=49650/5242880 (0.95%)
+2019-01-31 11:31:13 1548934273.969437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=53727 total-bytes-write=52 payload-bytes-read=53698/5242880 (1.02%)
+2019-01-31 11:31:14 1548934274.012439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=73035 total-bytes-write=52 payload-bytes-read=73006/5242880 (1.39%)
+2019-01-31 11:31:14 1548934274.065477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=77019 total-bytes-write=52 payload-bytes-read=76990/5242880 (1.47%)
+2019-01-31 11:31:14 1548934274.066800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=80505 total-bytes-write=52 payload-bytes-read=80476/5242880 (1.53%)
+2019-01-31 11:31:14 1548934274.067897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=83941 total-bytes-write=52 payload-bytes-read=83912/5242880 (1.60%)
+2019-01-31 11:31:14 1548934274.069478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=87925 total-bytes-write=52 payload-bytes-read=87896/5242880 (1.68%)
+2019-01-31 11:31:14 1548934274.071589 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=94399 total-bytes-write=52 payload-bytes-read=94370/5242880 (1.80%)
+2019-01-31 11:31:14 1548934274.074201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=97885 total-bytes-write=52 payload-bytes-read=97856/5242880 (1.87%)
+2019-01-31 11:31:14 1548934274.147655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=101819 total-bytes-write=52 payload-bytes-read=101790/5242880 (1.94%)
+2019-01-31 11:31:14 1548934274.151594 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=105803 total-bytes-write=52 payload-bytes-read=105774/5242880 (2.02%)
+2019-01-31 11:31:14 1548934274.151988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=109289 total-bytes-write=52 payload-bytes-read=109260/5242880 (2.08%)
+2019-01-31 11:31:14 1548934274.157971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=113273 total-bytes-write=52 payload-bytes-read=113244/5242880 (2.16%)
+2019-01-31 11:31:14 1548934274.158568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=117705 total-bytes-write=52 payload-bytes-read=117676/5242880 (2.24%)
+2019-01-31 11:31:14 1548934274.158679 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=121191 total-bytes-write=52 payload-bytes-read=121162/5242880 (2.31%)
+2019-01-31 11:31:14 1548934274.162125 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=125175 total-bytes-write=52 payload-bytes-read=125146/5242880 (2.39%)
+2019-01-31 11:31:14 1548934274.230293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=129159 total-bytes-write=52 payload-bytes-read=129130/5242880 (2.46%)
+2019-01-31 11:31:14 1548934274.272435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=154955 total-bytes-write=52 payload-bytes-read=154926/5242880 (2.95%)
+2019-01-31 11:31:14 1548934274.317422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=158441 total-bytes-write=52 payload-bytes-read=158412/5242880 (3.02%)
+2019-01-31 11:31:14 1548934274.318540 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=159935 total-bytes-write=52 payload-bytes-read=159906/5242880 (3.05%)
+2019-01-31 11:31:14 1548934274.321908 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=163421 total-bytes-write=52 payload-bytes-read=163392/5242880 (3.12%)
+2019-01-31 11:31:14 1548934274.326306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=167355 total-bytes-write=52 payload-bytes-read=167326/5242880 (3.19%)
+2019-01-31 11:31:14 1548934274.326977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=171339 total-bytes-write=52 payload-bytes-read=171310/5242880 (3.27%)
+2019-01-31 11:31:14 1548934274.328862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=175821 total-bytes-write=52 payload-bytes-read=175792/5242880 (3.35%)
+2019-01-31 11:31:14 1548934274.329267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=179307 total-bytes-write=52 payload-bytes-read=179278/5242880 (3.42%)
+2019-01-31 11:31:14 1548934274.329717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=181249 total-bytes-write=52 payload-bytes-read=181220/5242880 (3.46%)
+2019-01-31 11:31:14 1548934274.375171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=184735 total-bytes-write=52 payload-bytes-read=184706/5242880 (3.52%)
+2019-01-31 11:31:14 1548934274.403269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=187225 total-bytes-write=52 payload-bytes-read=187196/5242880 (3.57%)
+2019-01-31 11:31:14 1548934274.404200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=191209 total-bytes-write=52 payload-bytes-read=191180/5242880 (3.65%)
+2019-01-31 11:31:14 1548934274.409572 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=198629 total-bytes-write=52 payload-bytes-read=198600/5242880 (3.79%)
+2019-01-31 11:31:14 1548934274.412688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=202613 total-bytes-write=52 payload-bytes-read=202584/5242880 (3.86%)
+2019-01-31 11:31:14 1548934274.413376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=207095 total-bytes-write=52 payload-bytes-read=207066/5242880 (3.95%)
+2019-01-31 11:31:14 1548934274.414869 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=211577 total-bytes-write=52 payload-bytes-read=211548/5242880 (4.03%)
+2019-01-31 11:31:14 1548934274.465913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=215013 total-bytes-write=52 payload-bytes-read=214984/5242880 (4.10%)
+2019-01-31 11:31:14 1548934274.532856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=218997 total-bytes-write=52 payload-bytes-read=218968/5242880 (4.18%)
+2019-01-31 11:31:14 1548934274.549048 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=223479 total-bytes-write=52 payload-bytes-read=223450/5242880 (4.26%)
+2019-01-31 11:31:14 1548934274.549160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=230899 total-bytes-write=52 payload-bytes-read=230870/5242880 (4.40%)
+2019-01-31 11:31:14 1548934274.549440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=238867 total-bytes-write=52 payload-bytes-read=238838/5242880 (4.56%)
+2019-01-31 11:31:14 1548934274.549553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=244345 total-bytes-write=52 payload-bytes-read=244316/5242880 (4.66%)
+2019-01-31 11:31:14 1548934274.575625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:31:14 1548934274.627552 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=250769 total-bytes-write=52 payload-bytes-read=250740/5242880 (4.78%)
+2019-01-31 11:31:14 1548934274.630818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=254255 total-bytes-write=52 payload-bytes-read=254226/5242880 (4.85%)
+2019-01-31 11:31:14 1548934274.633966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=258239 total-bytes-write=52 payload-bytes-read=258210/5242880 (4.92%)
+2019-01-31 11:31:14 1548934274.635113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=261725 total-bytes-write=52 payload-bytes-read=261696/5242880 (4.99%)
+2019-01-31 11:31:14 1548934274.638184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=269643 total-bytes-write=52 payload-bytes-read=269614/5242880 (5.14%)
+2019-01-31 11:31:14 1548934274.638256 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:31:14 1548934274.639263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=278109 total-bytes-write=52 payload-bytes-read=278080/5242880 (5.30%)
+2019-01-31 11:31:14 1548934274.658280 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=282043 total-bytes-write=52 payload-bytes-read=282014/5242880 (5.38%)
+2019-01-31 11:31:14 1548934274.713047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=285031 total-bytes-write=52 payload-bytes-read=285002/5242880 (5.44%)
+2019-01-31 11:31:14 1548934274.715907 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=289015 total-bytes-write=52 payload-bytes-read=288986/5242880 (5.51%)
+2019-01-31 11:31:14 1548934274.721780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=292999 total-bytes-write=52 payload-bytes-read=292970/5242880 (5.59%)
+2019-01-31 11:31:14 1548934274.764413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=314811 total-bytes-write=52 payload-bytes-read=314782/5242880 (6.00%)
+2019-01-31 11:31:14 1548934274.820251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=318795 total-bytes-write=52 payload-bytes-read=318766/5242880 (6.08%)
+2019-01-31 11:31:14 1548934274.821224 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=322281 total-bytes-write=52 payload-bytes-read=322252/5242880 (6.15%)
+2019-01-31 11:31:14 1548934274.833198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=325767 total-bytes-write=52 payload-bytes-read=325738/5242880 (6.21%)
+2019-01-31 11:31:14 1548934274.876451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=350567 total-bytes-write=52 payload-bytes-read=350538/5242880 (6.69%)
+2019-01-31 11:31:14 1548934274.920414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=354551 total-bytes-write=52 payload-bytes-read=354522/5242880 (6.76%)
+2019-01-31 11:31:14 1548934274.926092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=358535 total-bytes-write=52 payload-bytes-read=358506/5242880 (6.84%)
+2019-01-31 11:31:14 1548934274.968409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=378853 total-bytes-write=52 payload-bytes-read=378824/5242880 (7.23%)
+2019-01-31 11:31:15 1548934275.012426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=382339 total-bytes-write=52 payload-bytes-read=382310/5242880 (7.29%)
+2019-01-31 11:31:15 1548934275.041360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=385825 total-bytes-write=52 payload-bytes-read=385796/5242880 (7.36%)
+2019-01-31 11:31:15 1548934275.084474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=414609 total-bytes-write=52 payload-bytes-read=414580/5242880 (7.91%)
+2019-01-31 11:31:15 1548934275.128483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=431491 total-bytes-write=52 payload-bytes-read=431462/5242880 (8.23%)
+2019-01-31 11:31:15 1548934275.128627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=435973 total-bytes-write=52 payload-bytes-read=435944/5242880 (8.31%)
+2019-01-31 11:31:15 1548934275.129198 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=439957 total-bytes-write=52 payload-bytes-read=439928/5242880 (8.39%)
+2019-01-31 11:31:15 1548934275.193081 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=440455 total-bytes-write=52 payload-bytes-read=440426/5242880 (8.40%)
+2019-01-31 11:31:15 1548934275.194097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=443891 total-bytes-write=52 payload-bytes-read=443862/5242880 (8.47%)
+2019-01-31 11:31:15 1548934275.238401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=444887 total-bytes-write=52 payload-bytes-read=444858/5242880 (8.48%)
+2019-01-31 11:31:15 1548934275.239739 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=448373 total-bytes-write=52 payload-bytes-read=448344/5242880 (8.55%)
+2019-01-31 11:31:15 1548934275.240498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=452357 total-bytes-write=52 payload-bytes-read=452328/5242880 (8.63%)
+2019-01-31 11:31:15 1548934275.242315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=456341 total-bytes-write=52 payload-bytes-read=456312/5242880 (8.70%)
+2019-01-31 11:31:15 1548934275.284459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=480643 total-bytes-write=52 payload-bytes-read=480614/5242880 (9.17%)
+2019-01-31 11:31:15 1548934275.328411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=486619 total-bytes-write=52 payload-bytes-read=486590/5242880 (9.28%)
+2019-01-31 11:31:15 1548934275.328717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=489607 total-bytes-write=52 payload-bytes-read=489578/5242880 (9.34%)
+2019-01-31 11:31:15 1548934275.340207 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=491101 total-bytes-write=52 payload-bytes-read=491072/5242880 (9.37%)
+2019-01-31 11:31:15 1548934275.398110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=494537 total-bytes-write=52 payload-bytes-read=494508/5242880 (9.43%)
+2019-01-31 11:31:15 1548934275.398969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=498521 total-bytes-write=52 payload-bytes-read=498492/5242880 (9.51%)
+2019-01-31 11:31:15 1548934275.401158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=502505 total-bytes-write=52 payload-bytes-read=502476/5242880 (9.58%)
+2019-01-31 11:31:15 1548934275.444459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=531289 total-bytes-write=52 payload-bytes-read=531260/5242880 (10.13%)
+2019-01-31 11:31:15 1548934275.488393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=540253 total-bytes-write=52 payload-bytes-read=540224/5242880 (10.30%)
+2019-01-31 11:31:15 1548934275.490510 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=547175 total-bytes-write=52 payload-bytes-read=547146/5242880 (10.44%)
+2019-01-31 11:31:15 1548934275.499384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=550661 total-bytes-write=52 payload-bytes-read=550632/5242880 (10.50%)
+2019-01-31 11:31:15 1548934275.531193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=558579 total-bytes-write=52 payload-bytes-read=558550/5242880 (10.65%)
+2019-01-31 11:31:15 1548934275.531335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=563559 total-bytes-write=52 payload-bytes-read=563530/5242880 (10.75%)
+2019-01-31 11:31:15 1548934275.532320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=564057 total-bytes-write=52 payload-bytes-read=564028/5242880 (10.76%)
+2019-01-31 11:31:15 1548934275.532842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=567543 total-bytes-write=52 payload-bytes-read=567514/5242880 (10.82%)
+2019-01-31 11:31:15 1548934275.598961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=568539 total-bytes-write=52 payload-bytes-read=568510/5242880 (10.84%)
+2019-01-31 11:31:15 1548934275.600596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=572025 total-bytes-write=52 payload-bytes-read=571996/5242880 (10.91%)
+2019-01-31 11:31:15 1548934275.601391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=577951 total-bytes-write=52 payload-bytes-read=577922/5242880 (11.02%)
+2019-01-31 11:31:15 1548934275.610670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=581437 total-bytes-write=52 payload-bytes-read=581408/5242880 (11.09%)
+2019-01-31 11:31:15 1548934275.613852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=587911 total-bytes-write=52 payload-bytes-read=587882/5242880 (11.21%)
+2019-01-31 11:31:15 1548934275.638596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=591347 total-bytes-write=52 payload-bytes-read=591318/5242880 (11.28%)
+2019-01-31 11:31:15 1548934275.640718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=595331 total-bytes-write=52 payload-bytes-read=595302/5242880 (11.35%)
+2019-01-31 11:31:15 1548934275.695466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=602801 total-bytes-write=52 payload-bytes-read=602772/5242880 (11.50%)
+2019-01-31 11:31:15 1548934275.702317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=606237 total-bytes-write=52 payload-bytes-read=606208/5242880 (11.56%)
+2019-01-31 11:31:15 1548934275.702983 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=610221 total-bytes-write=52 payload-bytes-read=610192/5242880 (11.64%)
+2019-01-31 11:31:15 1548934275.703625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=613209 total-bytes-write=52 payload-bytes-read=613180/5242880 (11.70%)
+2019-01-31 11:31:15 1548934275.752623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=617691 total-bytes-write=52 payload-bytes-read=617662/5242880 (11.78%)
+2019-01-31 11:31:15 1548934275.780034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=621177 total-bytes-write=52 payload-bytes-read=621148/5242880 (11.85%)
+2019-01-31 11:31:15 1548934275.780843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=625111 total-bytes-write=52 payload-bytes-read=625082/5242880 (11.92%)
+2019-01-31 11:31:15 1548934275.781441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=629095 total-bytes-write=52 payload-bytes-read=629066/5242880 (12.00%)
+2019-01-31 11:31:15 1548934275.835455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=633079 total-bytes-write=52 payload-bytes-read=633050/5242880 (12.07%)
+2019-01-31 11:31:15 1548934275.876417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=644981 total-bytes-write=52 payload-bytes-read=644952/5242880 (12.30%)
+2019-01-31 11:31:15 1548934275.920465 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=678247 total-bytes-write=52 payload-bytes-read=678218/5242880 (12.94%)
+2019-01-31 11:31:15 1548934275.964407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=687709 total-bytes-write=52 payload-bytes-read=687680/5242880 (13.12%)
+2019-01-31 11:31:15 1548934275.968430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=693635 total-bytes-write=52 payload-bytes-read=693606/5242880 (13.23%)
+2019-01-31 11:31:15 1548934275.969210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=697121 total-bytes-write=52 payload-bytes-read=697092/5242880 (13.30%)
+2019-01-31 11:31:15 1548934275.969447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=705039 total-bytes-write=52 payload-bytes-read=705010/5242880 (13.45%)
+2019-01-31 11:31:15 1548934275.983408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=707529 total-bytes-write=52 payload-bytes-read=707500/5242880 (13.49%)
+2019-01-31 11:31:15 1548934275.984788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=711015 total-bytes-write=52 payload-bytes-read=710986/5242880 (13.56%)
+2019-01-31 11:31:15 1548934275.985789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=713007 total-bytes-write=52 payload-bytes-read=712978/5242880 (13.60%)
+2019-01-31 11:31:15 1548934275.993471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=714501 total-bytes-write=52 payload-bytes-read=714472/5242880 (13.63%)
+2019-01-31 11:31:16 1548934276.049682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=717987 total-bytes-write=52 payload-bytes-read=717958/5242880 (13.69%)
+2019-01-31 11:31:16 1548934276.050211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=721423 total-bytes-write=52 payload-bytes-read=721394/5242880 (13.76%)
+2019-01-31 11:31:16 1548934276.071265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=724909 total-bytes-write=52 payload-bytes-read=724880/5242880 (13.83%)
+2019-01-31 11:31:16 1548934276.073689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=727897 total-bytes-write=52 payload-bytes-read=727868/5242880 (13.88%)
+2019-01-31 11:31:16 1548934276.083064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=731383 total-bytes-write=52 payload-bytes-read=731354/5242880 (13.95%)
+2019-01-31 11:31:16 1548934276.083694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=735367 total-bytes-write=52 payload-bytes-read=735338/5242880 (14.03%)
+2019-01-31 11:31:16 1548934276.086960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=743285 total-bytes-write=52 payload-bytes-read=743256/5242880 (14.18%)
+2019-01-31 11:31:16 1548934276.087080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=747269 total-bytes-write=52 payload-bytes-read=747240/5242880 (14.25%)
+2019-01-31 11:31:16 1548934276.087206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=751253 total-bytes-write=52 payload-bytes-read=751224/5242880 (14.33%)
+2019-01-31 11:31:16 1548934276.128395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=758175 total-bytes-write=52 payload-bytes-read=758146/5242880 (14.46%)
+2019-01-31 11:31:16 1548934276.172395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=763653 total-bytes-write=52 payload-bytes-read=763624/5242880 (14.56%)
+2019-01-31 11:31:16 1548934276.232623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=771073 total-bytes-write=52 payload-bytes-read=771044/5242880 (14.71%)
+2019-01-31 11:31:16 1548934276.234425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=779041 total-bytes-write=52 payload-bytes-read=779012/5242880 (14.86%)
+2019-01-31 11:31:16 1548934276.244221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=782527 total-bytes-write=52 payload-bytes-read=782498/5242880 (14.92%)
+2019-01-31 11:31:16 1548934276.245409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=788453 total-bytes-write=52 payload-bytes-read=788424/5242880 (15.04%)
+2019-01-31 11:31:16 1548934276.258073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=791939 total-bytes-write=52 payload-bytes-read=791910/5242880 (15.10%)
+2019-01-31 11:31:16 1548934276.264974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=795923 total-bytes-write=52 payload-bytes-read=795894/5242880 (15.18%)
+2019-01-31 11:31:16 1548934276.265966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=799907 total-bytes-write=52 payload-bytes-read=799878/5242880 (15.26%)
+2019-01-31 11:31:16 1548934276.308406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=808323 total-bytes-write=52 payload-bytes-read=808294/5242880 (15.42%)
+2019-01-31 11:31:16 1548934276.352403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=813303 total-bytes-write=52 payload-bytes-read=813274/5242880 (15.51%)
+2019-01-31 11:31:16 1548934276.373625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=820723 total-bytes-write=52 payload-bytes-read=820694/5242880 (15.65%)
+2019-01-31 11:31:16 1548934276.374653 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=828691 total-bytes-write=52 payload-bytes-read=828662/5242880 (15.81%)
+2019-01-31 11:31:16 1548934276.394338 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=830185 total-bytes-write=52 payload-bytes-read=830156/5242880 (15.83%)
+2019-01-31 11:31:16 1548934276.396082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=835613 total-bytes-write=52 payload-bytes-read=835584/5242880 (15.94%)
+2019-01-31 11:31:16 1548934276.454067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=839099 total-bytes-write=52 payload-bytes-read=839070/5242880 (16.00%)
+2019-01-31 11:31:16 1548934276.531899 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=839597 total-bytes-write=52 payload-bytes-read=839568/5242880 (16.01%)
+2019-01-31 11:31:16 1548934276.533020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=843083 total-bytes-write=52 payload-bytes-read=843054/5242880 (16.08%)
+2019-01-31 11:31:16 1548934276.533804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=847067 total-bytes-write=52 payload-bytes-read=847038/5242880 (16.16%)
+2019-01-31 11:31:16 1548934276.534461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=851051 total-bytes-write=52 payload-bytes-read=851022/5242880 (16.23%)
+2019-01-31 11:31:16 1548934276.576409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=858969 total-bytes-write=52 payload-bytes-read=858940/5242880 (16.38%)
+2019-01-31 11:31:16 1548934276.620441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=877345 total-bytes-write=52 payload-bytes-read=877316/5242880 (16.73%)
+2019-01-31 11:31:16 1548934276.664447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=915093 total-bytes-write=52 payload-bytes-read=915064/5242880 (17.45%)
+2019-01-31 11:31:16 1548934276.708716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=922513 total-bytes-write=52 payload-bytes-read=922484/5242880 (17.59%)
+2019-01-31 11:31:16 1548934276.708814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=926497 total-bytes-write=52 payload-bytes-read=926468/5242880 (17.67%)
+2019-01-31 11:31:16 1548934276.723963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=927991 total-bytes-write=52 payload-bytes-read=927962/5242880 (17.70%)
+2019-01-31 11:31:16 1548934276.724547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=931477 total-bytes-write=52 payload-bytes-read=931448/5242880 (17.77%)
+2019-01-31 11:31:16 1548934276.725892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=935411 total-bytes-write=52 payload-bytes-read=935382/5242880 (17.84%)
+2019-01-31 11:31:16 1548934276.731441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=938897 total-bytes-write=52 payload-bytes-read=938868/5242880 (17.91%)
+2019-01-31 11:31:16 1548934276.733969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=942881 total-bytes-write=52 payload-bytes-read=942852/5242880 (17.98%)
+2019-01-31 11:31:16 1548934276.734531 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=946367 total-bytes-write=52 payload-bytes-read=946338/5242880 (18.05%)
+2019-01-31 11:31:16 1548934276.735729 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=953787 total-bytes-write=52 payload-bytes-read=953758/5242880 (18.19%)
+2019-01-31 11:31:16 1548934276.767379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=958269 total-bytes-write=52 payload-bytes-read=958240/5242880 (18.28%)
+2019-01-31 11:31:16 1548934276.768537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=961755 total-bytes-write=52 payload-bytes-read=961726/5242880 (18.34%)
+2019-01-31 11:31:16 1548934276.809183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=963249 total-bytes-write=52 payload-bytes-read=963220/5242880 (18.37%)
+2019-01-31 11:31:16 1548934276.821874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=966237 total-bytes-write=52 payload-bytes-read=966208/5242880 (18.43%)
+2019-01-31 11:31:16 1548934276.839311 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=973657 total-bytes-write=52 payload-bytes-read=973628/5242880 (18.57%)
+2019-01-31 11:31:16 1548934276.839668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=981625 total-bytes-write=52 payload-bytes-read=981596/5242880 (18.72%)
+2019-01-31 11:31:16 1548934276.840354 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=983567 total-bytes-write=52 payload-bytes-read=983538/5242880 (18.76%)
+2019-01-31 11:31:16 1548934276.849708 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=990041 total-bytes-write=52 payload-bytes-read=990012/5242880 (18.88%)
+2019-01-31 11:31:16 1548934276.921379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=991037 total-bytes-write=52 payload-bytes-read=991008/5242880 (18.90%)
+2019-01-31 11:31:16 1548934276.925665 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=998507 total-bytes-write=52 payload-bytes-read=998478/5242880 (19.04%)
+2019-01-31 11:31:16 1548934276.925740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1000449 total-bytes-write=52 payload-bytes-read=1000420/5242880 (19.08%)
+2019-01-31 11:31:16 1548934276.928683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1003935 total-bytes-write=52 payload-bytes-read=1003906/5242880 (19.15%)
+2019-01-31 11:31:16 1548934276.929121 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1006923 total-bytes-write=52 payload-bytes-read=1006894/5242880 (19.20%)
+2019-01-31 11:31:17 1548934277.006929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1010409 total-bytes-write=52 payload-bytes-read=1010380/5242880 (19.27%)
+2019-01-31 11:31:17 1548934277.045700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1010907 total-bytes-write=52 payload-bytes-read=1010878/5242880 (19.28%)
+2019-01-31 11:31:17 1548934277.046356 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1014393 total-bytes-write=52 payload-bytes-read=1014364/5242880 (19.35%)
+2019-01-31 11:31:17 1548934277.047661 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1018327 total-bytes-write=52 payload-bytes-read=1018298/5242880 (19.42%)
+2019-01-31 11:31:17 1548934277.048954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1022311 total-bytes-write=52 payload-bytes-read=1022282/5242880 (19.50%)
+2019-01-31 11:31:17 1548934277.049756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1026295 total-bytes-write=52 payload-bytes-read=1026266/5242880 (19.57%)
+2019-01-31 11:31:17 1548934277.092438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1044671 total-bytes-write=52 payload-bytes-read=1044642/5242880 (19.92%)
+2019-01-31 11:31:17 1548934277.136445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1061553 total-bytes-write=52 payload-bytes-read=1061524/5242880 (20.25%)
+2019-01-31 11:31:17 1548934277.213410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1064989 total-bytes-write=52 payload-bytes-read=1064960/5242880 (20.31%)
+2019-01-31 11:31:17 1548934277.213920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1067479 total-bytes-write=52 payload-bytes-read=1067450/5242880 (20.36%)
+2019-01-31 11:31:17 1548934277.227469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1070965 total-bytes-write=52 payload-bytes-read=1070936/5242880 (20.43%)
+2019-01-31 11:31:17 1548934277.229080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1078933 total-bytes-write=52 payload-bytes-read=1078904/5242880 (20.58%)
+2019-01-31 11:31:17 1548934277.229288 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1081871 total-bytes-write=52 payload-bytes-read=1081842/5242880 (20.63%)
+2019-01-31 11:31:17 1548934277.236916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1085357 total-bytes-write=52 payload-bytes-read=1085328/5242880 (20.70%)
+2019-01-31 11:31:17 1548934277.238597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1093325 total-bytes-write=52 payload-bytes-read=1093296/5242880 (20.85%)
+2019-01-31 11:31:17 1548934277.247803 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1096811 total-bytes-write=52 payload-bytes-read=1096782/5242880 (20.92%)
+2019-01-31 11:31:17 1548934277.249593 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1104729 total-bytes-write=52 payload-bytes-read=1104700/5242880 (21.07%)
+2019-01-31 11:31:17 1548934277.279025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1105725 total-bytes-write=52 payload-bytes-read=1105696/5242880 (21.09%)
+2019-01-31 11:31:17 1548934277.280086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1109211 total-bytes-write=52 payload-bytes-read=1109182/5242880 (21.16%)
+2019-01-31 11:31:17 1548934277.280640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1112199 total-bytes-write=52 payload-bytes-read=1112170/5242880 (21.21%)
+2019-01-31 11:31:17 1548934277.336532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1112697 total-bytes-write=52 payload-bytes-read=1112668/5242880 (21.22%)
+2019-01-31 11:31:17 1548934277.338494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1116133 total-bytes-write=52 payload-bytes-read=1116104/5242880 (21.29%)
+2019-01-31 11:31:17 1548934277.416145 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1116631 total-bytes-write=52 payload-bytes-read=1116602/5242880 (21.30%)
+2019-01-31 11:31:17 1548934277.417309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1120117 total-bytes-write=52 payload-bytes-read=1120088/5242880 (21.36%)
+2019-01-31 11:31:17 1548934277.418720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1124101 total-bytes-write=52 payload-bytes-read=1124072/5242880 (21.44%)
+2019-01-31 11:31:17 1548934277.419764 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1128085 total-bytes-write=52 payload-bytes-read=1128056/5242880 (21.52%)
+2019-01-31 11:31:17 1548934277.460429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1156371 total-bytes-write=52 payload-bytes-read=1156342/5242880 (22.06%)
+2019-01-31 11:31:17 1548934277.504394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1160853 total-bytes-write=52 payload-bytes-read=1160824/5242880 (22.14%)
+2019-01-31 11:31:17 1548934277.517283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1168273 total-bytes-write=52 payload-bytes-read=1168244/5242880 (22.28%)
+2019-01-31 11:31:17 1548934277.517524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1174249 total-bytes-write=52 payload-bytes-read=1174220/5242880 (22.40%)
+2019-01-31 11:31:17 1548934277.529254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1175245 total-bytes-write=52 payload-bytes-read=1175216/5242880 (22.42%)
+2019-01-31 11:31:17 1548934277.530249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1178731 total-bytes-write=52 payload-bytes-read=1178702/5242880 (22.48%)
+2019-01-31 11:31:17 1548934277.531014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1182665 total-bytes-write=52 payload-bytes-read=1182636/5242880 (22.56%)
+2019-01-31 11:31:17 1548934277.550938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1184159 total-bytes-write=52 payload-bytes-read=1184130/5242880 (22.59%)
+2019-01-31 11:31:17 1548934277.552433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1187147 total-bytes-write=52 payload-bytes-read=1187118/5242880 (22.64%)
+2019-01-31 11:31:17 1548934277.561288 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1190633 total-bytes-write=52 payload-bytes-read=1190604/5242880 (22.71%)
+2019-01-31 11:31:17 1548934277.577025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1198053 total-bytes-write=52 payload-bytes-read=1198024/5242880 (22.85%)
+2019-01-31 11:31:17 1548934277.581447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1201539 total-bytes-write=52 payload-bytes-read=1201510/5242880 (22.92%)
+2019-01-31 11:31:17 1548934277.591104 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1202037 total-bytes-write=52 payload-bytes-read=1202008/5242880 (22.93%)
+2019-01-31 11:31:17 1548934277.594508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1209507 total-bytes-write=52 payload-bytes-read=1209478/5242880 (23.07%)
+2019-01-31 11:31:17 1548934277.594587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1212943 total-bytes-write=52 payload-bytes-read=1212914/5242880 (23.13%)
+2019-01-31 11:31:17 1548934277.602409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1216429 total-bytes-write=52 payload-bytes-read=1216400/5242880 (23.20%)
+2019-01-31 11:31:17 1548934277.602784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1220413 total-bytes-write=52 payload-bytes-read=1220384/5242880 (23.28%)
+2019-01-31 11:31:17 1548934277.603557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1224397 total-bytes-write=52 payload-bytes-read=1224368/5242880 (23.35%)
+2019-01-31 11:31:17 1548934277.644439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1230821 total-bytes-write=52 payload-bytes-read=1230792/5242880 (23.48%)
+2019-01-31 11:31:17 1548934277.688395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1238789 total-bytes-write=52 payload-bytes-read=1238760/5242880 (23.63%)
+2019-01-31 11:31:17 1548934277.732413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1255671 total-bytes-write=52 payload-bytes-read=1255642/5242880 (23.95%)
+2019-01-31 11:31:17 1548934277.776376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1261149 total-bytes-write=52 payload-bytes-read=1261120/5242880 (24.05%)
+2019-01-31 11:31:17 1548934277.786407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1264585 total-bytes-write=52 payload-bytes-read=1264556/5242880 (24.12%)
+2019-01-31 11:31:17 1548934277.787051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1268071 total-bytes-write=52 payload-bytes-read=1268042/5242880 (24.19%)
+2019-01-31 11:31:17 1548934277.822627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1271557 total-bytes-write=52 payload-bytes-read=1271528/5242880 (24.25%)
+2019-01-31 11:31:17 1548934277.864402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1287443 total-bytes-write=52 payload-bytes-read=1287414/5242880 (24.56%)
+2019-01-31 11:31:17 1548934277.908399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1295361 total-bytes-write=52 payload-bytes-read=1295332/5242880 (24.71%)
+2019-01-31 11:31:17 1548934277.909422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1301337 total-bytes-write=52 payload-bytes-read=1301308/5242880 (24.82%)
+2019-01-31 11:31:17 1548934277.915112 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1304823 total-bytes-write=52 payload-bytes-read=1304794/5242880 (24.89%)
+2019-01-31 11:31:17 1548934277.924760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1305321 total-bytes-write=52 payload-bytes-read=1305292/5242880 (24.90%)
+2019-01-31 11:31:17 1548934277.926604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1308807 total-bytes-write=52 payload-bytes-read=1308778/5242880 (24.96%)
+2019-01-31 11:31:17 1548934277.927299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1312741 total-bytes-write=52 payload-bytes-read=1312712/5242880 (25.04%)
+2019-01-31 11:31:17 1548934277.983467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1313737 total-bytes-write=52 payload-bytes-read=1313708/5242880 (25.06%)
+2019-01-31 11:31:17 1548934277.985773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1321207 total-bytes-write=52 payload-bytes-read=1321178/5242880 (25.20%)
+2019-01-31 11:31:17 1548934277.985929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1327631 total-bytes-write=52 payload-bytes-read=1327602/5242880 (25.32%)
+2019-01-31 11:31:18 1548934278.024144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1328627 total-bytes-write=52 payload-bytes-read=1328598/5242880 (25.34%)
+2019-01-31 11:31:18 1548934278.024229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:31:18 1548934278.036807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1333607 total-bytes-write=52 payload-bytes-read=1333578/5242880 (25.44%)
+2019-01-31 11:31:18 1548934278.049635 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1341077 total-bytes-write=52 payload-bytes-read=1341048/5242880 (25.58%)
+2019-01-31 11:31:18 1548934278.049756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1345011 total-bytes-write=52 payload-bytes-read=1344982/5242880 (25.65%)
+2019-01-31 11:31:18 1548934278.050758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1349493 total-bytes-write=52 payload-bytes-read=1349464/5242880 (25.74%)
+2019-01-31 11:31:18 1548934278.050825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1352979 total-bytes-write=52 payload-bytes-read=1352950/5242880 (25.81%)
+2019-01-31 11:31:18 1548934278.057795 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1354473 total-bytes-write=52 payload-bytes-read=1354444/5242880 (25.83%)
+2019-01-31 11:31:18 1548934278.058293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1357959 total-bytes-write=52 payload-bytes-read=1357930/5242880 (25.90%)
+2019-01-31 11:31:18 1548934278.079184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1359453 total-bytes-write=52 payload-bytes-read=1359424/5242880 (25.93%)
+2019-01-31 11:31:18 1548934278.081038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1362889 total-bytes-write=52 payload-bytes-read=1362860/5242880 (25.99%)
+2019-01-31 11:31:18 1548934278.092219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1366375 total-bytes-write=52 payload-bytes-read=1366346/5242880 (26.06%)
+2019-01-31 11:31:18 1548934278.100007 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1366873 total-bytes-write=52 payload-bytes-read=1366844/5242880 (26.07%)
+2019-01-31 11:31:18 1548934278.101047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1370359 total-bytes-write=52 payload-bytes-read=1370330/5242880 (26.14%)
+2019-01-31 11:31:18 1548934278.102466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1378277 total-bytes-write=52 payload-bytes-read=1378248/5242880 (26.29%)
+2019-01-31 11:31:18 1548934278.102815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1382261 total-bytes-write=52 payload-bytes-read=1382232/5242880 (26.36%)
+2019-01-31 11:31:18 1548934278.112290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1383257 total-bytes-write=52 payload-bytes-read=1383228/5242880 (26.38%)
+2019-01-31 11:31:18 1548934278.113479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1386743 total-bytes-write=52 payload-bytes-read=1386714/5242880 (26.45%)
+2019-01-31 11:31:18 1548934278.195189 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1387241 total-bytes-write=52 payload-bytes-read=1387212/5242880 (26.46%)
+2019-01-31 11:31:18 1548934278.214419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1394661 total-bytes-write=52 payload-bytes-read=1394632/5242880 (26.60%)
+2019-01-31 11:31:18 1548934278.234901 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1395159 total-bytes-write=52 payload-bytes-read=1395130/5242880 (26.61%)
+2019-01-31 11:31:18 1548934278.238663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1402629 total-bytes-write=52 payload-bytes-read=1402600/5242880 (26.75%)
+2019-01-31 11:31:18 1548934278.245762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1406115 total-bytes-write=52 payload-bytes-read=1406086/5242880 (26.82%)
+2019-01-31 11:31:18 1548934278.246994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1410049 total-bytes-write=52 payload-bytes-read=1410020/5242880 (26.89%)
+2019-01-31 11:31:18 1548934278.247524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1414033 total-bytes-write=52 payload-bytes-read=1414004/5242880 (26.97%)
+2019-01-31 11:31:18 1548934278.257951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1417519 total-bytes-write=52 payload-bytes-read=1417490/5242880 (27.04%)
+2019-01-31 11:31:18 1548934278.259714 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1421503 total-bytes-write=52 payload-bytes-read=1421474/5242880 (27.11%)
+2019-01-31 11:31:18 1548934278.262069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1429421 total-bytes-write=52 payload-bytes-read=1429392/5242880 (27.26%)
+2019-01-31 11:31:18 1548934278.267996 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1429919 total-bytes-write=52 payload-bytes-read=1429890/5242880 (27.27%)
+2019-01-31 11:31:18 1548934278.269342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1433405 total-bytes-write=52 payload-bytes-read=1433376/5242880 (27.34%)
+2019-01-31 11:31:18 1548934278.300192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1436393 total-bytes-write=52 payload-bytes-read=1436364/5242880 (27.40%)
+2019-01-31 11:31:18 1548934278.340799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1436891 total-bytes-write=52 payload-bytes-read=1436862/5242880 (27.41%)
+2019-01-31 11:31:18 1548934278.345785 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1444311 total-bytes-write=52 payload-bytes-read=1444282/5242880 (27.55%)
+2019-01-31 11:31:18 1548934278.345944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1451781 total-bytes-write=52 payload-bytes-read=1451752/5242880 (27.69%)
+2019-01-31 11:31:18 1548934278.368564 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1452777 total-bytes-write=52 payload-bytes-read=1452748/5242880 (27.71%)
+2019-01-31 11:31:18 1548934278.370316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1456263 total-bytes-write=52 payload-bytes-read=1456234/5242880 (27.78%)
+2019-01-31 11:31:18 1548934278.370644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1460197 total-bytes-write=52 payload-bytes-read=1460168/5242880 (27.85%)
+2019-01-31 11:31:18 1548934278.371482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1462189 total-bytes-write=52 payload-bytes-read=1462160/5242880 (27.89%)
+2019-01-31 11:31:18 1548934278.372970 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1465675 total-bytes-write=52 payload-bytes-read=1465646/5242880 (27.95%)
+2019-01-31 11:31:18 1548934278.374260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1467667 total-bytes-write=52 payload-bytes-read=1467638/5242880 (27.99%)
+2019-01-31 11:31:18 1548934278.395871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1471153 total-bytes-write=52 payload-bytes-read=1471124/5242880 (28.06%)
+2019-01-31 11:31:18 1548934278.397444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1479071 total-bytes-write=52 payload-bytes-read=1479042/5242880 (28.21%)
+2019-01-31 11:31:18 1548934278.397528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1481063 total-bytes-write=52 payload-bytes-read=1481034/5242880 (28.25%)
+2019-01-31 11:31:18 1548934278.405855 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1484549 total-bytes-write=52 payload-bytes-read=1484520/5242880 (28.31%)
+2019-01-31 11:31:18 1548934278.494042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1485545 total-bytes-write=52 payload-bytes-read=1485516/5242880 (28.33%)
+2019-01-31 11:31:18 1548934278.504184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1490973 total-bytes-write=52 payload-bytes-read=1490944/5242880 (28.44%)
+2019-01-31 11:31:18 1548934278.510811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1497945 total-bytes-write=52 payload-bytes-read=1497916/5242880 (28.57%)
+2019-01-31 11:31:18 1548934278.518181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1501431 total-bytes-write=52 payload-bytes-read=1501402/5242880 (28.64%)
+2019-01-31 11:31:18 1548934278.571415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1504917 total-bytes-write=52 payload-bytes-read=1504888/5242880 (28.70%)
+2019-01-31 11:31:18 1548934278.612455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1528721 total-bytes-write=52 payload-bytes-read=1528692/5242880 (29.16%)
+2019-01-31 11:31:18 1548934278.656459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1551579 total-bytes-write=52 payload-bytes-read=1551550/5242880 (29.59%)
+2019-01-31 11:31:18 1548934278.664935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1555065 total-bytes-write=52 payload-bytes-read=1555036/5242880 (29.66%)
+2019-01-31 11:31:18 1548934278.665963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1558999 total-bytes-write=52 payload-bytes-read=1558970/5242880 (29.73%)
+2019-01-31 11:31:18 1548934278.667757 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1566967 total-bytes-write=52 payload-bytes-read=1566938/5242880 (29.89%)
+2019-01-31 11:31:18 1548934278.667813 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1567465 total-bytes-write=52 payload-bytes-read=1567436/5242880 (29.90%)
+2019-01-31 11:31:18 1548934278.680693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1570951 total-bytes-write=52 payload-bytes-read=1570922/5242880 (29.96%)
+2019-01-31 11:31:18 1548934278.681651 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1574885 total-bytes-write=52 payload-bytes-read=1574856/5242880 (30.04%)
+2019-01-31 11:31:18 1548934278.688716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1576379 total-bytes-write=52 payload-bytes-read=1576350/5242880 (30.07%)
+2019-01-31 11:31:18 1548934278.689134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1580363 total-bytes-write=52 payload-bytes-read=1580334/5242880 (30.14%)
+2019-01-31 11:31:18 1548934278.689208 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1581857 total-bytes-write=52 payload-bytes-read=1581828/5242880 (30.17%)
+2019-01-31 11:31:18 1548934278.753434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1582853 total-bytes-write=52 payload-bytes-read=1582824/5242880 (30.19%)
+2019-01-31 11:31:18 1548934278.754902 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1586339 total-bytes-write=52 payload-bytes-read=1586310/5242880 (30.26%)
+2019-01-31 11:31:18 1548934278.769109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1593759 total-bytes-write=52 payload-bytes-read=1593730/5242880 (30.40%)
+2019-01-31 11:31:18 1548934278.787402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1600731 total-bytes-write=52 payload-bytes-read=1600702/5242880 (30.53%)
+2019-01-31 11:31:18 1548934278.835729 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1604217 total-bytes-write=52 payload-bytes-read=1604188/5242880 (30.60%)
+2019-01-31 11:31:18 1548934278.836501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1608151 total-bytes-write=52 payload-bytes-read=1608122/5242880 (30.67%)
+2019-01-31 11:31:18 1548934278.841369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1616119 total-bytes-write=52 payload-bytes-read=1616090/5242880 (30.82%)
+2019-01-31 11:31:18 1548934278.841547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1620103 total-bytes-write=52 payload-bytes-read=1620074/5242880 (30.90%)
+2019-01-31 11:31:18 1548934278.844067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1623539 total-bytes-write=52 payload-bytes-read=1623510/5242880 (30.97%)
+2019-01-31 11:31:18 1548934278.844950 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1627523 total-bytes-write=52 payload-bytes-read=1627494/5242880 (31.04%)
+2019-01-31 11:31:18 1548934278.853968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1628021 total-bytes-write=52 payload-bytes-read=1627992/5242880 (31.05%)
+2019-01-31 11:31:18 1548934278.855082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1631507 total-bytes-write=52 payload-bytes-read=1631478/5242880 (31.12%)
+2019-01-31 11:31:18 1548934278.855870 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1633499 total-bytes-write=52 payload-bytes-read=1633470/5242880 (31.16%)
+2019-01-31 11:31:18 1548934278.923330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1636985 total-bytes-write=52 payload-bytes-read=1636956/5242880 (31.22%)
+2019-01-31 11:31:18 1548934278.931956 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1637483 total-bytes-write=52 payload-bytes-read=1637454/5242880 (31.23%)
+2019-01-31 11:31:18 1548934278.932951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1640919 total-bytes-write=52 payload-bytes-read=1640890/5242880 (31.30%)
+2019-01-31 11:31:18 1548934278.933363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1644903 total-bytes-write=52 payload-bytes-read=1644874/5242880 (31.37%)
+2019-01-31 11:31:18 1548934278.946619 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1649883 total-bytes-write=52 payload-bytes-read=1649854/5242880 (31.47%)
+2019-01-31 11:31:18 1548934278.948515 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1656307 total-bytes-write=52 payload-bytes-read=1656278/5242880 (31.59%)
+2019-01-31 11:31:18 1548934278.971832 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1659793 total-bytes-write=52 payload-bytes-read=1659764/5242880 (31.66%)
+2019-01-31 11:31:19 1548934279.048521 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1660291 total-bytes-write=52 payload-bytes-read=1660262/5242880 (31.67%)
+2019-01-31 11:31:19 1548934279.050417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1663777 total-bytes-write=52 payload-bytes-read=1663748/5242880 (31.73%)
+2019-01-31 11:31:19 1548934279.051400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1667761 total-bytes-write=52 payload-bytes-read=1667732/5242880 (31.81%)
+2019-01-31 11:31:19 1548934279.052341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1671695 total-bytes-write=52 payload-bytes-read=1671666/5242880 (31.88%)
+2019-01-31 11:31:19 1548934279.053075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1675679 total-bytes-write=52 payload-bytes-read=1675650/5242880 (31.96%)
+2019-01-31 11:31:19 1548934279.061435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1676177 total-bytes-write=52 payload-bytes-read=1676148/5242880 (31.97%)
+2019-01-31 11:31:19 1548934279.062539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1679663 total-bytes-write=52 payload-bytes-read=1679634/5242880 (32.04%)
+2019-01-31 11:31:19 1548934279.063087 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1683647 total-bytes-write=52 payload-bytes-read=1683618/5242880 (32.11%)
+2019-01-31 11:31:19 1548934279.064215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1687581 total-bytes-write=52 payload-bytes-read=1687552/5242880 (32.19%)
+2019-01-31 11:31:19 1548934279.065374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1692063 total-bytes-write=52 payload-bytes-read=1692034/5242880 (32.27%)
+2019-01-31 11:31:19 1548934279.067002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1699533 total-bytes-write=52 payload-bytes-read=1699504/5242880 (32.42%)
+2019-01-31 11:31:19 1548934279.072324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1703019 total-bytes-write=52 payload-bytes-read=1702990/5242880 (32.48%)
+2019-01-31 11:31:19 1548934279.090738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1703517 total-bytes-write=52 payload-bytes-read=1703488/5242880 (32.49%)
+2019-01-31 11:31:19 1548934279.091091 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1705957 total-bytes-write=52 payload-bytes-read=1705928/5242880 (32.54%)
+2019-01-31 11:31:19 1548934279.125722 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1709443 total-bytes-write=52 payload-bytes-read=1709414/5242880 (32.60%)
+2019-01-31 11:31:19 1548934279.208517 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1710439 total-bytes-write=52 payload-bytes-read=1710410/5242880 (32.62%)
+2019-01-31 11:31:19 1548934279.250701 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1712431 total-bytes-write=52 payload-bytes-read=1712402/5242880 (32.66%)
+2019-01-31 11:31:19 1548934279.258595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1715917 total-bytes-write=52 payload-bytes-read=1715888/5242880 (32.73%)
+2019-01-31 11:31:19 1548934279.259511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1719403 total-bytes-write=52 payload-bytes-read=1719374/5242880 (32.79%)
+2019-01-31 11:31:19 1548934279.300412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1736285 total-bytes-write=52 payload-bytes-read=1736256/5242880 (33.12%)
+2019-01-31 11:31:19 1548934279.344450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1764073 total-bytes-write=52 payload-bytes-read=1764044/5242880 (33.65%)
+2019-01-31 11:31:19 1548934279.388461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1802767 total-bytes-write=52 payload-bytes-read=1802738/5242880 (34.38%)
+2019-01-31 11:31:19 1548934279.432387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1807747 total-bytes-write=52 payload-bytes-read=1807718/5242880 (34.48%)
+2019-01-31 11:31:19 1548934279.463211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1811233 total-bytes-write=52 payload-bytes-read=1811204/5242880 (34.55%)
+2019-01-31 11:31:19 1548934279.494245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1811731 total-bytes-write=52 payload-bytes-read=1811702/5242880 (34.56%)
+2019-01-31 11:31:19 1548934279.494676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1815217 total-bytes-write=52 payload-bytes-read=1815188/5242880 (34.62%)
+2019-01-31 11:31:19 1548934279.495806 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1819151 total-bytes-write=52 payload-bytes-read=1819122/5242880 (34.70%)
+2019-01-31 11:31:19 1548934279.496504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1823135 total-bytes-write=52 payload-bytes-read=1823106/5242880 (34.77%)
+2019-01-31 11:31:19 1548934279.497662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1827617 total-bytes-write=52 payload-bytes-read=1827588/5242880 (34.86%)
+2019-01-31 11:31:19 1548934279.498049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1831103 total-bytes-write=52 payload-bytes-read=1831074/5242880 (34.92%)
+2019-01-31 11:31:19 1548934279.505518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1834589 total-bytes-write=52 payload-bytes-read=1834560/5242880 (34.99%)
+2019-01-31 11:31:19 1548934279.548455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1856401 total-bytes-write=52 payload-bytes-read=1856372/5242880 (35.41%)
+2019-01-31 11:31:19 1548934279.592439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1872785 total-bytes-write=52 payload-bytes-read=1872756/5242880 (35.72%)
+2019-01-31 11:31:19 1548934279.602657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1873781 total-bytes-write=52 payload-bytes-read=1873752/5242880 (35.74%)
+2019-01-31 11:31:19 1548934279.603542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1874777 total-bytes-write=52 payload-bytes-read=1874748/5242880 (35.76%)
+2019-01-31 11:31:19 1548934279.644400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1878263 total-bytes-write=52 payload-bytes-read=1878234/5242880 (35.82%)
+2019-01-31 11:31:19 1548934279.688386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1882247 total-bytes-write=52 payload-bytes-read=1882218/5242880 (35.90%)
+2019-01-31 11:31:19 1548934279.732495 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1889667 total-bytes-write=52 payload-bytes-read=1889638/5242880 (36.04%)
+2019-01-31 11:31:19 1548934279.776429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1902067 total-bytes-write=52 payload-bytes-read=1902038/5242880 (36.28%)
+2019-01-31 11:31:19 1548934279.834165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1903063 total-bytes-write=52 payload-bytes-read=1903034/5242880 (36.30%)
+2019-01-31 11:31:19 1548934279.834840 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1906549 total-bytes-write=52 payload-bytes-read=1906520/5242880 (36.36%)
+2019-01-31 11:31:19 1548934279.835952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1910533 total-bytes-write=52 payload-bytes-read=1910504/5242880 (36.44%)
+2019-01-31 11:31:19 1548934279.837898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1918451 total-bytes-write=52 payload-bytes-read=1918422/5242880 (36.59%)
+2019-01-31 11:31:19 1548934279.839503 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1922435 total-bytes-write=52 payload-bytes-read=1922406/5242880 (36.67%)
+2019-01-31 11:31:19 1548934279.841328 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1930403 total-bytes-write=52 payload-bytes-read=1930374/5242880 (36.82%)
+2019-01-31 11:31:19 1548934279.841474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1934337 total-bytes-write=52 payload-bytes-read=1934308/5242880 (36.89%)
+2019-01-31 11:31:19 1548934279.846824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1934835 total-bytes-write=52 payload-bytes-read=1934806/5242880 (36.90%)
+2019-01-31 11:31:19 1548934279.847992 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1938321 total-bytes-write=52 payload-bytes-read=1938292/5242880 (36.97%)
+2019-01-31 11:31:19 1548934279.848966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1942305 total-bytes-write=52 payload-bytes-read=1942276/5242880 (37.05%)
+2019-01-31 11:31:19 1548934279.850232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1946289 total-bytes-write=52 payload-bytes-read=1946260/5242880 (37.12%)
+2019-01-31 11:31:19 1548934279.892411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1955203 total-bytes-write=52 payload-bytes-read=1955174/5242880 (37.29%)
+2019-01-31 11:31:19 1548934279.937720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1955701 total-bytes-write=52 payload-bytes-read=1955672/5242880 (37.30%)
+2019-01-31 11:31:19 1548934279.939113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1959187 total-bytes-write=52 payload-bytes-read=1959158/5242880 (37.37%)
+2019-01-31 11:31:19 1548934279.939455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1963171 total-bytes-write=52 payload-bytes-read=1963142/5242880 (37.44%)
+2019-01-31 11:31:19 1548934279.950683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1964167 total-bytes-write=52 payload-bytes-read=1964138/5242880 (37.46%)
+2019-01-31 11:31:19 1548934279.951711 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1967603 total-bytes-write=52 payload-bytes-read=1967574/5242880 (37.53%)
+2019-01-31 11:31:19 1548934279.952014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1971587 total-bytes-write=52 payload-bytes-read=1971558/5242880 (37.60%)
+2019-01-31 11:31:19 1548934279.972630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1972085 total-bytes-write=52 payload-bytes-read=1972056/5242880 (37.61%)
+2019-01-31 11:31:19 1548934279.973179 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1975571 total-bytes-write=52 payload-bytes-read=1975542/5242880 (37.68%)
+2019-01-31 11:31:19 1548934279.976820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1979555 total-bytes-write=52 payload-bytes-read=1979526/5242880 (37.76%)
+2019-01-31 11:31:19 1548934279.977269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1983489 total-bytes-write=52 payload-bytes-read=1983460/5242880 (37.83%)
+2019-01-31 11:31:19 1548934279.987888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1983987 total-bytes-write=52 payload-bytes-read=1983958/5242880 (37.84%)
+2019-01-31 11:31:19 1548934279.988629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1987473 total-bytes-write=52 payload-bytes-read=1987444/5242880 (37.91%)
+2019-01-31 11:31:19 1548934279.991778 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1995441 total-bytes-write=52 payload-bytes-read=1995412/5242880 (38.06%)
+2019-01-31 11:31:19 1548934279.992210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1999375 total-bytes-write=52 payload-bytes-read=1999346/5242880 (38.13%)
+2019-01-31 11:31:19 1548934279.992553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=1999873 total-bytes-write=52 payload-bytes-read=1999844/5242880 (38.14%)
+2019-01-31 11:31:19 1548934279.995453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2002363 total-bytes-write=52 payload-bytes-read=2002334/5242880 (38.19%)
+2019-01-31 11:31:19 1548934279.997065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2005849 total-bytes-write=52 payload-bytes-read=2005820/5242880 (38.26%)
+2019-01-31 11:31:20 1548934280.044598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2007841 total-bytes-write=52 payload-bytes-read=2007812/5242880 (38.30%)
+2019-01-31 11:31:20 1548934280.055262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2011327 total-bytes-write=52 payload-bytes-read=2011298/5242880 (38.36%)
+2019-01-31 11:31:20 1548934280.057352 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2015261 total-bytes-write=52 payload-bytes-read=2015232/5242880 (38.44%)
+2019-01-31 11:31:20 1548934280.057705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2018249 total-bytes-write=52 payload-bytes-read=2018220/5242880 (38.49%)
+2019-01-31 11:31:20 1548934280.071562 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2025719 total-bytes-write=52 payload-bytes-read=2025690/5242880 (38.64%)
+2019-01-31 11:31:20 1548934280.112004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2027213 total-bytes-write=52 payload-bytes-read=2027184/5242880 (38.67%)
+2019-01-31 11:31:20 1548934280.112385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2029703 total-bytes-write=52 payload-bytes-read=2029674/5242880 (38.71%)
+2019-01-31 11:31:20 1548934280.149459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2033139 total-bytes-write=52 payload-bytes-read=2033110/5242880 (38.78%)
+2019-01-31 11:31:20 1548934280.161271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2034633 total-bytes-write=52 payload-bytes-read=2034604/5242880 (38.81%)
+2019-01-31 11:31:20 1548934280.219982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2038119 total-bytes-write=52 payload-bytes-read=2038090/5242880 (38.87%)
+2019-01-31 11:31:20 1548934280.242599 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2042103 total-bytes-write=52 payload-bytes-read=2042074/5242880 (38.95%)
+2019-01-31 11:31:20 1548934280.243487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2050021 total-bytes-write=52 payload-bytes-read=2049992/5242880 (39.10%)
+2019-01-31 11:31:20 1548934280.268401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2057491 total-bytes-write=52 payload-bytes-read=2057462/5242880 (39.24%)
+2019-01-31 11:31:20 1548934280.270535 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2058985 total-bytes-write=52 payload-bytes-read=2058956/5242880 (39.27%)
+2019-01-31 11:31:20 1548934280.270845 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2059981 total-bytes-write=52 payload-bytes-read=2059952/5242880 (39.29%)
+2019-01-31 11:31:20 1548934280.281223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2063467 total-bytes-write=52 payload-bytes-read=2063438/5242880 (39.36%)
+2019-01-31 11:31:20 1548934280.282184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2067401 total-bytes-write=52 payload-bytes-read=2067372/5242880 (39.43%)
+2019-01-31 11:31:20 1548934280.285251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2071385 total-bytes-write=52 payload-bytes-read=2071356/5242880 (39.51%)
+2019-01-31 11:31:20 1548934280.286345 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2075369 total-bytes-write=52 payload-bytes-read=2075340/5242880 (39.58%)
+2019-01-31 11:31:20 1548934280.328379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2076863 total-bytes-write=52 payload-bytes-read=2076834/5242880 (39.61%)
+2019-01-31 11:31:20 1548934280.333065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2079353 total-bytes-write=52 payload-bytes-read=2079324/5242880 (39.66%)
+2019-01-31 11:31:20 1548934280.370877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2082789 total-bytes-write=52 payload-bytes-read=2082760/5242880 (39.73%)
+2019-01-31 11:31:20 1548934280.388216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2084781 total-bytes-write=52 payload-bytes-read=2084752/5242880 (39.76%)
+2019-01-31 11:31:20 1548934280.399581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2088829 total-bytes-write=52 payload-bytes-read=2088800/5242880 (39.84%)
+2019-01-31 11:31:20 1548934280.440404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2092251 total-bytes-write=52 payload-bytes-read=2092222/5242880 (39.91%)
+2019-01-31 11:31:20 1548934280.497501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2096299 total-bytes-write=52 payload-bytes-read=2096270/5242880 (39.98%)
+2019-01-31 11:31:20 1548934280.540401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2108137 total-bytes-write=52 payload-bytes-read=2108108/5242880 (40.21%)
+2019-01-31 11:31:20 1548934280.584397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2114063 total-bytes-write=52 payload-bytes-read=2114034/5242880 (40.32%)
+2019-01-31 11:31:20 1548934280.589678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2117549 total-bytes-write=52 payload-bytes-read=2117520/5242880 (40.39%)
+2019-01-31 11:31:20 1548934280.626384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2121533 total-bytes-write=52 payload-bytes-read=2121504/5242880 (40.46%)
+2019-01-31 11:31:20 1548934280.678117 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2125517 total-bytes-write=52 payload-bytes-read=2125488/5242880 (40.54%)
+2019-01-31 11:31:20 1548934280.720486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2143893 total-bytes-write=52 payload-bytes-read=2143864/5242880 (40.89%)
+2019-01-31 11:31:20 1548934280.764440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2155297 total-bytes-write=52 payload-bytes-read=2155268/5242880 (41.11%)
+2019-01-31 11:31:20 1548934280.765667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2160277 total-bytes-write=52 payload-bytes-read=2160248/5242880 (41.20%)
+2019-01-31 11:31:20 1548934280.792807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2162717 total-bytes-write=52 payload-bytes-read=2162688/5242880 (41.25%)
+2019-01-31 11:31:20 1548934280.793809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2166203 total-bytes-write=52 payload-bytes-read=2166174/5242880 (41.32%)
+2019-01-31 11:31:20 1548934280.794762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2169689 total-bytes-write=52 payload-bytes-read=2169660/5242880 (41.38%)
+2019-01-31 11:31:20 1548934280.836412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2180595 total-bytes-write=52 payload-bytes-read=2180566/5242880 (41.59%)
+2019-01-31 11:31:20 1548934280.880424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2200963 total-bytes-write=52 payload-bytes-read=2200934/5242880 (41.98%)
+2019-01-31 11:31:20 1548934280.924417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2218841 total-bytes-write=52 payload-bytes-read=2218812/5242880 (42.32%)
+2019-01-31 11:31:20 1548934280.933991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2222327 total-bytes-write=52 payload-bytes-read=2222298/5242880 (42.39%)
+2019-01-31 11:31:20 1548934280.934689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2225813 total-bytes-write=52 payload-bytes-read=2225784/5242880 (42.45%)
+2019-01-31 11:31:20 1548934280.976430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2251609 total-bytes-write=52 payload-bytes-read=2251580/5242880 (42.95%)
+2019-01-31 11:31:21 1548934281.020393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2258581 total-bytes-write=52 payload-bytes-read=2258552/5242880 (43.08%)
+2019-01-31 11:31:21 1548934281.021030 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2265503 total-bytes-write=52 payload-bytes-read=2265474/5242880 (43.21%)
+2019-01-31 11:31:21 1548934281.022525 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2271977 total-bytes-write=52 payload-bytes-read=2271948/5242880 (43.33%)
+2019-01-31 11:31:21 1548934281.042935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2275961 total-bytes-write=52 payload-bytes-read=2275932/5242880 (43.41%)
+2019-01-31 11:31:21 1548934281.046190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2279397 total-bytes-write=52 payload-bytes-read=2279368/5242880 (43.48%)
+2019-01-31 11:31:21 1548934281.060986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2283381 total-bytes-write=52 payload-bytes-read=2283352/5242880 (43.55%)
+2019-01-31 11:31:21 1548934281.061092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:31:21 1548934281.062236 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2292345 total-bytes-write=52 payload-bytes-read=2292316/5242880 (43.72%)
+2019-01-31 11:31:21 1548934281.088349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2295781 total-bytes-write=52 payload-bytes-read=2295752/5242880 (43.79%)
+2019-01-31 11:31:21 1548934281.102156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2299765 total-bytes-write=52 payload-bytes-read=2299736/5242880 (43.86%)
+2019-01-31 11:31:21 1548934281.102818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2301259 total-bytes-write=52 payload-bytes-read=2301230/5242880 (43.89%)
+2019-01-31 11:31:21 1548934281.103218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2302255 total-bytes-write=52 payload-bytes-read=2302226/5242880 (43.91%)
+2019-01-31 11:31:21 1548934281.104838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2305741 total-bytes-write=52 payload-bytes-read=2305712/5242880 (43.98%)
+2019-01-31 11:31:21 1548934281.105710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2306737 total-bytes-write=52 payload-bytes-read=2306708/5242880 (44.00%)
+2019-01-31 11:31:21 1548934281.107809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2310173 total-bytes-write=52 payload-bytes-read=2310144/5242880 (44.06%)
+2019-01-31 11:31:21 1548934281.108568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2314157 total-bytes-write=52 payload-bytes-read=2314128/5242880 (44.14%)
+2019-01-31 11:31:21 1548934281.124986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2315651 total-bytes-write=52 payload-bytes-read=2315622/5242880 (44.17%)
+2019-01-31 11:31:21 1548934281.132676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2319635 total-bytes-write=52 payload-bytes-read=2319606/5242880 (44.24%)
+2019-01-31 11:31:21 1548934281.149284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2323121 total-bytes-write=52 payload-bytes-read=2323092/5242880 (44.31%)
+2019-01-31 11:31:21 1548934281.149986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2325113 total-bytes-write=52 payload-bytes-read=2325084/5242880 (44.35%)
+2019-01-31 11:31:21 1548934281.151360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2332533 total-bytes-write=52 payload-bytes-read=2332504/5242880 (44.49%)
+2019-01-31 11:31:21 1548934281.151419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2333031 total-bytes-write=52 payload-bytes-read=2333002/5242880 (44.50%)
+2019-01-31 11:31:21 1548934281.170264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2334027 total-bytes-write=52 payload-bytes-read=2333998/5242880 (44.52%)
+2019-01-31 11:31:21 1548934281.172067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2337513 total-bytes-write=52 payload-bytes-read=2337484/5242880 (44.58%)
+2019-01-31 11:31:21 1548934281.185496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2340501 total-bytes-write=52 payload-bytes-read=2340472/5242880 (44.64%)
+2019-01-31 11:31:21 1548934281.215326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2343937 total-bytes-write=52 payload-bytes-read=2343908/5242880 (44.71%)
+2019-01-31 11:31:21 1548934281.224998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2344435 total-bytes-write=52 payload-bytes-read=2344406/5242880 (44.72%)
+2019-01-31 11:31:21 1548934281.226162 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2347921 total-bytes-write=52 payload-bytes-read=2347892/5242880 (44.78%)
+2019-01-31 11:31:21 1548934281.226699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2351905 total-bytes-write=52 payload-bytes-read=2351876/5242880 (44.86%)
+2019-01-31 11:31:21 1548934281.268829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2353399 total-bytes-write=52 payload-bytes-read=2353370/5242880 (44.89%)
+2019-01-31 11:31:21 1548934281.314731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2354395 total-bytes-write=52 payload-bytes-read=2354366/5242880 (44.91%)
+2019-01-31 11:31:21 1548934281.316472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2357881 total-bytes-write=52 payload-bytes-read=2357852/5242880 (44.97%)
+2019-01-31 11:31:21 1548934281.371274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2361317 total-bytes-write=52 payload-bytes-read=2361288/5242880 (45.04%)
+2019-01-31 11:31:21 1548934281.371879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2365301 total-bytes-write=52 payload-bytes-read=2365272/5242880 (45.11%)
+2019-01-31 11:31:21 1548934281.372578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2369285 total-bytes-write=52 payload-bytes-read=2369256/5242880 (45.19%)
+2019-01-31 11:31:21 1548934281.416412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2377701 total-bytes-write=52 payload-bytes-read=2377672/5242880 (45.35%)
+2019-01-31 11:31:21 1548934281.469611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2381187 total-bytes-write=52 payload-bytes-read=2381158/5242880 (45.42%)
+2019-01-31 11:31:21 1548934281.476305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2382681 total-bytes-write=52 payload-bytes-read=2382652/5242880 (45.45%)
+2019-01-31 11:31:21 1548934281.542874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2385171 total-bytes-write=52 payload-bytes-read=2385142/5242880 (45.49%)
+2019-01-31 11:31:21 1548934281.554229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2388657 total-bytes-write=52 payload-bytes-read=2388628/5242880 (45.56%)
+2019-01-31 11:31:21 1548934281.555110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2392591 total-bytes-write=52 payload-bytes-read=2392562/5242880 (45.63%)
+2019-01-31 11:31:21 1548934281.571979 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2396575 total-bytes-write=52 payload-bytes-read=2396546/5242880 (45.71%)
+2019-01-31 11:31:21 1548934281.575230 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2397073 total-bytes-write=52 payload-bytes-read=2397044/5242880 (45.72%)
+2019-01-31 11:31:21 1548934281.576420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2400559 total-bytes-write=52 payload-bytes-read=2400530/5242880 (45.79%)
+2019-01-31 11:31:21 1548934281.586550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2401057 total-bytes-write=52 payload-bytes-read=2401028/5242880 (45.80%)
+2019-01-31 11:31:21 1548934281.587706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2404543 total-bytes-write=52 payload-bytes-read=2404514/5242880 (45.86%)
+2019-01-31 11:31:21 1548934281.589749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2408477 total-bytes-write=52 payload-bytes-read=2408448/5242880 (45.94%)
+2019-01-31 11:31:21 1548934281.591076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2412461 total-bytes-write=52 payload-bytes-read=2412432/5242880 (46.01%)
+2019-01-31 11:31:21 1548934281.594186 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2414453 total-bytes-write=52 payload-bytes-read=2414424/5242880 (46.05%)
+2019-01-31 11:31:21 1548934281.600297 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2421923 total-bytes-write=52 payload-bytes-read=2421894/5242880 (46.19%)
+2019-01-31 11:31:21 1548934281.600382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2423915 total-bytes-write=52 payload-bytes-read=2423886/5242880 (46.23%)
+2019-01-31 11:31:21 1548934281.653667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2427351 total-bytes-write=52 payload-bytes-read=2427322/5242880 (46.30%)
+2019-01-31 11:31:21 1548934281.654949 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2431335 total-bytes-write=52 payload-bytes-read=2431306/5242880 (46.37%)
+2019-01-31 11:31:21 1548934281.656337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2435319 total-bytes-write=52 payload-bytes-read=2435290/5242880 (46.45%)
+2019-01-31 11:31:21 1548934281.700445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2466095 total-bytes-write=52 payload-bytes-read=2466066/5242880 (47.04%)
+2019-01-31 11:31:21 1548934281.755223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2470079 total-bytes-write=52 payload-bytes-read=2470050/5242880 (47.11%)
+2019-01-31 11:31:21 1548934281.756656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2474013 total-bytes-write=52 payload-bytes-read=2473984/5242880 (47.19%)
+2019-01-31 11:31:21 1548934281.757987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2477001 total-bytes-write=52 payload-bytes-read=2476972/5242880 (47.24%)
+2019-01-31 11:31:21 1548934281.758841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2480487 total-bytes-write=52 payload-bytes-read=2480458/5242880 (47.31%)
+2019-01-31 11:31:21 1548934281.761615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2481981 total-bytes-write=52 payload-bytes-read=2481952/5242880 (47.34%)
+2019-01-31 11:31:21 1548934281.762711 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:31:21 1548934281.796105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2489451 total-bytes-write=52 payload-bytes-read=2489422/5242880 (47.48%)
+2019-01-31 11:31:21 1548934281.799142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2494381 total-bytes-write=52 payload-bytes-read=2494352/5242880 (47.58%)
+2019-01-31 11:31:21 1548934281.801748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2502349 total-bytes-write=52 payload-bytes-read=2502320/5242880 (47.73%)
+2019-01-31 11:31:21 1548934281.801847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2506781 total-bytes-write=52 payload-bytes-read=2506752/5242880 (47.81%)
+2019-01-31 11:31:21 1548934281.801990 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2510267 total-bytes-write=52 payload-bytes-read=2510238/5242880 (47.88%)
+2019-01-31 11:31:21 1548934281.840781 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2518235 total-bytes-write=52 payload-bytes-read=2518206/5242880 (48.03%)
+2019-01-31 11:31:21 1548934281.840861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2518733 total-bytes-write=52 payload-bytes-read=2518704/5242880 (48.04%)
+2019-01-31 11:31:21 1548934281.842729 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2525655 total-bytes-write=52 payload-bytes-read=2525626/5242880 (48.17%)
+2019-01-31 11:31:21 1548934281.845804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:31:21 1548934281.881580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2531631 total-bytes-write=52 payload-bytes-read=2531602/5242880 (48.29%)
+2019-01-31 11:31:21 1548934281.884715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2535117 total-bytes-write=52 payload-bytes-read=2535088/5242880 (48.35%)
+2019-01-31 11:31:21 1548934281.890380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2543035 total-bytes-write=52 payload-bytes-read=2543006/5242880 (48.50%)
+2019-01-31 11:31:21 1548934281.890525 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2548513 total-bytes-write=52 payload-bytes-read=2548484/5242880 (48.61%)
+2019-01-31 11:31:21 1548934281.890691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2553991 total-bytes-write=52 payload-bytes-read=2553962/5242880 (48.71%)
+2019-01-31 11:31:21 1548934281.890745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2554987 total-bytes-write=52 payload-bytes-read=2554958/5242880 (48.73%)
+2019-01-31 11:31:21 1548934281.918260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2556431 total-bytes-write=52 payload-bytes-read=2556402/5242880 (48.76%)
+2019-01-31 11:31:21 1548934281.951810 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2559917 total-bytes-write=52 payload-bytes-read=2559888/5242880 (48.83%)
+2019-01-31 11:31:21 1548934281.961235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2563403 total-bytes-write=52 payload-bytes-read=2563374/5242880 (48.89%)
+2019-01-31 11:31:22 1548934282.004400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2574807 total-bytes-write=52 payload-bytes-read=2574778/5242880 (49.11%)
+2019-01-31 11:31:22 1548934282.048404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2578293 total-bytes-write=52 payload-bytes-read=2578264/5242880 (49.18%)
+2019-01-31 11:31:22 1548934282.049877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2579289 total-bytes-write=52 payload-bytes-read=2579260/5242880 (49.20%)
+2019-01-31 11:31:22 1548934282.051089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2582775 total-bytes-write=52 payload-bytes-read=2582746/5242880 (49.26%)
+2019-01-31 11:31:22 1548934282.052544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2586759 total-bytes-write=52 payload-bytes-read=2586730/5242880 (49.34%)
+2019-01-31 11:31:22 1548934282.053887 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2590693 total-bytes-write=52 payload-bytes-read=2590664/5242880 (49.41%)
+2019-01-31 11:31:22 1548934282.055402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2594677 total-bytes-write=52 payload-bytes-read=2594648/5242880 (49.49%)
+2019-01-31 11:31:22 1548934282.086237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2596171 total-bytes-write=52 payload-bytes-read=2596142/5242880 (49.52%)
+2019-01-31 11:31:22 1548934282.087334 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2599657 total-bytes-write=52 payload-bytes-read=2599628/5242880 (49.58%)
+2019-01-31 11:31:22 1548934282.172386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2603641 total-bytes-write=52 payload-bytes-read=2603612/5242880 (49.66%)
+2019-01-31 11:31:22 1548934282.225403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2606081 total-bytes-write=52 payload-bytes-read=2606052/5242880 (49.71%)
+2019-01-31 11:31:22 1548934282.243975 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2609567 total-bytes-write=52 payload-bytes-read=2609538/5242880 (49.77%)
+2019-01-31 11:31:22 1548934282.244408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2613053 total-bytes-write=52 payload-bytes-read=2613024/5242880 (49.84%)
+2019-01-31 11:31:22 1548934282.288395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2621967 total-bytes-write=52 payload-bytes-read=2621938/5242880 (50.01%)
+2019-01-31 11:31:22 1548934282.332462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2649307 total-bytes-write=52 payload-bytes-read=2649278/5242880 (50.53%)
+2019-01-31 11:31:22 1548934282.376413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2665691 total-bytes-write=52 payload-bytes-read=2665662/5242880 (50.84%)
+2019-01-31 11:31:22 1548934282.383384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2667185 total-bytes-write=52 payload-bytes-read=2667156/5242880 (50.87%)
+2019-01-31 11:31:22 1548934282.386433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2670621 total-bytes-write=52 payload-bytes-read=2670592/5242880 (50.94%)
+2019-01-31 11:31:22 1548934282.391188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2674605 total-bytes-write=52 payload-bytes-read=2674576/5242880 (51.01%)
+2019-01-31 11:31:22 1548934282.392135 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2678589 total-bytes-write=52 payload-bytes-read=2678560/5242880 (51.09%)
+2019-01-31 11:31:22 1548934282.432457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2694973 total-bytes-write=52 payload-bytes-read=2694944/5242880 (51.40%)
+2019-01-31 11:31:22 1548934282.476462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2723757 total-bytes-write=52 payload-bytes-read=2723728/5242880 (51.95%)
+2019-01-31 11:31:22 1548934282.520426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2746615 total-bytes-write=52 payload-bytes-read=2746586/5242880 (52.39%)
+2019-01-31 11:31:22 1548934282.532691 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2750101 total-bytes-write=52 payload-bytes-read=2750072/5242880 (52.45%)
+2019-01-31 11:31:22 1548934282.540596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2753537 total-bytes-write=52 payload-bytes-read=2753508/5242880 (52.52%)
+2019-01-31 11:31:22 1548934282.544497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2761007 total-bytes-write=52 payload-bytes-read=2760978/5242880 (52.66%)
+2019-01-31 11:31:22 1548934282.544573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2762999 total-bytes-write=52 payload-bytes-read=2762970/5242880 (52.70%)
+2019-01-31 11:31:22 1548934282.552512 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2766485 total-bytes-write=52 payload-bytes-read=2766456/5242880 (52.77%)
+2019-01-31 11:31:22 1548934282.556649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2770419 total-bytes-write=52 payload-bytes-read=2770390/5242880 (52.84%)
+2019-01-31 11:31:22 1548934282.559374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2771913 total-bytes-write=52 payload-bytes-read=2771884/5242880 (52.87%)
+2019-01-31 11:31:22 1548934282.560266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2775399 total-bytes-write=52 payload-bytes-read=2775370/5242880 (52.94%)
+2019-01-31 11:31:22 1548934282.560891 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2777391 total-bytes-write=52 payload-bytes-read=2777362/5242880 (52.97%)
+2019-01-31 11:31:22 1548934282.649286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2777889 total-bytes-write=52 payload-bytes-read=2777860/5242880 (52.98%)
+2019-01-31 11:31:22 1548934282.674858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2779881 total-bytes-write=52 payload-bytes-read=2779852/5242880 (53.02%)
+2019-01-31 11:31:22 1548934282.684420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2783367 total-bytes-write=52 payload-bytes-read=2783338/5242880 (53.09%)
+2019-01-31 11:31:22 1548934282.685370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2790289 total-bytes-write=52 payload-bytes-read=2790260/5242880 (53.22%)
+2019-01-31 11:31:22 1548934282.701629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2793775 total-bytes-write=52 payload-bytes-read=2793746/5242880 (53.29%)
+2019-01-31 11:31:22 1548934282.705474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2801693 total-bytes-write=52 payload-bytes-read=2801664/5242880 (53.44%)
+2019-01-31 11:31:22 1548934282.710775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2806175 total-bytes-write=52 payload-bytes-read=2806146/5242880 (53.52%)
+2019-01-31 11:31:22 1548934282.714069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2811653 total-bytes-write=52 payload-bytes-read=2811624/5242880 (53.63%)
+2019-01-31 11:31:22 1548934282.714148 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2815139 total-bytes-write=52 payload-bytes-read=2815110/5242880 (53.69%)
+2019-01-31 11:31:22 1548934282.737020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2819073 total-bytes-write=52 payload-bytes-read=2819044/5242880 (53.77%)
+2019-01-31 11:31:22 1548934282.737122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2823057 total-bytes-write=52 payload-bytes-read=2823028/5242880 (53.84%)
+2019-01-31 11:31:22 1548934282.822523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2824053 total-bytes-write=52 payload-bytes-read=2824024/5242880 (53.86%)
+2019-01-31 11:31:22 1548934282.832380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2825547 total-bytes-write=52 payload-bytes-read=2825518/5242880 (53.89%)
+2019-01-31 11:31:22 1548934282.854098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2829033 total-bytes-write=52 payload-bytes-read=2829004/5242880 (53.96%)
+2019-01-31 11:31:22 1548934282.854926 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2833017 total-bytes-write=52 payload-bytes-read=2832988/5242880 (54.03%)
+2019-01-31 11:31:22 1548934282.856226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2840935 total-bytes-write=52 payload-bytes-read=2840906/5242880 (54.19%)
+2019-01-31 11:31:22 1548934282.865758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2844421 total-bytes-write=52 payload-bytes-read=2844392/5242880 (54.25%)
+2019-01-31 11:31:22 1548934282.888191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2845417 total-bytes-write=52 payload-bytes-read=2845388/5242880 (54.27%)
+2019-01-31 11:31:22 1548934282.888620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2848903 total-bytes-write=52 payload-bytes-read=2848874/5242880 (54.34%)
+2019-01-31 11:31:22 1548934282.937821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2852339 total-bytes-write=52 payload-bytes-read=2852310/5242880 (54.40%)
+2019-01-31 11:31:22 1548934282.945908 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2858813 total-bytes-write=52 payload-bytes-read=2858784/5242880 (54.53%)
+2019-01-31 11:31:22 1548934282.955977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2862299 total-bytes-write=52 payload-bytes-read=2862270/5242880 (54.59%)
+2019-01-31 11:31:22 1548934282.956293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2865785 total-bytes-write=52 payload-bytes-read=2865756/5242880 (54.66%)
+2019-01-31 11:31:22 1548934282.996383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2869221 total-bytes-write=52 payload-bytes-read=2869192/5242880 (54.73%)
+2019-01-31 11:31:23 1548934283.010435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2872707 total-bytes-write=52 payload-bytes-read=2872678/5242880 (54.79%)
+2019-01-31 11:31:23 1548934283.053715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2873205 total-bytes-write=52 payload-bytes-read=2873176/5242880 (54.80%)
+2019-01-31 11:31:23 1548934283.055232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2877253 total-bytes-write=52 payload-bytes-read=2877224/5242880 (54.88%)
+2019-01-31 11:31:23 1548934283.096479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2922357 total-bytes-write=52 payload-bytes-read=2922328/5242880 (55.74%)
+2019-01-31 11:31:23 1548934283.140389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2930823 total-bytes-write=52 payload-bytes-read=2930794/5242880 (55.90%)
+2019-01-31 11:31:23 1548934283.145200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2938243 total-bytes-write=52 payload-bytes-read=2938214/5242880 (56.04%)
+2019-01-31 11:31:23 1548934283.145340 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2945713 total-bytes-write=52 payload-bytes-read=2945684/5242880 (56.18%)
+2019-01-31 11:31:23 1548934283.145417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2947207 total-bytes-write=52 payload-bytes-read=2947178/5242880 (56.21%)
+2019-01-31 11:31:23 1548934283.198113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2951141 total-bytes-write=52 payload-bytes-read=2951112/5242880 (56.29%)
+2019-01-31 11:31:23 1548934283.198462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2953631 total-bytes-write=52 payload-bytes-read=2953602/5242880 (56.34%)
+2019-01-31 11:31:23 1548934283.428764 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2956619 total-bytes-write=52 payload-bytes-read=2956590/5242880 (56.39%)
+2019-01-31 11:31:23 1548934283.453713 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2960105 total-bytes-write=52 payload-bytes-read=2960076/5242880 (56.46%)
+2019-01-31 11:31:23 1548934283.465083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2967525 total-bytes-write=52 payload-bytes-read=2967496/5242880 (56.60%)
+2019-01-31 11:31:23 1548934283.465169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2971509 total-bytes-write=52 payload-bytes-read=2971480/5242880 (56.68%)
+2019-01-31 11:31:23 1548934283.478699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2975493 total-bytes-write=52 payload-bytes-read=2975464/5242880 (56.75%)
+2019-01-31 11:31:23 1548934283.478788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2979477 total-bytes-write=52 payload-bytes-read=2979448/5242880 (56.83%)
+2019-01-31 11:31:23 1548934283.480543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2987395 total-bytes-write=52 payload-bytes-read=2987366/5242880 (56.98%)
+2019-01-31 11:31:23 1548934283.480609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2987893 total-bytes-write=52 payload-bytes-read=2987864/5242880 (56.99%)
+2019-01-31 11:31:23 1548934283.481085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2990881 total-bytes-write=52 payload-bytes-read=2990852/5242880 (57.05%)
+2019-01-31 11:31:23 1548934283.501952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2996359 total-bytes-write=52 payload-bytes-read=2996330/5242880 (57.15%)
+2019-01-31 11:31:23 1548934283.503022 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=2999795 total-bytes-write=52 payload-bytes-read=2999766/5242880 (57.22%)
+2019-01-31 11:31:23 1548934283.566143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3001289 total-bytes-write=52 payload-bytes-read=3001260/5242880 (57.24%)
+2019-01-31 11:31:23 1548934283.567303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3003281 total-bytes-write=52 payload-bytes-read=3003252/5242880 (57.28%)
+2019-01-31 11:31:23 1548934283.578783 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3006767 total-bytes-write=52 payload-bytes-read=3006738/5242880 (57.35%)
+2019-01-31 11:31:23 1548934283.603303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3010815 total-bytes-write=52 payload-bytes-read=3010786/5242880 (57.43%)
+2019-01-31 11:31:23 1548934283.644466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3047453 total-bytes-write=52 payload-bytes-read=3047424/5242880 (58.13%)
+2019-01-31 11:31:23 1548934283.688404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3052931 total-bytes-write=52 payload-bytes-read=3052902/5242880 (58.23%)
+2019-01-31 11:31:23 1548934283.722130 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:31:23 1548934283.723239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3060401 total-bytes-write=52 payload-bytes-read=3060372/5242880 (58.37%)
+2019-01-31 11:31:23 1548934283.723773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3063837 total-bytes-write=52 payload-bytes-read=3063808/5242880 (58.44%)
+2019-01-31 11:31:23 1548934283.733995 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3067323 total-bytes-write=52 payload-bytes-read=3067294/5242880 (58.50%)
+2019-01-31 11:31:23 1548934283.734627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3071307 total-bytes-write=52 payload-bytes-read=3071278/5242880 (58.58%)
+2019-01-31 11:31:23 1548934283.744059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3071805 total-bytes-write=52 payload-bytes-read=3071776/5242880 (58.59%)
+2019-01-31 11:31:23 1548934283.744587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3075291 total-bytes-write=52 payload-bytes-read=3075262/5242880 (58.66%)
+2019-01-31 11:31:23 1548934283.746811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3083209 total-bytes-write=52 payload-bytes-read=3083180/5242880 (58.81%)
+2019-01-31 11:31:23 1548934283.757470 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3087193 total-bytes-write=52 payload-bytes-read=3087164/5242880 (58.88%)
+2019-01-31 11:31:23 1548934283.757674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3091177 total-bytes-write=52 payload-bytes-read=3091148/5242880 (58.96%)
+2019-01-31 11:31:23 1548934283.800430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3108557 total-bytes-write=52 payload-bytes-read=3108528/5242880 (59.29%)
+2019-01-31 11:31:23 1548934283.844437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3132361 total-bytes-write=52 payload-bytes-read=3132332/5242880 (59.74%)
+2019-01-31 11:31:23 1548934283.888431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3143815 total-bytes-write=52 payload-bytes-read=3143786/5242880 (59.96%)
+2019-01-31 11:31:23 1548934283.892800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3144811 total-bytes-write=52 payload-bytes-read=3144782/5242880 (59.98%)
+2019-01-31 11:31:23 1548934283.893520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3148247 total-bytes-write=52 payload-bytes-read=3148218/5242880 (60.05%)
+2019-01-31 11:31:23 1548934283.925625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3151733 total-bytes-write=52 payload-bytes-read=3151704/5242880 (60.11%)
+2019-01-31 11:31:23 1548934283.927411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3159701 total-bytes-write=52 payload-bytes-read=3159672/5242880 (60.27%)
+2019-01-31 11:31:23 1548934283.928477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3164133 total-bytes-write=52 payload-bytes-read=3164104/5242880 (60.35%)
+2019-01-31 11:31:23 1548934283.928575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3167121 total-bytes-write=52 payload-bytes-read=3167092/5242880 (60.41%)
+2019-01-31 11:31:23 1548934283.936771 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3174591 total-bytes-write=52 payload-bytes-read=3174562/5242880 (60.55%)
+2019-01-31 11:31:23 1548934283.948040 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3178077 total-bytes-write=52 payload-bytes-read=3178048/5242880 (60.62%)
+2019-01-31 11:31:23 1548934283.950433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3185995 total-bytes-write=52 payload-bytes-read=3185966/5242880 (60.77%)
+2019-01-31 11:31:23 1548934283.950531 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3189979 total-bytes-write=52 payload-bytes-read=3189950/5242880 (60.84%)
+2019-01-31 11:31:23 1548934283.951485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3191971 total-bytes-write=52 payload-bytes-read=3191942/5242880 (60.88%)
+2019-01-31 11:31:23 1548934283.990946 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3195407 total-bytes-write=52 payload-bytes-read=3195378/5242880 (60.95%)
+2019-01-31 11:31:23 1548934283.992379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3197399 total-bytes-write=52 payload-bytes-read=3197370/5242880 (60.98%)
+2019-01-31 11:31:24 1548934284.084426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3200885 total-bytes-write=52 payload-bytes-read=3200856/5242880 (61.05%)
+2019-01-31 11:31:24 1548934284.116678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3201881 total-bytes-write=52 payload-bytes-read=3201852/5242880 (61.07%)
+2019-01-31 11:31:24 1548934284.117969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3205367 total-bytes-write=52 payload-bytes-read=3205338/5242880 (61.14%)
+2019-01-31 11:31:24 1548934284.139681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3208853 total-bytes-write=52 payload-bytes-read=3208824/5242880 (61.20%)
+2019-01-31 11:31:24 1548934284.180388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3212787 total-bytes-write=52 payload-bytes-read=3212758/5242880 (61.28%)
+2019-01-31 11:31:24 1548934284.224391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3216273 total-bytes-write=52 payload-bytes-read=3216244/5242880 (61.34%)
+2019-01-31 11:31:24 1548934284.311025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3216771 total-bytes-write=52 payload-bytes-read=3216742/5242880 (61.35%)
+2019-01-31 11:31:24 1548934284.362904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3220257 total-bytes-write=52 payload-bytes-read=3220228/5242880 (61.42%)
+2019-01-31 11:31:24 1548934284.398051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3222747 total-bytes-write=52 payload-bytes-read=3222718/5242880 (61.47%)
+2019-01-31 11:31:24 1548934284.407923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3226233 total-bytes-write=52 payload-bytes-read=3226204/5242880 (61.53%)
+2019-01-31 11:31:24 1548934284.408890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3230167 total-bytes-write=52 payload-bytes-read=3230138/5242880 (61.61%)
+2019-01-31 11:31:24 1548934284.452421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3241621 total-bytes-write=52 payload-bytes-read=3241592/5242880 (61.83%)
+2019-01-31 11:31:24 1548934284.496409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3248045 total-bytes-write=52 payload-bytes-read=3248016/5242880 (61.95%)
+2019-01-31 11:31:24 1548934284.544481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3251531 total-bytes-write=52 payload-bytes-read=3251502/5242880 (62.02%)
+2019-01-31 11:31:24 1548934284.547109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3255515 total-bytes-write=52 payload-bytes-read=3255486/5242880 (62.09%)
+2019-01-31 11:31:24 1548934284.548507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3259499 total-bytes-write=52 payload-bytes-read=3259470/5242880 (62.17%)
+2019-01-31 11:31:24 1548934284.592481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3309149 total-bytes-write=52 payload-bytes-read=3309120/5242880 (63.12%)
+2019-01-31 11:31:24 1548934284.636385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3313083 total-bytes-write=52 payload-bytes-read=3313054/5242880 (63.19%)
+2019-01-31 11:31:24 1548934284.637418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3321051 total-bytes-write=52 payload-bytes-read=3321022/5242880 (63.34%)
+2019-01-31 11:31:24 1548934284.642156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3325035 total-bytes-write=52 payload-bytes-read=3325006/5242880 (63.42%)
+2019-01-31 11:31:24 1548934284.642445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3325533 total-bytes-write=52 payload-bytes-read=3325504/5242880 (63.43%)
+2019-01-31 11:31:24 1548934284.644567 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3328969 total-bytes-write=52 payload-bytes-read=3328940/5242880 (63.49%)
+2019-01-31 11:31:24 1548934284.647070 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3336937 total-bytes-write=52 payload-bytes-read=3336908/5242880 (63.65%)
+2019-01-31 11:31:24 1548934284.647168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3341917 total-bytes-write=52 payload-bytes-read=3341888/5242880 (63.74%)
+2019-01-31 11:31:24 1548934284.660450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3345353 total-bytes-write=52 payload-bytes-read=3345324/5242880 (63.81%)
+2019-01-31 11:31:24 1548934284.661430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3351329 total-bytes-write=52 payload-bytes-read=3351300/5242880 (63.92%)
+2019-01-31 11:31:24 1548934284.668804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3355811 total-bytes-write=52 payload-bytes-read=3355782/5242880 (64.01%)
+2019-01-31 11:31:24 1548934284.673632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3363231 total-bytes-write=52 payload-bytes-read=3363202/5242880 (64.15%)
+2019-01-31 11:31:24 1548934284.677706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3367215 total-bytes-write=52 payload-bytes-read=3367186/5242880 (64.22%)
+2019-01-31 11:31:24 1548934284.711373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3371697 total-bytes-write=52 payload-bytes-read=3371668/5242880 (64.31%)
+2019-01-31 11:31:24 1548934284.711605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3372195 total-bytes-write=52 payload-bytes-read=3372166/5242880 (64.32%)
+2019-01-31 11:31:24 1548934284.712904 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3375631 total-bytes-write=52 payload-bytes-read=3375602/5242880 (64.38%)
+2019-01-31 11:31:24 1548934284.722523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3379615 total-bytes-write=52 payload-bytes-read=3379586/5242880 (64.46%)
+2019-01-31 11:31:24 1548934284.724135 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3383599 total-bytes-write=52 payload-bytes-read=3383570/5242880 (64.54%)
+2019-01-31 11:31:24 1548934284.764440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3398987 total-bytes-write=52 payload-bytes-read=3398958/5242880 (64.83%)
+2019-01-31 11:31:24 1548934284.808386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3406457 total-bytes-write=52 payload-bytes-read=3406428/5242880 (64.97%)
+2019-01-31 11:31:24 1548934284.824156 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3410889 total-bytes-write=52 payload-bytes-read=3410860/5242880 (65.06%)
+2019-01-31 11:31:24 1548934284.824324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3414873 total-bytes-write=52 payload-bytes-read=3414844/5242880 (65.13%)
+2019-01-31 11:31:24 1548934284.835441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3418359 total-bytes-write=52 payload-bytes-read=3418330/5242880 (65.20%)
+2019-01-31 11:31:24 1548934284.839218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3426277 total-bytes-write=52 payload-bytes-read=3426248/5242880 (65.35%)
+2019-01-31 11:31:24 1548934284.839363 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3428767 total-bytes-write=52 payload-bytes-read=3428738/5242880 (65.40%)
+2019-01-31 11:31:24 1548934284.849217 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3435739 total-bytes-write=52 payload-bytes-read=3435710/5242880 (65.53%)
+2019-01-31 11:31:24 1548934284.861627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3442661 total-bytes-write=52 payload-bytes-read=3442632/5242880 (65.66%)
+2019-01-31 11:31:24 1548934284.871644 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3446147 total-bytes-write=52 payload-bytes-read=3446118/5242880 (65.73%)
+2019-01-31 11:31:24 1548934284.936470 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3447143 total-bytes-write=52 payload-bytes-read=3447114/5242880 (65.75%)
+2019-01-31 11:31:24 1548934284.936530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3448139 total-bytes-write=52 payload-bytes-read=3448110/5242880 (65.77%)
+2019-01-31 11:31:24 1548934284.980374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3450131 total-bytes-write=52 payload-bytes-read=3450102/5242880 (65.81%)
+2019-01-31 11:31:25 1548934285.054731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3454179 total-bytes-write=52 payload-bytes-read=3454150/5242880 (65.88%)
+2019-01-31 11:31:25 1548934285.096403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3464523 total-bytes-write=52 payload-bytes-read=3464494/5242880 (66.08%)
+2019-01-31 11:31:25 1548934285.140397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3471993 total-bytes-write=52 payload-bytes-read=3471964/5242880 (66.22%)
+2019-01-31 11:31:25 1548934285.145054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3474931 total-bytes-write=52 payload-bytes-read=3474902/5242880 (66.28%)
+2019-01-31 11:31:25 1548934285.319274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3478417 total-bytes-write=52 payload-bytes-read=3478388/5242880 (66.34%)
+2019-01-31 11:31:25 1548934285.356568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:31:25 1548934285.400497 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3529561 total-bytes-write=52 payload-bytes-read=3529532/5242880 (67.32%)
+2019-01-31 11:31:25 1548934285.444402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3545447 total-bytes-write=52 payload-bytes-read=3545418/5242880 (67.62%)
+2019-01-31 11:31:25 1548934285.447120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3549431 total-bytes-write=52 payload-bytes-read=3549402/5242880 (67.70%)
+2019-01-31 11:31:25 1548934285.448423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3550427 total-bytes-write=52 payload-bytes-read=3550398/5242880 (67.72%)
+2019-01-31 11:31:25 1548934285.455428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3553913 total-bytes-write=52 payload-bytes-read=3553884/5242880 (67.78%)
+2019-01-31 11:31:25 1548934285.468665 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3557847 total-bytes-write=52 payload-bytes-read=3557818/5242880 (67.86%)
+2019-01-31 11:31:25 1548934285.470278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3562329 total-bytes-write=52 payload-bytes-read=3562300/5242880 (67.95%)
+2019-01-31 11:31:25 1548934285.470900 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3564321 total-bytes-write=52 payload-bytes-read=3564292/5242880 (67.98%)
+2019-01-31 11:31:25 1548934285.476368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3567807 total-bytes-write=52 payload-bytes-read=3567778/5242880 (68.05%)
+2019-01-31 11:31:25 1548934285.478847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3571293 total-bytes-write=52 payload-bytes-read=3571264/5242880 (68.12%)
+2019-01-31 11:31:25 1548934285.520413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3592607 total-bytes-write=52 payload-bytes-read=3592578/5242880 (68.52%)
+2019-01-31 11:31:25 1548934285.564437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3620445 total-bytes-write=52 payload-bytes-read=3620416/5242880 (69.05%)
+2019-01-31 11:31:25 1548934285.648903 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3625375 total-bytes-write=52 payload-bytes-read=3625346/5242880 (69.15%)
+2019-01-31 11:31:25 1548934285.649044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3630355 total-bytes-write=52 payload-bytes-read=3630326/5242880 (69.24%)
+2019-01-31 11:31:25 1548934285.649362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3637277 total-bytes-write=52 payload-bytes-read=3637248/5242880 (69.38%)
+2019-01-31 11:31:25 1548934285.649557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3642755 total-bytes-write=52 payload-bytes-read=3642726/5242880 (69.48%)
+2019-01-31 11:31:25 1548934285.649758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3647735 total-bytes-write=52 payload-bytes-read=3647706/5242880 (69.57%)
+2019-01-31 11:31:25 1548934285.649990 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3652217 total-bytes-write=52 payload-bytes-read=3652188/5242880 (69.66%)
+2019-01-31 11:31:25 1548934285.650261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3659139 total-bytes-write=52 payload-bytes-read=3659110/5242880 (69.79%)
+2019-01-31 11:31:25 1548934285.650615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3667107 total-bytes-write=52 payload-bytes-read=3667078/5242880 (69.94%)
+2019-01-31 11:31:25 1548934285.650726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3671041 total-bytes-write=52 payload-bytes-read=3671012/5242880 (70.02%)
+2019-01-31 11:31:25 1548934285.693360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3672037 total-bytes-write=52 payload-bytes-read=3672008/5242880 (70.04%)
+2019-01-31 11:31:25 1548934285.694554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3675523 total-bytes-write=52 payload-bytes-read=3675494/5242880 (70.10%)
+2019-01-31 11:31:25 1548934285.707410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3679009 total-bytes-write=52 payload-bytes-read=3678980/5242880 (70.17%)
+2019-01-31 11:31:25 1548934285.748429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3687923 total-bytes-write=52 payload-bytes-read=3687894/5242880 (70.34%)
+2019-01-31 11:31:25 1548934285.792428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3695393 total-bytes-write=52 payload-bytes-read=3695364/5242880 (70.48%)
+2019-01-31 11:31:25 1548934285.831168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3697385 total-bytes-write=52 payload-bytes-read=3697356/5242880 (70.52%)
+2019-01-31 11:31:25 1548934285.907287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3698381 total-bytes-write=52 payload-bytes-read=3698352/5242880 (70.54%)
+2019-01-31 11:31:25 1548934285.908432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3701867 total-bytes-write=52 payload-bytes-read=3701838/5242880 (70.61%)
+2019-01-31 11:31:25 1548934285.909866 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3705801 total-bytes-write=52 payload-bytes-read=3705772/5242880 (70.68%)
+2019-01-31 11:31:25 1548934285.911396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3709785 total-bytes-write=52 payload-bytes-read=3709756/5242880 (70.76%)
+2019-01-31 11:31:25 1548934285.912686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3713769 total-bytes-write=52 payload-bytes-read=3713740/5242880 (70.83%)
+2019-01-31 11:31:25 1548934285.956381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3720193 total-bytes-write=52 payload-bytes-read=3720164/5242880 (70.96%)
+2019-01-31 11:31:26 1548934286.035703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3721687 total-bytes-write=52 payload-bytes-read=3721658/5242880 (70.98%)
+2019-01-31 11:31:26 1548934286.053215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3723181 total-bytes-write=52 payload-bytes-read=3723152/5242880 (71.01%)
+2019-01-31 11:31:26 1548934286.096447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3750521 total-bytes-write=52 payload-bytes-read=3750492/5242880 (71.53%)
+2019-01-31 11:31:26 1548934286.140379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3753957 total-bytes-write=52 payload-bytes-read=3753928/5242880 (71.60%)
+2019-01-31 11:31:26 1548934286.145612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3757941 total-bytes-write=52 payload-bytes-read=3757912/5242880 (71.68%)
+2019-01-31 11:31:26 1548934286.147425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3761925 total-bytes-write=52 payload-bytes-read=3761896/5242880 (71.75%)
+2019-01-31 11:31:26 1548934286.188408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3772831 total-bytes-write=52 payload-bytes-read=3772802/5242880 (71.96%)
+2019-01-31 11:31:26 1548934286.250801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3776317 total-bytes-write=52 payload-bytes-read=3776288/5242880 (72.03%)
+2019-01-31 11:31:26 1548934286.467802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3779803 total-bytes-write=52 payload-bytes-read=3779774/5242880 (72.09%)
+2019-01-31 11:31:26 1548934286.510387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3783289 total-bytes-write=52 payload-bytes-read=3783260/5242880 (72.16%)
+2019-01-31 11:31:26 1548934286.530544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3783787 total-bytes-write=52 payload-bytes-read=3783758/5242880 (72.17%)
+2019-01-31 11:31:26 1548934286.531977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3787223 total-bytes-write=52 payload-bytes-read=3787194/5242880 (72.23%)
+2019-01-31 11:31:26 1548934286.533887 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3791207 total-bytes-write=52 payload-bytes-read=3791178/5242880 (72.31%)
+2019-01-31 11:31:26 1548934286.535517 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3795191 total-bytes-write=52 payload-bytes-read=3795162/5242880 (72.39%)
+2019-01-31 11:31:26 1548934286.536825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3799175 total-bytes-write=52 payload-bytes-read=3799146/5242880 (72.46%)
+2019-01-31 11:31:26 1548934286.537278 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3799673 total-bytes-write=52 payload-bytes-read=3799644/5242880 (72.47%)
+2019-01-31 11:31:26 1548934286.538885 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3803109 total-bytes-write=52 payload-bytes-read=3803080/5242880 (72.54%)
+2019-01-31 11:31:26 1548934286.544836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3804603 total-bytes-write=52 payload-bytes-read=3804574/5242880 (72.57%)
+2019-01-31 11:31:26 1548934286.545637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3808089 total-bytes-write=52 payload-bytes-read=3808060/5242880 (72.63%)
+2019-01-31 11:31:26 1548934286.555539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3811575 total-bytes-write=52 payload-bytes-read=3811546/5242880 (72.70%)
+2019-01-31 11:31:26 1548934286.590843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3815559 total-bytes-write=52 payload-bytes-read=3815530/5242880 (72.78%)
+2019-01-31 11:31:26 1548934286.592275 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3816555 total-bytes-write=52 payload-bytes-read=3816526/5242880 (72.79%)
+2019-01-31 11:31:26 1548934286.615458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3819991 total-bytes-write=52 payload-bytes-read=3819962/5242880 (72.86%)
+2019-01-31 11:31:26 1548934286.616841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3823975 total-bytes-write=52 payload-bytes-read=3823946/5242880 (72.94%)
+2019-01-31 11:31:26 1548934286.618089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3827461 total-bytes-write=52 payload-bytes-read=3827432/5242880 (73.00%)
+2019-01-31 11:31:26 1548934286.620579 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3831445 total-bytes-write=52 payload-bytes-read=3831416/5242880 (73.08%)
+2019-01-31 11:31:26 1548934286.664448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3848327 total-bytes-write=52 payload-bytes-read=3848298/5242880 (73.40%)
+2019-01-31 11:31:26 1548934286.708405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3865707 total-bytes-write=52 payload-bytes-read=3865678/5242880 (73.73%)
+2019-01-31 11:31:26 1548934286.752447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3886523 total-bytes-write=52 payload-bytes-read=3886494/5242880 (74.13%)
+2019-01-31 11:31:26 1548934286.796439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3897479 total-bytes-write=52 payload-bytes-read=3897450/5242880 (74.34%)
+2019-01-31 11:31:26 1548934286.799760 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3901413 total-bytes-write=52 payload-bytes-read=3901384/5242880 (74.41%)
+2019-01-31 11:31:26 1548934286.805419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3905895 total-bytes-write=52 payload-bytes-read=3905866/5242880 (74.50%)
+2019-01-31 11:31:26 1548934286.806877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3909381 total-bytes-write=52 payload-bytes-read=3909352/5242880 (74.56%)
+2019-01-31 11:31:26 1548934286.807143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3910377 total-bytes-write=52 payload-bytes-read=3910348/5242880 (74.58%)
+2019-01-31 11:31:26 1548934286.813329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3913863 total-bytes-write=52 payload-bytes-read=3913834/5242880 (74.65%)
+2019-01-31 11:31:26 1548934286.816290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3917797 total-bytes-write=52 payload-bytes-read=3917768/5242880 (74.73%)
+2019-01-31 11:31:26 1548934286.818308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3921781 total-bytes-write=52 payload-bytes-read=3921752/5242880 (74.80%)
+2019-01-31 11:31:26 1548934286.846055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3926263 total-bytes-write=52 payload-bytes-read=3926234/5242880 (74.89%)
+2019-01-31 11:31:26 1548934286.847123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3929749 total-bytes-write=52 payload-bytes-read=3929720/5242880 (74.95%)
+2019-01-31 11:31:26 1548934286.871423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3933185 total-bytes-write=52 payload-bytes-read=3933156/5242880 (75.02%)
+2019-01-31 11:31:26 1548934286.881255 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3936671 total-bytes-write=52 payload-bytes-read=3936642/5242880 (75.09%)
+2019-01-31 11:31:26 1548934286.895538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3940655 total-bytes-write=52 payload-bytes-read=3940626/5242880 (75.16%)
+2019-01-31 11:31:26 1548934286.900952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3944639 total-bytes-write=52 payload-bytes-read=3944610/5242880 (75.24%)
+2019-01-31 11:31:26 1548934286.948438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3969439 total-bytes-write=52 payload-bytes-read=3969410/5242880 (75.71%)
+2019-01-31 11:31:26 1548934286.992427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=3999717 total-bytes-write=52 payload-bytes-read=3999688/5242880 (76.29%)
+2019-01-31 11:31:27 1548934287.036399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4004697 total-bytes-write=52 payload-bytes-read=4004668/5242880 (76.38%)
+2019-01-31 11:31:27 1548934287.049784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4005693 total-bytes-write=52 payload-bytes-read=4005664/5242880 (76.40%)
+2019-01-31 11:31:27 1548934287.051100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4009179 total-bytes-write=52 payload-bytes-read=4009150/5242880 (76.47%)
+2019-01-31 11:31:27 1548934287.052676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4012665 total-bytes-write=52 payload-bytes-read=4012636/5242880 (76.53%)
+2019-01-31 11:31:27 1548934287.096435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4032485 total-bytes-write=52 payload-bytes-read=4032456/5242880 (76.91%)
+2019-01-31 11:31:27 1548934287.140407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4043441 total-bytes-write=52 payload-bytes-read=4043412/5242880 (77.12%)
+2019-01-31 11:31:27 1548934287.201447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4045931 total-bytes-write=52 payload-bytes-read=4045902/5242880 (77.17%)
+2019-01-31 11:31:27 1548934287.343482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4046877 total-bytes-write=52 payload-bytes-read=4046848/5242880 (77.19%)
+2019-01-31 11:31:27 1548934287.350858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4050363 total-bytes-write=52 payload-bytes-read=4050334/5242880 (77.25%)
+2019-01-31 11:31:27 1548934287.351942 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4054347 total-bytes-write=52 payload-bytes-read=4054318/5242880 (77.33%)
+2019-01-31 11:31:27 1548934287.353968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4057833 total-bytes-write=52 payload-bytes-read=4057804/5242880 (77.40%)
+2019-01-31 11:31:27 1548934287.365172 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4061319 total-bytes-write=52 payload-bytes-read=4061290/5242880 (77.46%)
+2019-01-31 11:31:27 1548934287.408397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4069735 total-bytes-write=52 payload-bytes-read=4069706/5242880 (77.62%)
+2019-01-31 11:31:27 1548934287.485266 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4070731 total-bytes-write=52 payload-bytes-read=4070702/5242880 (77.64%)
+2019-01-31 11:31:27 1548934287.486607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4074217 total-bytes-write=52 payload-bytes-read=4074188/5242880 (77.71%)
+2019-01-31 11:31:27 1548934287.487835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4078201 total-bytes-write=52 payload-bytes-read=4078172/5242880 (77.78%)
+2019-01-31 11:31:27 1548934287.489283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4082135 total-bytes-write=52 payload-bytes-read=4082106/5242880 (77.86%)
+2019-01-31 11:31:27 1548934287.500970 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4082633 total-bytes-write=52 payload-bytes-read=4082604/5242880 (77.87%)
+2019-01-31 11:31:27 1548934287.502205 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4085621 total-bytes-write=52 payload-bytes-read=4085592/5242880 (77.93%)
+2019-01-31 11:31:27 1548934287.562980 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4089107 total-bytes-write=52 payload-bytes-read=4089078/5242880 (77.99%)
+2019-01-31 11:31:27 1548934287.564194 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4093091 total-bytes-write=52 payload-bytes-read=4093062/5242880 (78.07%)
+2019-01-31 11:31:27 1548934287.564888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4095083 total-bytes-write=52 payload-bytes-read=4095054/5242880 (78.11%)
+2019-01-31 11:31:27 1548934287.577457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4098519 total-bytes-write=52 payload-bytes-read=4098490/5242880 (78.17%)
+2019-01-31 11:31:27 1548934287.581109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4106487 total-bytes-write=52 payload-bytes-read=4106458/5242880 (78.32%)
+2019-01-31 11:31:27 1548934287.581328 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4110471 total-bytes-write=52 payload-bytes-read=4110442/5242880 (78.40%)
+2019-01-31 11:31:27 1548934287.585940 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4114405 total-bytes-write=52 payload-bytes-read=4114376/5242880 (78.48%)
+2019-01-31 11:31:27 1548934287.586081 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4118389 total-bytes-write=52 payload-bytes-read=4118360/5242880 (78.55%)
+2019-01-31 11:31:27 1548934287.587577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4126357 total-bytes-write=52 payload-bytes-read=4126328/5242880 (78.70%)
+2019-01-31 11:31:27 1548934287.594303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4126855 total-bytes-write=52 payload-bytes-read=4126826/5242880 (78.71%)
+2019-01-31 11:31:27 1548934287.595152 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4130291 total-bytes-write=52 payload-bytes-read=4130262/5242880 (78.78%)
+2019-01-31 11:31:27 1548934287.652563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4138259 total-bytes-write=52 payload-bytes-read=4138230/5242880 (78.93%)
+2019-01-31 11:31:27 1548934287.659020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4142243 total-bytes-write=52 payload-bytes-read=4142214/5242880 (79.01%)
+2019-01-31 11:31:27 1548934287.660320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4142741 total-bytes-write=52 payload-bytes-read=4142712/5242880 (79.02%)
+2019-01-31 11:31:27 1548934287.662429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4146177 total-bytes-write=52 payload-bytes-read=4146148/5242880 (79.08%)
+2019-01-31 11:31:27 1548934287.663511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4148169 total-bytes-write=52 payload-bytes-read=4148140/5242880 (79.12%)
+2019-01-31 11:31:27 1548934287.665375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4151655 total-bytes-write=52 payload-bytes-read=4151626/5242880 (79.19%)
+2019-01-31 11:31:27 1548934287.666924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4155639 total-bytes-write=52 payload-bytes-read=4155610/5242880 (79.26%)
+2019-01-31 11:31:27 1548934287.675368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4159623 total-bytes-write=52 payload-bytes-read=4159594/5242880 (79.34%)
+2019-01-31 11:31:27 1548934287.720402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4175509 total-bytes-write=52 payload-bytes-read=4175480/5242880 (79.64%)
+2019-01-31 11:31:27 1548934287.768478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4223167 total-bytes-write=52 payload-bytes-read=4223138/5242880 (80.55%)
+2019-01-31 11:31:27 1548934287.821218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4227101 total-bytes-write=52 payload-bytes-read=4227072/5242880 (80.62%)
+2019-01-31 11:31:27 1548934287.822575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4231085 total-bytes-write=52 payload-bytes-read=4231056/5242880 (80.70%)
+2019-01-31 11:31:27 1548934287.824370 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4235069 total-bytes-write=52 payload-bytes-read=4235040/5242880 (80.78%)
+2019-01-31 11:31:27 1548934287.868477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4271323 total-bytes-write=52 payload-bytes-read=4271294/5242880 (81.47%)
+2019-01-31 11:31:27 1548934287.912425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4283225 total-bytes-write=52 payload-bytes-read=4283196/5242880 (81.70%)
+2019-01-31 11:31:27 1548934287.915874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4287209 total-bytes-write=52 payload-bytes-read=4287180/5242880 (81.77%)
+2019-01-31 11:31:27 1548934287.916415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4288703 total-bytes-write=52 payload-bytes-read=4288674/5242880 (81.80%)
+2019-01-31 11:31:27 1548934287.917524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4292637 total-bytes-write=52 payload-bytes-read=4292608/5242880 (81.88%)
+2019-01-31 11:31:27 1548934287.974493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4294131 total-bytes-write=52 payload-bytes-read=4294102/5242880 (81.90%)
+2019-01-31 11:31:28 1548934288.115774 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4297617 total-bytes-write=52 payload-bytes-read=4297588/5242880 (81.97%)
+2019-01-31 11:31:28 1548934288.117239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4301601 total-bytes-write=52 payload-bytes-read=4301572/5242880 (82.05%)
+2019-01-31 11:31:28 1548934288.120366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4305585 total-bytes-write=52 payload-bytes-read=4305556/5242880 (82.12%)
+2019-01-31 11:31:28 1548934288.164398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4315495 total-bytes-write=52 payload-bytes-read=4315466/5242880 (82.31%)
+2019-01-31 11:31:28 1548934288.231925 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4316491 total-bytes-write=52 payload-bytes-read=4316462/5242880 (82.33%)
+2019-01-31 11:31:28 1548934288.432136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4317487 total-bytes-write=52 payload-bytes-read=4317458/5242880 (82.35%)
+2019-01-31 11:31:28 1548934288.472392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4323463 total-bytes-write=52 payload-bytes-read=4323434/5242880 (82.46%)
+2019-01-31 11:31:28 1548934288.516433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4336859 total-bytes-write=52 payload-bytes-read=4336830/5242880 (82.72%)
+2019-01-31 11:31:28 1548934288.560423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4341341 total-bytes-write=52 payload-bytes-read=4341312/5242880 (82.80%)
+2019-01-31 11:31:28 1548934288.690516 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4347267 total-bytes-write=52 payload-bytes-read=4347238/5242880 (82.92%)
+2019-01-31 11:31:28 1548934288.690633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4351749 total-bytes-write=52 payload-bytes-read=4351720/5242880 (83.00%)
+2019-01-31 11:31:28 1548934288.690963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4359169 total-bytes-write=52 payload-bytes-read=4359140/5242880 (83.14%)
+2019-01-31 11:31:28 1548934288.691190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4365643 total-bytes-write=52 payload-bytes-read=4365614/5242880 (83.27%)
+2019-01-31 11:31:28 1548934288.691498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4373113 total-bytes-write=52 payload-bytes-read=4373084/5242880 (83.41%)
+2019-01-31 11:31:28 1548934288.691696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4378043 total-bytes-write=52 payload-bytes-read=4378014/5242880 (83.50%)
+2019-01-31 11:31:28 1548934288.730389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4381529 total-bytes-write=52 payload-bytes-read=4381500/5242880 (83.57%)
+2019-01-31 11:31:28 1548934288.774427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4385513 total-bytes-write=52 payload-bytes-read=4385484/5242880 (83.65%)
+2019-01-31 11:31:28 1548934288.812373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4386011 total-bytes-write=52 payload-bytes-read=4385982/5242880 (83.66%)
+2019-01-31 11:31:28 1548934288.813566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4389497 total-bytes-write=52 payload-bytes-read=4389468/5242880 (83.72%)
+2019-01-31 11:31:28 1548934288.814375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4392435 total-bytes-write=52 payload-bytes-read=4392406/5242880 (83.78%)
+2019-01-31 11:31:28 1548934288.855584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4395921 total-bytes-write=52 payload-bytes-read=4395892/5242880 (83.84%)
+2019-01-31 11:31:28 1548934288.896175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4400403 total-bytes-write=52 payload-bytes-read=4400374/5242880 (83.93%)
+2019-01-31 11:31:28 1548934288.896713 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4403889 total-bytes-write=52 payload-bytes-read=4403860/5242880 (84.00%)
+2019-01-31 11:31:28 1548934288.898805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4407325 total-bytes-write=52 payload-bytes-read=4407296/5242880 (84.06%)
+2019-01-31 11:31:28 1548934288.901852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4411807 total-bytes-write=52 payload-bytes-read=4411778/5242880 (84.15%)
+2019-01-31 11:31:28 1548934288.943328 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4415293 total-bytes-write=52 payload-bytes-read=4415264/5242880 (84.21%)
+2019-01-31 11:31:28 1548934288.945900 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4418779 total-bytes-write=52 payload-bytes-read=4418750/5242880 (84.28%)
+2019-01-31 11:31:28 1548934288.988442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4438151 total-bytes-write=52 payload-bytes-read=4438122/5242880 (84.65%)
+2019-01-31 11:31:29 1548934289.032385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4442085 total-bytes-write=52 payload-bytes-read=4442056/5242880 (84.73%)
+2019-01-31 11:31:29 1548934289.064076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4446069 total-bytes-write=52 payload-bytes-read=4446040/5242880 (84.80%)
+2019-01-31 11:31:29 1548934289.065338 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4450053 total-bytes-write=52 payload-bytes-read=4450024/5242880 (84.88%)
+2019-01-31 11:31:29 1548934289.108440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4466437 total-bytes-write=52 payload-bytes-read=4466408/5242880 (85.19%)
+2019-01-31 11:31:29 1548934289.152404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4477841 total-bytes-write=52 payload-bytes-read=4477812/5242880 (85.41%)
+2019-01-31 11:31:29 1548934289.152963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4482323 total-bytes-write=52 payload-bytes-read=4482294/5242880 (85.49%)
+2019-01-31 11:31:29 1548934289.154458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4485809 total-bytes-write=52 payload-bytes-read=4485780/5242880 (85.56%)
+2019-01-31 11:31:29 1548934289.155749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4489743 total-bytes-write=52 payload-bytes-read=4489714/5242880 (85.63%)
+2019-01-31 11:31:29 1548934289.157389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4493727 total-bytes-write=52 payload-bytes-read=4493698/5242880 (85.71%)
+2019-01-31 11:31:29 1548934289.194967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4498209 total-bytes-write=52 payload-bytes-read=4498180/5242880 (85.80%)
+2019-01-31 11:31:29 1548934289.228821 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4501695 total-bytes-write=52 payload-bytes-read=4501666/5242880 (85.86%)
+2019-01-31 11:31:29 1548934289.232639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4505629 total-bytes-write=52 payload-bytes-read=4505600/5242880 (85.94%)
+2019-01-31 11:31:29 1548934289.235178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4509613 total-bytes-write=52 payload-bytes-read=4509584/5242880 (86.01%)
+2019-01-31 11:31:29 1548934289.236541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4514095 total-bytes-write=52 payload-bytes-read=4514066/5242880 (86.10%)
+2019-01-31 11:31:29 1548934289.237966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4517581 total-bytes-write=52 payload-bytes-read=4517552/5242880 (86.17%)
+2019-01-31 11:31:29 1548934289.239244 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4521565 total-bytes-write=52 payload-bytes-read=4521536/5242880 (86.24%)
+2019-01-31 11:31:29 1548934289.240800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4525499 total-bytes-write=52 payload-bytes-read=4525470/5242880 (86.32%)
+2019-01-31 11:31:29 1548934289.278041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4529483 total-bytes-write=52 payload-bytes-read=4529454/5242880 (86.39%)
+2019-01-31 11:31:29 1548934289.278422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4529981 total-bytes-write=52 payload-bytes-read=4529952/5242880 (86.40%)
+2019-01-31 11:31:29 1548934289.313706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4533467 total-bytes-write=52 payload-bytes-read=4533438/5242880 (86.47%)
+2019-01-31 11:31:29 1548934289.316582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4537451 total-bytes-write=52 payload-bytes-read=4537422/5242880 (86.54%)
+2019-01-31 11:31:29 1548934289.317041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4537949 total-bytes-write=52 payload-bytes-read=4537920/5242880 (86.55%)
+2019-01-31 11:31:29 1548934289.318840 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4539891 total-bytes-write=52 payload-bytes-read=4539862/5242880 (86.59%)
+2019-01-31 11:31:29 1548934289.319177 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4541385 total-bytes-write=52 payload-bytes-read=4541356/5242880 (86.62%)
+2019-01-31 11:31:29 1548934289.399042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4542381 total-bytes-write=52 payload-bytes-read=4542352/5242880 (86.64%)
+2019-01-31 11:31:29 1548934289.400969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4545867 total-bytes-write=52 payload-bytes-read=4545838/5242880 (86.70%)
+2019-01-31 11:31:29 1548934289.445743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4549353 total-bytes-write=52 payload-bytes-read=4549324/5242880 (86.77%)
+2019-01-31 11:31:29 1548934289.488414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4565239 total-bytes-write=52 payload-bytes-read=4565210/5242880 (87.07%)
+2019-01-31 11:31:29 1548934289.532435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4567231 total-bytes-write=52 payload-bytes-read=4567202/5242880 (87.11%)
+2019-01-31 11:31:29 1548934289.749953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4570717 total-bytes-write=52 payload-bytes-read=4570688/5242880 (87.18%)
+2019-01-31 11:31:29 1548934289.771518 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4574153 total-bytes-write=52 payload-bytes-read=4574124/5242880 (87.24%)
+2019-01-31 11:31:29 1548934289.773362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4578137 total-bytes-write=52 payload-bytes-read=4578108/5242880 (87.32%)
+2019-01-31 11:31:29 1548934289.774966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4582121 total-bytes-write=52 payload-bytes-read=4582092/5242880 (87.40%)
+2019-01-31 11:31:29 1548934289.776441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4586105 total-bytes-write=52 payload-bytes-read=4586076/5242880 (87.47%)
+2019-01-31 11:31:29 1548934289.777467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4586603 total-bytes-write=52 payload-bytes-read=4586574/5242880 (87.48%)
+2019-01-31 11:31:29 1548934289.778636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4590039 total-bytes-write=52 payload-bytes-read=4590010/5242880 (87.55%)
+2019-01-31 11:31:29 1548934289.779836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4594023 total-bytes-write=52 payload-bytes-read=4593994/5242880 (87.62%)
+2019-01-31 11:31:29 1548934289.781960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4598007 total-bytes-write=52 payload-bytes-read=4597978/5242880 (87.70%)
+2019-01-31 11:31:29 1548934289.832186 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4601991 total-bytes-write=52 payload-bytes-read=4601962/5242880 (87.78%)
+2019-01-31 11:31:29 1548934289.832671 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4602489 total-bytes-write=52 payload-bytes-read=4602460/5242880 (87.78%)
+2019-01-31 11:31:29 1548934289.854656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4605925 total-bytes-write=52 payload-bytes-read=4605896/5242880 (87.85%)
+2019-01-31 11:31:29 1548934289.856547 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4609909 total-bytes-write=52 payload-bytes-read=4609880/5242880 (87.93%)
+2019-01-31 11:31:29 1548934289.858020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4613893 total-bytes-write=52 payload-bytes-read=4613864/5242880 (88.00%)
+2019-01-31 11:31:29 1548934289.862520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4618375 total-bytes-write=52 payload-bytes-read=4618346/5242880 (88.09%)
+2019-01-31 11:31:29 1548934289.868104 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4621811 total-bytes-write=52 payload-bytes-read=4621782/5242880 (88.15%)
+2019-01-31 11:31:29 1548934289.872342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4625795 total-bytes-write=52 payload-bytes-read=4625766/5242880 (88.23%)
+2019-01-31 11:31:29 1548934289.875191 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4629779 total-bytes-write=52 payload-bytes-read=4629750/5242880 (88.31%)
+2019-01-31 11:31:29 1548934289.916392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4637697 total-bytes-write=52 payload-bytes-read=4637668/5242880 (88.46%)
+2019-01-31 11:31:29 1548934289.960444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4666033 total-bytes-write=52 payload-bytes-read=4666004/5242880 (89.00%)
+2019-01-31 11:31:30 1548934290.004416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4673951 total-bytes-write=52 payload-bytes-read=4673922/5242880 (89.15%)
+2019-01-31 11:31:30 1548934290.004494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4674449 total-bytes-write=52 payload-bytes-read=4674420/5242880 (89.16%)
+2019-01-31 11:31:30 1548934290.020039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4677935 total-bytes-write=52 payload-bytes-read=4677906/5242880 (89.22%)
+2019-01-31 11:31:30 1548934290.023403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4681919 total-bytes-write=52 payload-bytes-read=4681890/5242880 (89.30%)
+2019-01-31 11:31:30 1548934290.026124 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4685853 total-bytes-write=52 payload-bytes-read=4685824/5242880 (89.38%)
+2019-01-31 11:31:30 1548934290.031403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4690335 total-bytes-write=52 payload-bytes-read=4690306/5242880 (89.46%)
+2019-01-31 11:31:30 1548934290.034327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4693821 total-bytes-write=52 payload-bytes-read=4693792/5242880 (89.53%)
+2019-01-31 11:31:30 1548934290.037693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4697805 total-bytes-write=52 payload-bytes-read=4697776/5242880 (89.60%)
+2019-01-31 11:31:30 1548934290.042892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4701789 total-bytes-write=52 payload-bytes-read=4701760/5242880 (89.68%)
+2019-01-31 11:31:30 1548934290.084424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4710205 total-bytes-write=52 payload-bytes-read=4710176/5242880 (89.84%)
+2019-01-31 11:31:30 1548934290.128445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4740483 total-bytes-write=52 payload-bytes-read=4740454/5242880 (90.42%)
+2019-01-31 11:31:30 1548934290.172441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4748451 total-bytes-write=52 payload-bytes-read=4748422/5242880 (90.57%)
+2019-01-31 11:31:30 1548934290.173966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4752883 total-bytes-write=52 payload-bytes-read=4752854/5242880 (90.65%)
+2019-01-31 11:31:30 1548934290.185944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4755871 total-bytes-write=52 payload-bytes-read=4755842/5242880 (90.71%)
+2019-01-31 11:31:30 1548934290.191944 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4759855 total-bytes-write=52 payload-bytes-read=4759826/5242880 (90.79%)
+2019-01-31 11:31:30 1548934290.195916 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4764337 total-bytes-write=52 payload-bytes-read=4764308/5242880 (90.87%)
+2019-01-31 11:31:30 1548934290.230715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4765831 total-bytes-write=52 payload-bytes-read=4765802/5242880 (90.90%)
+2019-01-31 11:31:30 1548934290.277817 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4769267 total-bytes-write=52 payload-bytes-read=4769238/5242880 (90.97%)
+2019-01-31 11:31:30 1548934290.282897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4772255 total-bytes-write=52 payload-bytes-read=4772226/5242880 (91.02%)
+2019-01-31 11:31:30 1548934290.289809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4775741 total-bytes-write=52 payload-bytes-read=4775712/5242880 (91.09%)
+2019-01-31 11:31:30 1548934290.299952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4779725 total-bytes-write=52 payload-bytes-read=4779696/5242880 (91.17%)
+2019-01-31 11:31:30 1548934290.308879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4781717 total-bytes-write=52 payload-bytes-read=4781688/5242880 (91.20%)
+2019-01-31 11:31:30 1548934290.312058 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4785153 total-bytes-write=52 payload-bytes-read=4785124/5242880 (91.27%)
+2019-01-31 11:31:30 1548934290.360231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4786647 total-bytes-write=52 payload-bytes-read=4786618/5242880 (91.30%)
+2019-01-31 11:31:30 1548934290.362298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4790133 total-bytes-write=52 payload-bytes-read=4790104/5242880 (91.36%)
+2019-01-31 11:31:30 1548934290.370322 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4791129 total-bytes-write=52 payload-bytes-read=4791100/5242880 (91.38%)
+2019-01-31 11:31:30 1548934290.372837 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4794615 total-bytes-write=52 payload-bytes-read=4794586/5242880 (91.45%)
+2019-01-31 11:31:30 1548934290.374570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4798599 total-bytes-write=52 payload-bytes-read=4798570/5242880 (91.53%)
+2019-01-31 11:31:30 1548934290.376942 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4802533 total-bytes-write=52 payload-bytes-read=4802504/5242880 (91.60%)
+2019-01-31 11:31:30 1548934290.382959 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4803031 total-bytes-write=52 payload-bytes-read=4803002/5242880 (91.61%)
+2019-01-31 11:31:30 1548934290.384419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4806517 total-bytes-write=52 payload-bytes-read=4806488/5242880 (91.68%)
+2019-01-31 11:31:30 1548934290.416811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4807015 total-bytes-write=52 payload-bytes-read=4806986/5242880 (91.69%)
+2019-01-31 11:31:30 1548934290.417808 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4810501 total-bytes-write=52 payload-bytes-read=4810472/5242880 (91.75%)
+2019-01-31 11:31:30 1548934290.419405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4814485 total-bytes-write=52 payload-bytes-read=4814456/5242880 (91.83%)
+2019-01-31 11:31:30 1548934290.420823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4818419 total-bytes-write=52 payload-bytes-read=4818390/5242880 (91.90%)
+2019-01-31 11:31:30 1548934290.421872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4822403 total-bytes-write=52 payload-bytes-read=4822374/5242880 (91.98%)
+2019-01-31 11:31:30 1548934290.422560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4822901 total-bytes-write=52 payload-bytes-read=4822872/5242880 (91.99%)
+2019-01-31 11:31:30 1548934290.423454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4825391 total-bytes-write=52 payload-bytes-read=4825362/5242880 (92.04%)
+2019-01-31 11:31:30 1548934290.454313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4828877 total-bytes-write=52 payload-bytes-read=4828848/5242880 (92.10%)
+2019-01-31 11:31:30 1548934290.481475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4832861 total-bytes-write=52 payload-bytes-read=4832832/5242880 (92.18%)
+2019-01-31 11:31:30 1548934290.483196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4836297 total-bytes-write=52 payload-bytes-read=4836268/5242880 (92.24%)
+2019-01-31 11:31:30 1548934290.566214 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4837293 total-bytes-write=52 payload-bytes-read=4837264/5242880 (92.26%)
+2019-01-31 11:31:30 1548934290.567496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4840281 total-bytes-write=52 payload-bytes-read=4840252/5242880 (92.32%)
+2019-01-31 11:31:30 1548934290.582422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4843767 total-bytes-write=52 payload-bytes-read=4843738/5242880 (92.39%)
+2019-01-31 11:31:30 1548934290.585735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4847253 total-bytes-write=52 payload-bytes-read=4847224/5242880 (92.45%)
+2019-01-31 11:31:30 1548934290.628412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4858657 total-bytes-write=52 payload-bytes-read=4858628/5242880 (92.67%)
+2019-01-31 11:31:30 1548934290.672445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4881017 total-bytes-write=52 payload-bytes-read=4880988/5242880 (93.10%)
+2019-01-31 11:31:30 1548934290.716413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4892421 total-bytes-write=52 payload-bytes-read=4892392/5242880 (93.31%)
+2019-01-31 11:31:30 1548934290.721442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4895907 total-bytes-write=52 payload-bytes-read=4895878/5242880 (93.38%)
+2019-01-31 11:31:30 1548934290.729037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4899841 total-bytes-write=52 payload-bytes-read=4899812/5242880 (93.46%)
+2019-01-31 11:31:30 1548934290.730407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4904323 total-bytes-write=52 payload-bytes-read=4904294/5242880 (93.54%)
+2019-01-31 11:31:30 1548934290.731779 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4912789 total-bytes-write=52 payload-bytes-read=4912760/5242880 (93.70%)
+2019-01-31 11:31:30 1548934290.751437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4913287 total-bytes-write=52 payload-bytes-read=4913258/5242880 (93.71%)
+2019-01-31 11:31:30 1548934290.752538 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4916723 total-bytes-write=52 payload-bytes-read=4916694/5242880 (93.78%)
+2019-01-31 11:31:30 1548934290.760456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4920209 total-bytes-write=52 payload-bytes-read=4920180/5242880 (93.84%)
+2019-01-31 11:31:30 1548934290.771632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4921205 total-bytes-write=52 payload-bytes-read=4921176/5242880 (93.86%)
+2019-01-31 11:31:30 1548934290.785452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4924691 total-bytes-write=52 payload-bytes-read=4924662/5242880 (93.93%)
+2019-01-31 11:31:30 1548934290.788083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4928675 total-bytes-write=52 payload-bytes-read=4928646/5242880 (94.01%)
+2019-01-31 11:31:30 1548934290.795962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4930169 total-bytes-write=52 payload-bytes-read=4930140/5242880 (94.03%)
+2019-01-31 11:31:30 1548934290.797165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4933605 total-bytes-write=52 payload-bytes-read=4933576/5242880 (94.10%)
+2019-01-31 11:31:30 1548934290.821254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4937091 total-bytes-write=52 payload-bytes-read=4937062/5242880 (94.17%)
+2019-01-31 11:31:30 1548934290.835017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4938087 total-bytes-write=52 payload-bytes-read=4938058/5242880 (94.19%)
+2019-01-31 11:31:30 1548934290.837176 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4941573 total-bytes-write=52 payload-bytes-read=4941544/5242880 (94.25%)
+2019-01-31 11:31:30 1548934290.839342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4945557 total-bytes-write=52 payload-bytes-read=4945528/5242880 (94.33%)
+2019-01-31 11:31:30 1548934290.841113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4949491 total-bytes-write=52 payload-bytes-read=4949462/5242880 (94.40%)
+2019-01-31 11:31:30 1548934290.842556 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4953475 total-bytes-write=52 payload-bytes-read=4953446/5242880 (94.48%)
+2019-01-31 11:31:30 1548934290.843563 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4953973 total-bytes-write=52 payload-bytes-read=4953944/5242880 (94.49%)
+2019-01-31 11:31:30 1548934290.846355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4957459 total-bytes-write=52 payload-bytes-read=4957430/5242880 (94.56%)
+2019-01-31 11:31:30 1548934290.851716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4961443 total-bytes-write=52 payload-bytes-read=4961414/5242880 (94.63%)
+2019-01-31 11:31:30 1548934290.854941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4965377 total-bytes-write=52 payload-bytes-read=4965348/5242880 (94.71%)
+2019-01-31 11:31:30 1548934290.855473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4966373 total-bytes-write=52 payload-bytes-read=4966344/5242880 (94.73%)
+2019-01-31 11:31:30 1548934290.870233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4969859 total-bytes-write=52 payload-bytes-read=4969830/5242880 (94.79%)
+2019-01-31 11:31:30 1548934290.871939 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4973843 total-bytes-write=52 payload-bytes-read=4973814/5242880 (94.87%)
+2019-01-31 11:31:30 1548934290.880195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4977827 total-bytes-write=52 payload-bytes-read=4977798/5242880 (94.94%)
+2019-01-31 11:31:30 1548934290.922264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4981875 total-bytes-write=52 payload-bytes-read=4981846/5242880 (95.02%)
+2019-01-31 11:31:30 1548934290.964380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=4987239 total-bytes-write=52 payload-bytes-read=4987210/5242880 (95.12%)
+2019-01-31 11:31:31 1548934291.008407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5001631 total-bytes-write=52 payload-bytes-read=5001602/5242880 (95.40%)
+2019-01-31 11:31:31 1548934291.052390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5007607 total-bytes-write=52 payload-bytes-read=5007578/5242880 (95.51%)
+2019-01-31 11:31:31 1548934291.052530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5011591 total-bytes-write=52 payload-bytes-read=5011562/5242880 (95.59%)
+2019-01-31 11:31:31 1548934291.105054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5012089 total-bytes-write=52 payload-bytes-read=5012060/5242880 (95.60%)
+2019-01-31 11:31:31 1548934291.106901 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5015525 total-bytes-write=52 payload-bytes-read=5015496/5242880 (95.66%)
+2019-01-31 11:31:31 1548934291.108145 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5019509 total-bytes-write=52 payload-bytes-read=5019480/5242880 (95.74%)
+2019-01-31 11:31:31 1548934291.109650 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5023493 total-bytes-write=52 payload-bytes-read=5023464/5242880 (95.81%)
+2019-01-31 11:31:31 1548934291.152389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5028473 total-bytes-write=52 payload-bytes-read=5028444/5242880 (95.91%)
+2019-01-31 11:31:31 1548934291.196400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5032905 total-bytes-write=52 payload-bytes-read=5032876/5242880 (95.99%)
+2019-01-31 11:31:31 1548934291.355003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5036391 total-bytes-write=52 payload-bytes-read=5036362/5242880 (96.06%)
+2019-01-31 11:31:31 1548934291.378537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5036889 total-bytes-write=52 payload-bytes-read=5036860/5242880 (96.07%)
+2019-01-31 11:31:31 1548934291.380355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5042367 total-bytes-write=52 payload-bytes-read=5042338/5242880 (96.17%)
+2019-01-31 11:31:31 1548934291.391428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5045853 total-bytes-write=52 payload-bytes-read=5045824/5242880 (96.24%)
+2019-01-31 11:31:31 1548934291.394924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5049787 total-bytes-write=52 payload-bytes-read=5049758/5242880 (96.32%)
+2019-01-31 11:31:31 1548934291.397634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5053771 total-bytes-write=52 payload-bytes-read=5053742/5242880 (96.39%)
+2019-01-31 11:31:31 1548934291.408110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5057257 total-bytes-write=52 payload-bytes-read=5057228/5242880 (96.46%)
+2019-01-31 11:31:31 1548934291.412051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5058253 total-bytes-write=52 payload-bytes-read=5058224/5242880 (96.48%)
+2019-01-31 11:31:31 1548934291.413173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5061739 total-bytes-write=52 payload-bytes-read=5061710/5242880 (96.54%)
+2019-01-31 11:31:31 1548934291.414612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5065673 total-bytes-write=52 payload-bytes-read=5065644/5242880 (96.62%)
+2019-01-31 11:31:31 1548934291.415556 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5068163 total-bytes-write=52 payload-bytes-read=5068134/5242880 (96.67%)
+2019-01-31 11:31:31 1548934291.426316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5071649 total-bytes-write=52 payload-bytes-read=5071620/5242880 (96.73%)
+2019-01-31 11:31:31 1548934291.427337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5075633 total-bytes-write=52 payload-bytes-read=5075604/5242880 (96.81%)
+2019-01-31 11:31:31 1548934291.431748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5079567 total-bytes-write=52 payload-bytes-read=5079538/5242880 (96.88%)
+2019-01-31 11:31:31 1548934291.437350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5083551 total-bytes-write=52 payload-bytes-read=5083522/5242880 (96.96%)
+2019-01-31 11:31:31 1548934291.464557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5084049 total-bytes-write=52 payload-bytes-read=5084020/5242880 (96.97%)
+2019-01-31 11:31:31 1548934291.464678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5085543 total-bytes-write=52 payload-bytes-read=5085514/5242880 (97.00%)
+2019-01-31 11:31:31 1548934291.538443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5086539 total-bytes-write=52 payload-bytes-read=5086510/5242880 (97.02%)
+2019-01-31 11:31:31 1548934291.540109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5090025 total-bytes-write=52 payload-bytes-read=5089996/5242880 (97.08%)
+2019-01-31 11:31:31 1548934291.540736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5092017 total-bytes-write=52 payload-bytes-read=5091988/5242880 (97.12%)
+2019-01-31 11:31:31 1548934291.547982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5096449 total-bytes-write=52 payload-bytes-read=5096420/5242880 (97.21%)
+2019-01-31 11:31:31 1548934291.548511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5098939 total-bytes-write=52 payload-bytes-read=5098910/5242880 (97.25%)
+2019-01-31 11:31:31 1548934291.558285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5102425 total-bytes-write=52 payload-bytes-read=5102396/5242880 (97.32%)
+2019-01-31 11:31:31 1548934291.560438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5110393 total-bytes-write=52 payload-bytes-read=5110364/5242880 (97.47%)
+2019-01-31 11:31:31 1548934291.564729 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5114327 total-bytes-write=52 payload-bytes-read=5114298/5242880 (97.55%)
+2019-01-31 11:31:31 1548934291.565046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5114825 total-bytes-write=52 payload-bytes-read=5114796/5242880 (97.56%)
+2019-01-31 11:31:31 1548934291.566436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5118311 total-bytes-write=52 payload-bytes-read=5118282/5242880 (97.62%)
+2019-01-31 11:31:31 1548934291.567013 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5119307 total-bytes-write=52 payload-bytes-read=5119278/5242880 (97.64%)
+2019-01-31 11:31:31 1548934291.568359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5122793 total-bytes-write=52 payload-bytes-read=5122764/5242880 (97.71%)
+2019-01-31 11:31:31 1548934291.570088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5126279 total-bytes-write=52 payload-bytes-read=5126250/5242880 (97.78%)
+2019-01-31 11:31:31 1548934291.612409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5132205 total-bytes-write=52 payload-bytes-read=5132176/5242880 (97.89%)
+2019-01-31 11:31:31 1548934291.656434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5158549 total-bytes-write=52 payload-bytes-read=5158520/5242880 (98.39%)
+2019-01-31 11:31:31 1548934291.700447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5184345 total-bytes-write=52 payload-bytes-read=5184316/5242880 (98.88%)
+2019-01-31 11:31:31 1548934291.707216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5187333 total-bytes-write=52 payload-bytes-read=5187304/5242880 (98.94%)
+2019-01-31 11:31:31 1548934291.709982 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5190819 total-bytes-write=52 payload-bytes-read=5190790/5242880 (99.01%)
+2019-01-31 11:31:31 1548934291.716856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5194753 total-bytes-write=52 payload-bytes-read=5194724/5242880 (99.08%)
+2019-01-31 11:31:31 1548934291.724791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5198737 total-bytes-write=52 payload-bytes-read=5198708/5242880 (99.16%)
+2019-01-31 11:31:31 1548934291.728489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5203219 total-bytes-write=52 payload-bytes-read=5203190/5242880 (99.24%)
+2019-01-31 11:31:31 1548934291.739068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5206705 total-bytes-write=52 payload-bytes-read=5206676/5242880 (99.31%)
+2019-01-31 11:31:31 1548934291.739335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5207701 total-bytes-write=52 payload-bytes-read=5207672/5242880 (99.33%)
+2019-01-31 11:31:31 1548934291.750655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5211137 total-bytes-write=52 payload-bytes-read=5211108/5242880 (99.39%)
+2019-01-31 11:31:31 1548934291.751578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5215121 total-bytes-write=52 payload-bytes-read=5215092/5242880 (99.47%)
+2019-01-31 11:31:31 1548934291.754687 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5219603 total-bytes-write=52 payload-bytes-read=5219574/5242880 (99.56%)
+2019-01-31 11:31:31 1548934291.754768 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5220599 total-bytes-write=52 payload-bytes-read=5220570/5242880 (99.57%)
+2019-01-31 11:31:31 1548934291.760349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5224085 total-bytes-write=52 payload-bytes-read=5224056/5242880 (99.64%)
+2019-01-31 11:31:31 1548934291.760656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5225081 total-bytes-write=52 payload-bytes-read=5225052/5242880 (99.66%)
+2019-01-31 11:31:31 1548934291.763044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5228517 total-bytes-write=52 payload-bytes-read=5228488/5242880 (99.73%)
+2019-01-31 11:31:31 1548934291.775864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5231505 total-bytes-write=52 payload-bytes-read=5231476/5242880 (99.78%)
+2019-01-31 11:31:31 1548934291.776475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5234991 total-bytes-write=52 payload-bytes-read=5234962/5242880 (99.85%)
+2019-01-31 11:31:31 1548934291.837067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5235987 total-bytes-write=52 payload-bytes-read=5235958/5242880 (99.87%)
+2019-01-31 11:31:31 1548934291.843999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5237481 total-bytes-write=52 payload-bytes-read=5237452/5242880 (99.90%)
+2019-01-31 11:31:31 1548934291.953718 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE total-bytes-read=5240967 total-bytes-write=52 payload-bytes-read=5240938/5242880 (99.96%)
+2019-01-31 11:31:32 1548934292.144594 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:31:32 1548934292.144715 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:31:32 1548934292.144780 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=SUCCESS,error=NONE MD5 checksums passed: computed=2316129dbffd554cb7c2ad6a8e920d90 received=2316129dbffd554cb7c2ad6a8e920d90
+2019-01-31 11:31:32 1548934292.144856 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,14,localhost:127.0.0.1:36436,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,5,phlox,GET,5242880,phlox,5,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=11 usecs-to-socket-connect=298 usecs-to-proxy-init=387 usecs-to-proxy-choice=470 usecs-to-proxy-request=546 usecs-to-proxy-response=-1 usecs-to-command=750228 usecs-to-response=1417838 usecs-to-first-byte=1459026 usecs-to-last-byte=19951352 usecs-to-checksum=19951451
+2019-01-31 11:31:32 1548934292.145009 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:31:32 1548934292.145065 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 14
+2019-01-31 11:31:32 1548934292.145145 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:31:32 1548934292.145210 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:31:32 1548934292.145263 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:31:32 1548934292.145337 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:31:32 1548934292.878091 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:31:32 1548934292.878175 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:31:32 1548934292.878227 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36440 through socks proxy localhost:127.0.0.1:29280 to 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080 successful
+2019-01-31 11:31:32 1548934292.878293 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:31:32 1548934292.878379 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,6,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:31:33 1548934293.393151 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:31:33 1548934293.393218 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:31:33 1548934293.510212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:31:33 1548934293.555686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=7499 total-bytes-write=52 payload-bytes-read=7470/5242880 (0.14%)
+2019-01-31 11:31:33 1548934293.556447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=8993 total-bytes-write=52 payload-bytes-read=8964/5242880 (0.17%)
+2019-01-31 11:31:33 1548934293.600557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=10985 total-bytes-write=52 payload-bytes-read=10956/5242880 (0.21%)
+2019-01-31 11:31:33 1548934293.602092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=14969 total-bytes-write=52 payload-bytes-read=14940/5242880 (0.28%)
+2019-01-31 11:31:33 1548934293.639377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=18903 total-bytes-write=52 payload-bytes-read=18874/5242880 (0.36%)
+2019-01-31 11:31:33 1548934293.684472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:31:33 1548934293.691057 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=26373 total-bytes-write=52 payload-bytes-read=26344/5242880 (0.50%)
+2019-01-31 11:31:33 1548934293.694477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=30357 total-bytes-write=52 payload-bytes-read=30328/5242880 (0.58%)
+2019-01-31 11:31:33 1548934293.698090 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=34789 total-bytes-write=52 payload-bytes-read=34760/5242880 (0.66%)
+2019-01-31 11:31:33 1548934293.723825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=37777 total-bytes-write=52 payload-bytes-read=37748/5242880 (0.72%)
+2019-01-31 11:31:33 1548934293.766187 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=41263 total-bytes-write=52 payload-bytes-read=41234/5242880 (0.79%)
+2019-01-31 11:31:33 1548934293.770106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=48235 total-bytes-write=52 payload-bytes-read=48206/5242880 (0.92%)
+2019-01-31 11:31:33 1548934293.776861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=51671 total-bytes-write=52 payload-bytes-read=51642/5242880 (0.98%)
+2019-01-31 11:31:33 1548934293.779038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=55655 total-bytes-write=52 payload-bytes-read=55626/5242880 (1.06%)
+2019-01-31 11:31:33 1548934293.783884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=59639 total-bytes-write=52 payload-bytes-read=59610/5242880 (1.14%)
+2019-01-31 11:31:33 1548934293.807038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=63125 total-bytes-write=52 payload-bytes-read=63096/5242880 (1.20%)
+2019-01-31 11:31:33 1548934293.853400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=66561 total-bytes-write=52 payload-bytes-read=66532/5242880 (1.27%)
+2019-01-31 11:31:33 1548934293.857166 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=70545 total-bytes-write=52 payload-bytes-read=70516/5242880 (1.34%)
+2019-01-31 11:31:33 1548934293.900446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=89917 total-bytes-write=52 payload-bytes-read=89888/5242880 (1.71%)
+2019-01-31 11:31:33 1548934293.944421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=100325 total-bytes-write=52 payload-bytes-read=100296/5242880 (1.91%)
+2019-01-31 11:31:33 1548934293.944784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=103811 total-bytes-write=52 payload-bytes-read=103782/5242880 (1.98%)
+2019-01-31 11:31:33 1548934293.947201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=107297 total-bytes-write=52 payload-bytes-read=107268/5242880 (2.05%)
+2019-01-31 11:31:33 1548934293.988424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=116709 total-bytes-write=52 payload-bytes-read=116680/5242880 (2.23%)
+2019-01-31 11:31:34 1548934294.032433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=134089 total-bytes-write=52 payload-bytes-read=134060/5242880 (2.56%)
+2019-01-31 11:31:34 1548934294.076454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=146539 total-bytes-write=52 payload-bytes-read=146510/5242880 (2.79%)
+2019-01-31 11:31:34 1548934294.110910 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=149477 total-bytes-write=52 payload-bytes-read=149448/5242880 (2.85%)
+2019-01-31 11:31:34 1548934294.112085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=152963 total-bytes-write=52 payload-bytes-read=152934/5242880 (2.92%)
+2019-01-31 11:31:34 1548934294.112777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=156947 total-bytes-write=52 payload-bytes-read=156918/5242880 (2.99%)
+2019-01-31 11:31:34 1548934294.114024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=160931 total-bytes-write=52 payload-bytes-read=160902/5242880 (3.07%)
+2019-01-31 11:31:34 1548934294.156436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=176319 total-bytes-write=52 payload-bytes-read=176290/5242880 (3.36%)
+2019-01-31 11:31:34 1548934294.200435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=193699 total-bytes-write=52 payload-bytes-read=193670/5242880 (3.69%)
+2019-01-31 11:31:34 1548934294.244437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=205103 total-bytes-write=52 payload-bytes-read=205074/5242880 (3.91%)
+2019-01-31 11:31:34 1548934294.278378 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=209585 total-bytes-write=52 payload-bytes-read=209556/5242880 (4.00%)
+2019-01-31 11:31:34 1548934294.278839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=213021 total-bytes-write=52 payload-bytes-read=212992/5242880 (4.06%)
+2019-01-31 11:31:34 1548934294.281059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=217005 total-bytes-write=52 payload-bytes-read=216976/5242880 (4.14%)
+2019-01-31 11:31:34 1548934294.282067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=220989 total-bytes-write=52 payload-bytes-read=220960/5242880 (4.21%)
+2019-01-31 11:31:34 1548934294.324398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=233389 total-bytes-write=52 payload-bytes-read=233360/5242880 (4.45%)
+2019-01-31 11:31:34 1548934294.368421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=237373 total-bytes-write=52 payload-bytes-read=237344/5242880 (4.53%)
+2019-01-31 11:31:34 1548934294.370366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=242353 total-bytes-write=52 payload-bytes-read=242324/5242880 (4.62%)
+2019-01-31 11:31:34 1548934294.370580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=247781 total-bytes-write=52 payload-bytes-read=247752/5242880 (4.73%)
+2019-01-31 11:31:34 1548934294.431882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:31:34 1548934294.478025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=258737 total-bytes-write=52 payload-bytes-read=258708/5242880 (4.93%)
+2019-01-31 11:31:34 1548934294.478109 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=262671 total-bytes-write=52 payload-bytes-read=262642/5242880 (5.01%)
+2019-01-31 11:31:34 1548934294.505454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=263169 total-bytes-write=52 payload-bytes-read=263140/5242880 (5.02%)
+2019-01-31 11:31:34 1548934294.508595 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=266655 total-bytes-write=52 payload-bytes-read=266626/5242880 (5.09%)
+2019-01-31 11:31:34 1548934294.508728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=270141 total-bytes-write=52 payload-bytes-read=270112/5242880 (5.15%)
+2019-01-31 11:31:34 1548934294.598047 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=270639 total-bytes-write=52 payload-bytes-read=270610/5242880 (5.16%)
+2019-01-31 11:31:34 1548934294.599283 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=274125 total-bytes-write=52 payload-bytes-read=274096/5242880 (5.23%)
+2019-01-31 11:31:34 1548934294.640433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:31:34 1548934294.684426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=302909 total-bytes-write=52 payload-bytes-read=302880/5242880 (5.78%)
+2019-01-31 11:31:34 1548934294.685220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=306893 total-bytes-write=52 payload-bytes-read=306864/5242880 (5.85%)
+2019-01-31 11:31:34 1548934294.686410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=309881 total-bytes-write=52 payload-bytes-read=309852/5242880 (5.91%)
+2019-01-31 11:31:34 1548934294.701969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=313317 total-bytes-write=52 payload-bytes-read=313288/5242880 (5.98%)
+2019-01-31 11:31:34 1548934294.702039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=315309 total-bytes-write=52 payload-bytes-read=315280/5242880 (6.01%)
+2019-01-31 11:31:34 1548934294.714184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=318795 total-bytes-write=52 payload-bytes-read=318766/5242880 (6.08%)
+2019-01-31 11:31:34 1548934294.725503 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=322281 total-bytes-write=52 payload-bytes-read=322252/5242880 (6.15%)
+2019-01-31 11:31:34 1548934294.768523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=339163 total-bytes-write=52 payload-bytes-read=339134/5242880 (6.47%)
+2019-01-31 11:31:34 1548934294.812444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=362967 total-bytes-write=52 payload-bytes-read=362938/5242880 (6.92%)
+2019-01-31 11:31:34 1548934294.856428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=376861 total-bytes-write=52 payload-bytes-read=376832/5242880 (7.19%)
+2019-01-31 11:31:34 1548934294.860631 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=379849 total-bytes-write=52 payload-bytes-read=379820/5242880 (7.24%)
+2019-01-31 11:31:34 1548934294.867299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=383335 total-bytes-write=52 payload-bytes-read=383306/5242880 (7.31%)
+2019-01-31 11:31:34 1548934294.868774 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=387319 total-bytes-write=52 payload-bytes-read=387290/5242880 (7.39%)
+2019-01-31 11:31:34 1548934294.880028 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=387817 total-bytes-write=52 payload-bytes-read=387788/5242880 (7.40%)
+2019-01-31 11:31:34 1548934294.892735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=391801 total-bytes-write=52 payload-bytes-read=391772/5242880 (7.47%)
+2019-01-31 11:31:34 1548934294.894554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=395237 total-bytes-write=52 payload-bytes-read=395208/5242880 (7.54%)
+2019-01-31 11:31:34 1548934294.906873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=399221 total-bytes-write=52 payload-bytes-read=399192/5242880 (7.61%)
+2019-01-31 11:31:34 1548934294.910759 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=403205 total-bytes-write=52 payload-bytes-read=403176/5242880 (7.69%)
+2019-01-31 11:31:34 1548934294.952427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=423573 total-bytes-write=52 payload-bytes-read=423544/5242880 (8.08%)
+2019-01-31 11:31:34 1548934294.996409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=440455 total-bytes-write=52 payload-bytes-read=440426/5242880 (8.40%)
+2019-01-31 11:31:35 1548934295.025999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=443891 total-bytes-write=52 payload-bytes-read=443862/5242880 (8.47%)
+2019-01-31 11:31:35 1548934295.050967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=444389 total-bytes-write=52 payload-bytes-read=444360/5242880 (8.48%)
+2019-01-31 11:31:35 1548934295.052060 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=447875 total-bytes-write=52 payload-bytes-read=447846/5242880 (8.54%)
+2019-01-31 11:31:35 1548934295.053362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=451859 total-bytes-write=52 payload-bytes-read=451830/5242880 (8.62%)
+2019-01-31 11:31:35 1548934295.054692 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=455843 total-bytes-write=52 payload-bytes-read=455814/5242880 (8.69%)
+2019-01-31 11:31:35 1548934295.096450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=479647 total-bytes-write=52 payload-bytes-read=479618/5242880 (9.15%)
+2019-01-31 11:31:35 1548934295.140409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=491101 total-bytes-write=52 payload-bytes-read=491072/5242880 (9.37%)
+2019-01-31 11:31:35 1548934295.147843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=493043 total-bytes-write=52 payload-bytes-read=493014/5242880 (9.40%)
+2019-01-31 11:31:35 1548934295.251968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=496031 total-bytes-write=52 payload-bytes-read=496002/5242880 (9.46%)
+2019-01-31 11:31:35 1548934295.420511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=502505 total-bytes-write=52 payload-bytes-read=502476/5242880 (9.58%)
+2019-01-31 11:31:35 1548934295.434898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=505991 total-bytes-write=52 payload-bytes-read=505962/5242880 (9.65%)
+2019-01-31 11:31:35 1548934295.435921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=509925 total-bytes-write=52 payload-bytes-read=509896/5242880 (9.73%)
+2019-01-31 11:31:35 1548934295.437554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=513909 total-bytes-write=52 payload-bytes-read=513880/5242880 (9.80%)
+2019-01-31 11:31:35 1548934295.441637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=514407 total-bytes-write=52 payload-bytes-read=514378/5242880 (9.81%)
+2019-01-31 11:31:35 1548934295.442792 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=517893 total-bytes-write=52 payload-bytes-read=517864/5242880 (9.88%)
+2019-01-31 11:31:35 1548934295.444130 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=521877 total-bytes-write=52 payload-bytes-read=521848/5242880 (9.95%)
+2019-01-31 11:31:35 1548934295.445391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=525811 total-bytes-write=52 payload-bytes-read=525782/5242880 (10.03%)
+2019-01-31 11:31:35 1548934295.447110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=529795 total-bytes-write=52 payload-bytes-read=529766/5242880 (10.10%)
+2019-01-31 11:31:35 1548934295.447466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=530293 total-bytes-write=52 payload-bytes-read=530264/5242880 (10.11%)
+2019-01-31 11:31:35 1548934295.449616 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=533779 total-bytes-write=52 payload-bytes-read=533750/5242880 (10.18%)
+2019-01-31 11:31:35 1548934295.454592 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=534775 total-bytes-write=52 payload-bytes-read=534746/5242880 (10.20%)
+2019-01-31 11:31:35 1548934295.516593 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=538261 total-bytes-write=52 payload-bytes-read=538232/5242880 (10.27%)
+2019-01-31 11:31:35 1548934295.518005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=539257 total-bytes-write=52 payload-bytes-read=539228/5242880 (10.28%)
+2019-01-31 11:31:35 1548934295.539027 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=542693 total-bytes-write=52 payload-bytes-read=542664/5242880 (10.35%)
+2019-01-31 11:31:35 1548934295.543404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=545681 total-bytes-write=52 payload-bytes-read=545652/5242880 (10.41%)
+2019-01-31 11:31:35 1548934295.562386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=549167 total-bytes-write=52 payload-bytes-read=549138/5242880 (10.47%)
+2019-01-31 11:31:35 1548934295.564764 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=553151 total-bytes-write=52 payload-bytes-read=553122/5242880 (10.55%)
+2019-01-31 11:31:35 1548934295.566192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=556139 total-bytes-write=52 payload-bytes-read=556110/5242880 (10.61%)
+2019-01-31 11:31:35 1548934295.572421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=559575 total-bytes-write=52 payload-bytes-read=559546/5242880 (10.67%)
+2019-01-31 11:31:35 1548934295.573750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=563559 total-bytes-write=52 payload-bytes-read=563530/5242880 (10.75%)
+2019-01-31 11:31:35 1548934295.576014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=567543 total-bytes-write=52 payload-bytes-read=567514/5242880 (10.82%)
+2019-01-31 11:31:35 1548934295.616392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=579445 total-bytes-write=52 payload-bytes-read=579416/5242880 (11.05%)
+2019-01-31 11:31:35 1548934295.660424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=600809 total-bytes-write=52 payload-bytes-read=600780/5242880 (11.46%)
+2019-01-31 11:31:35 1548934295.704421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=623617 total-bytes-write=52 payload-bytes-read=623588/5242880 (11.89%)
+2019-01-31 11:31:35 1548934295.748437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=644483 total-bytes-write=52 payload-bytes-read=644454/5242880 (12.29%)
+2019-01-31 11:31:35 1548934295.757341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=648965 total-bytes-write=52 payload-bytes-read=648936/5242880 (12.38%)
+2019-01-31 11:31:35 1548934295.758906 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=652451 total-bytes-write=52 payload-bytes-read=652422/5242880 (12.44%)
+2019-01-31 11:31:35 1548934295.761387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=656385 total-bytes-write=52 payload-bytes-read=656356/5242880 (12.52%)
+2019-01-31 11:31:35 1548934295.763449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=660369 total-bytes-write=52 payload-bytes-read=660340/5242880 (12.59%)
+2019-01-31 11:31:35 1548934295.764819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=663357 total-bytes-write=52 payload-bytes-read=663328/5242880 (12.65%)
+2019-01-31 11:31:35 1548934295.791921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=666843 total-bytes-write=52 payload-bytes-read=666814/5242880 (12.72%)
+2019-01-31 11:31:35 1548934295.811809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=670827 total-bytes-write=52 payload-bytes-read=670798/5242880 (12.79%)
+2019-01-31 11:31:35 1548934295.813009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=674761 total-bytes-write=52 payload-bytes-read=674732/5242880 (12.87%)
+2019-01-31 11:31:35 1548934295.819772 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=678247 total-bytes-write=52 payload-bytes-read=678218/5242880 (12.94%)
+2019-01-31 11:31:35 1548934295.827530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=681733 total-bytes-write=52 payload-bytes-read=681704/5242880 (13.00%)
+2019-01-31 11:31:35 1548934295.868421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=690149 total-bytes-write=52 payload-bytes-read=690120/5242880 (13.16%)
+2019-01-31 11:31:35 1548934295.934395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=697619 total-bytes-write=52 payload-bytes-read=697590/5242880 (13.31%)
+2019-01-31 11:31:35 1548934295.934544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=701603 total-bytes-write=52 payload-bytes-read=701574/5242880 (13.38%)
+2019-01-31 11:31:35 1548934295.978991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=705537 total-bytes-write=52 payload-bytes-read=705508/5242880 (13.46%)
+2019-01-31 11:31:35 1548934295.979719 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=710019 total-bytes-write=52 payload-bytes-read=709990/5242880 (13.54%)
+2019-01-31 11:31:35 1548934295.979966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=716493 total-bytes-write=52 payload-bytes-read=716464/5242880 (13.67%)
+2019-01-31 11:31:35 1548934295.980330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=724411 total-bytes-write=52 payload-bytes-read=724382/5242880 (13.82%)
+2019-01-31 11:31:35 1548934295.980502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=728893 total-bytes-write=52 payload-bytes-read=728864/5242880 (13.90%)
+2019-01-31 11:31:35 1548934295.980695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=733375 total-bytes-write=52 payload-bytes-read=733346/5242880 (13.99%)
+2019-01-31 11:31:35 1548934295.980856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=737309 total-bytes-write=52 payload-bytes-read=737280/5242880 (14.06%)
+2019-01-31 11:31:36 1548934296.003086 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=743783 total-bytes-write=52 payload-bytes-read=743754/5242880 (14.19%)
+2019-01-31 11:31:36 1548934296.003163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=744281 total-bytes-write=52 payload-bytes-read=744252/5242880 (14.20%)
+2019-01-31 11:31:36 1548934296.086612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=747767 total-bytes-write=52 payload-bytes-read=747738/5242880 (14.26%)
+2019-01-31 11:31:36 1548934296.088242 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=751751 total-bytes-write=52 payload-bytes-read=751722/5242880 (14.34%)
+2019-01-31 11:31:36 1548934296.171991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=756681 total-bytes-write=52 payload-bytes-read=756652/5242880 (14.43%)
+2019-01-31 11:31:36 1548934296.172184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=762657 total-bytes-write=52 payload-bytes-read=762628/5242880 (14.55%)
+2019-01-31 11:31:36 1548934296.241457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=763653 total-bytes-write=52 payload-bytes-read=763624/5242880 (14.56%)
+2019-01-31 11:31:36 1548934296.244088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=767139 total-bytes-write=52 payload-bytes-read=767110/5242880 (14.63%)
+2019-01-31 11:31:36 1548934296.250374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=767637 total-bytes-write=52 payload-bytes-read=767608/5242880 (14.64%)
+2019-01-31 11:31:36 1548934296.251119 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=771073 total-bytes-write=52 payload-bytes-read=771044/5242880 (14.71%)
+2019-01-31 11:31:36 1548934296.282494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=773563 total-bytes-write=52 payload-bytes-read=773534/5242880 (14.75%)
+2019-01-31 11:31:36 1548934296.283511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=777049 total-bytes-write=52 payload-bytes-read=777020/5242880 (14.82%)
+2019-01-31 11:31:36 1548934296.284671 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=781033 total-bytes-write=52 payload-bytes-read=781004/5242880 (14.90%)
+2019-01-31 11:31:36 1548934296.286439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=784519 total-bytes-write=52 payload-bytes-read=784490/5242880 (14.96%)
+2019-01-31 11:31:36 1548934296.342031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=788453 total-bytes-write=52 payload-bytes-read=788424/5242880 (15.04%)
+2019-01-31 11:31:36 1548934296.342131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=789449 total-bytes-write=52 payload-bytes-read=789420/5242880 (15.06%)
+2019-01-31 11:31:36 1548934296.343429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=792935 total-bytes-write=52 payload-bytes-read=792906/5242880 (15.12%)
+2019-01-31 11:31:36 1548934296.402496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=793931 total-bytes-write=52 payload-bytes-read=793902/5242880 (15.14%)
+2019-01-31 11:31:36 1548934296.403707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=797417 total-bytes-write=52 payload-bytes-read=797388/5242880 (15.21%)
+2019-01-31 11:31:36 1548934296.405252 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=801401 total-bytes-write=52 payload-bytes-read=801372/5242880 (15.28%)
+2019-01-31 11:31:36 1548934296.406704 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=805335 total-bytes-write=52 payload-bytes-read=805306/5242880 (15.36%)
+2019-01-31 11:31:36 1548934296.408333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=809319 total-bytes-write=52 payload-bytes-read=809290/5242880 (15.44%)
+2019-01-31 11:31:36 1548934296.408577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=809817 total-bytes-write=52 payload-bytes-read=809788/5242880 (15.45%)
+2019-01-31 11:31:36 1548934296.425281 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=813303 total-bytes-write=52 payload-bytes-read=813274/5242880 (15.51%)
+2019-01-31 11:31:36 1548934296.427649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=816789 total-bytes-write=52 payload-bytes-read=816760/5242880 (15.58%)
+2019-01-31 11:31:36 1548934296.488262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=820837 total-bytes-write=52 payload-bytes-read=820808/5242880 (15.66%)
+2019-01-31 11:31:36 1548934296.528414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=841091 total-bytes-write=52 payload-bytes-read=841062/5242880 (16.04%)
+2019-01-31 11:31:36 1548934296.572395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=848561 total-bytes-write=52 payload-bytes-read=848532/5242880 (16.18%)
+2019-01-31 11:31:36 1548934296.572496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=850553 total-bytes-write=52 payload-bytes-read=850524/5242880 (16.22%)
+2019-01-31 11:31:36 1548934296.573182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=854985 total-bytes-write=52 payload-bytes-read=854956/5242880 (16.31%)
+2019-01-31 11:31:36 1548934296.576018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=858471 total-bytes-write=52 payload-bytes-read=858442/5242880 (16.37%)
+2019-01-31 11:31:36 1548934296.577038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=862455 total-bytes-write=52 payload-bytes-read=862426/5242880 (16.45%)
+2019-01-31 11:31:36 1548934296.609688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=866439 total-bytes-write=52 payload-bytes-read=866410/5242880 (16.53%)
+2019-01-31 11:31:36 1548934296.652423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=870871 total-bytes-write=52 payload-bytes-read=870842/5242880 (16.61%)
+2019-01-31 11:31:36 1548934296.696445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=889745 total-bytes-write=52 payload-bytes-read=889716/5242880 (16.97%)
+2019-01-31 11:31:36 1548934296.740432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=901647 total-bytes-write=52 payload-bytes-read=901618/5242880 (17.20%)
+2019-01-31 11:31:36 1548934296.743079 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=905133 total-bytes-write=52 payload-bytes-read=905104/5242880 (17.26%)
+2019-01-31 11:31:36 1548934296.745229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=909117 total-bytes-write=52 payload-bytes-read=909088/5242880 (17.34%)
+2019-01-31 11:31:36 1548934296.746829 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=913101 total-bytes-write=52 payload-bytes-read=913072/5242880 (17.42%)
+2019-01-31 11:31:36 1548934296.788400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=921517 total-bytes-write=52 payload-bytes-read=921488/5242880 (17.58%)
+2019-01-31 11:31:36 1548934296.832439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=940889 total-bytes-write=52 payload-bytes-read=940860/5242880 (17.95%)
+2019-01-31 11:31:36 1548934296.876410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=956277 total-bytes-write=52 payload-bytes-read=956248/5242880 (18.24%)
+2019-01-31 11:31:36 1548934296.882824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=960759 total-bytes-write=52 payload-bytes-read=960730/5242880 (18.32%)
+2019-01-31 11:31:36 1548934296.913183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=962253 total-bytes-write=52 payload-bytes-read=962224/5242880 (18.35%)
+2019-01-31 11:31:36 1548934296.914553 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=965739 total-bytes-write=52 payload-bytes-read=965710/5242880 (18.42%)
+2019-01-31 11:31:36 1548934296.915491 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=969673 total-bytes-write=52 payload-bytes-read=969644/5242880 (18.49%)
+2019-01-31 11:31:36 1548934296.916231 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=973657 total-bytes-write=52 payload-bytes-read=973628/5242880 (18.57%)
+2019-01-31 11:31:36 1548934296.919576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=978139 total-bytes-write=52 payload-bytes-read=978110/5242880 (18.66%)
+2019-01-31 11:31:36 1548934296.919663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=982123 total-bytes-write=52 payload-bytes-read=982094/5242880 (18.73%)
+2019-01-31 11:31:36 1548934296.919780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=985559 total-bytes-write=52 payload-bytes-read=985530/5242880 (18.80%)
+2019-01-31 11:31:36 1548934296.960060 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=986555 total-bytes-write=52 payload-bytes-read=986526/5242880 (18.82%)
+2019-01-31 11:31:36 1548934296.968669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=992531 total-bytes-write=52 payload-bytes-read=992502/5242880 (18.93%)
+2019-01-31 11:31:36 1548934296.999604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1000449 total-bytes-write=52 payload-bytes-read=1000420/5242880 (19.08%)
+2019-01-31 11:31:37 1548934297.000299 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1002441 total-bytes-write=52 payload-bytes-read=1002412/5242880 (19.12%)
+2019-01-31 11:31:37 1548934297.001823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1006923 total-bytes-write=52 payload-bytes-read=1006894/5242880 (19.20%)
+2019-01-31 11:31:37 1548934297.003031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1010409 total-bytes-write=52 payload-bytes-read=1010380/5242880 (19.27%)
+2019-01-31 11:31:37 1548934297.003397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1011405 total-bytes-write=52 payload-bytes-read=1011376/5242880 (19.29%)
+2019-01-31 11:31:37 1548934297.004014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1014891 total-bytes-write=52 payload-bytes-read=1014862/5242880 (19.36%)
+2019-01-31 11:31:37 1548934297.042333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1018825 total-bytes-write=52 payload-bytes-read=1018796/5242880 (19.43%)
+2019-01-31 11:31:37 1548934297.050920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1022809 total-bytes-write=52 payload-bytes-read=1022780/5242880 (19.51%)
+2019-01-31 11:31:37 1548934297.051169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1027291 total-bytes-write=52 payload-bytes-read=1027262/5242880 (19.59%)
+2019-01-31 11:31:37 1548934297.085195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1030777 total-bytes-write=52 payload-bytes-read=1030748/5242880 (19.66%)
+2019-01-31 11:31:37 1548934297.085276 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1034213 total-bytes-write=52 payload-bytes-read=1034184/5242880 (19.73%)
+2019-01-31 11:31:37 1548934297.087375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1036703 total-bytes-write=52 payload-bytes-read=1036674/5242880 (19.77%)
+2019-01-31 11:31:37 1548934297.088929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1040687 total-bytes-write=52 payload-bytes-read=1040658/5242880 (19.85%)
+2019-01-31 11:31:37 1548934297.139779 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1042181 total-bytes-write=52 payload-bytes-read=1042152/5242880 (19.88%)
+2019-01-31 11:31:37 1548934297.459436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1045667 total-bytes-write=52 payload-bytes-read=1045638/5242880 (19.94%)
+2019-01-31 11:31:37 1548934297.476498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1049103 total-bytes-write=52 payload-bytes-read=1049074/5242880 (20.01%)
+2019-01-31 11:31:37 1548934297.484478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1052091 total-bytes-write=52 payload-bytes-read=1052062/5242880 (20.07%)
+2019-01-31 11:31:37 1548934297.492034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1055577 total-bytes-write=52 payload-bytes-read=1055548/5242880 (20.13%)
+2019-01-31 11:31:37 1548934297.521931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1060059 total-bytes-write=52 payload-bytes-read=1060030/5242880 (20.22%)
+2019-01-31 11:31:37 1548934297.522011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1063545 total-bytes-write=52 payload-bytes-read=1063516/5242880 (20.28%)
+2019-01-31 11:31:37 1548934297.526733 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1064541 total-bytes-write=52 payload-bytes-read=1064512/5242880 (20.30%)
+2019-01-31 11:31:37 1548934297.527628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1067977 total-bytes-write=52 payload-bytes-read=1067948/5242880 (20.37%)
+2019-01-31 11:31:37 1548934297.528537 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1071961 total-bytes-write=52 payload-bytes-read=1071932/5242880 (20.45%)
+2019-01-31 11:31:37 1548934297.551873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1075447 total-bytes-write=52 payload-bytes-read=1075418/5242880 (20.51%)
+2019-01-31 11:31:37 1548934297.552560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1079431 total-bytes-write=52 payload-bytes-read=1079402/5242880 (20.59%)
+2019-01-31 11:31:37 1548934297.596312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1083863 total-bytes-write=52 payload-bytes-read=1083834/5242880 (20.67%)
+2019-01-31 11:31:37 1548934297.598292 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1091831 total-bytes-write=52 payload-bytes-read=1091802/5242880 (20.82%)
+2019-01-31 11:31:37 1548934297.606077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1095317 total-bytes-write=52 payload-bytes-read=1095288/5242880 (20.89%)
+2019-01-31 11:31:37 1548934297.624558 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1098753 total-bytes-write=52 payload-bytes-read=1098724/5242880 (20.96%)
+2019-01-31 11:31:37 1548934297.719878 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1106223 total-bytes-write=52 payload-bytes-read=1106194/5242880 (21.10%)
+2019-01-31 11:31:37 1548934297.773786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1114141 total-bytes-write=52 payload-bytes-read=1114112/5242880 (21.25%)
+2019-01-31 11:31:37 1548934297.773882 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1118125 total-bytes-write=52 payload-bytes-read=1118096/5242880 (21.33%)
+2019-01-31 11:31:37 1548934297.774084 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1123603 total-bytes-write=52 payload-bytes-read=1123574/5242880 (21.43%)
+2019-01-31 11:31:37 1548934297.774282 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1131023 total-bytes-write=52 payload-bytes-read=1130994/5242880 (21.57%)
+2019-01-31 11:31:37 1548934297.774410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1135505 total-bytes-write=52 payload-bytes-read=1135476/5242880 (21.66%)
+2019-01-31 11:31:37 1548934297.802037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1139489 total-bytes-write=52 payload-bytes-read=1139460/5242880 (21.73%)
+2019-01-31 11:31:37 1548934297.878401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1143473 total-bytes-write=52 payload-bytes-read=1143444/5242880 (21.81%)
+2019-01-31 11:31:37 1548934297.920390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1150893 total-bytes-write=52 payload-bytes-read=1150864/5242880 (21.95%)
+2019-01-31 11:31:37 1548934297.964380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1158363 total-bytes-write=52 payload-bytes-read=1158334/5242880 (22.09%)
+2019-01-31 11:31:38 1548934298.008405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1170265 total-bytes-write=52 payload-bytes-read=1170236/5242880 (22.32%)
+2019-01-31 11:31:38 1548934298.052408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1182665 total-bytes-write=52 payload-bytes-read=1182636/5242880 (22.56%)
+2019-01-31 11:31:38 1548934298.096413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1191131 total-bytes-write=52 payload-bytes-read=1191102/5242880 (22.72%)
+2019-01-31 11:31:38 1548934298.128508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1194617 total-bytes-write=52 payload-bytes-read=1194588/5242880 (22.78%)
+2019-01-31 11:31:38 1548934298.129456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1198551 total-bytes-write=52 payload-bytes-read=1198522/5242880 (22.86%)
+2019-01-31 11:31:38 1548934298.131715 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1202535 total-bytes-write=52 payload-bytes-read=1202506/5242880 (22.94%)
+2019-01-31 11:31:38 1548934298.145311 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1206021 total-bytes-write=52 payload-bytes-read=1205992/5242880 (23.00%)
+2019-01-31 11:31:38 1548934298.146136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1210005 total-bytes-write=52 payload-bytes-read=1209976/5242880 (23.08%)
+2019-01-31 11:31:38 1548934298.183693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1213939 total-bytes-write=52 payload-bytes-read=1213910/5242880 (23.15%)
+2019-01-31 11:31:38 1548934298.213356 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1218421 total-bytes-write=52 payload-bytes-read=1218392/5242880 (23.24%)
+2019-01-31 11:31:38 1548934298.214787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1221907 total-bytes-write=52 payload-bytes-read=1221878/5242880 (23.31%)
+2019-01-31 11:31:38 1548934298.226788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1225891 total-bytes-write=52 payload-bytes-read=1225862/5242880 (23.38%)
+2019-01-31 11:31:38 1548934298.227082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1227883 total-bytes-write=52 payload-bytes-read=1227854/5242880 (23.42%)
+2019-01-31 11:31:38 1548934298.229836 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1231319 total-bytes-write=52 payload-bytes-read=1231290/5242880 (23.48%)
+2019-01-31 11:31:38 1548934298.266251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1234805 total-bytes-write=52 payload-bytes-read=1234776/5242880 (23.55%)
+2019-01-31 11:31:38 1548934298.299001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1240781 total-bytes-write=52 payload-bytes-read=1240752/5242880 (23.67%)
+2019-01-31 11:31:38 1548934298.302049 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1248201 total-bytes-write=52 payload-bytes-read=1248172/5242880 (23.81%)
+2019-01-31 11:31:38 1548934298.311428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1251687 total-bytes-write=52 payload-bytes-read=1251658/5242880 (23.87%)
+2019-01-31 11:31:38 1548934298.313147 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1255671 total-bytes-write=52 payload-bytes-read=1255642/5242880 (23.95%)
+2019-01-31 11:31:38 1548934298.349174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1259157 total-bytes-write=52 payload-bytes-read=1259128/5242880 (24.02%)
+2019-01-31 11:31:38 1548934298.382734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1262593 total-bytes-write=52 payload-bytes-read=1262564/5242880 (24.08%)
+2019-01-31 11:31:38 1548934298.383910 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1266577 total-bytes-write=52 payload-bytes-read=1266548/5242880 (24.16%)
+2019-01-31 11:31:38 1548934298.387957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1269067 total-bytes-write=52 payload-bytes-read=1269038/5242880 (24.20%)
+2019-01-31 11:31:38 1548934298.389164 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1272553 total-bytes-write=52 payload-bytes-read=1272524/5242880 (24.27%)
+2019-01-31 11:31:38 1548934298.395648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1276537 total-bytes-write=52 payload-bytes-read=1276508/5242880 (24.35%)
+2019-01-31 11:31:38 1548934298.403583 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1281467 total-bytes-write=52 payload-bytes-read=1281438/5242880 (24.44%)
+2019-01-31 11:31:38 1548934298.432513 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1284455 total-bytes-write=52 payload-bytes-read=1284426/5242880 (24.50%)
+2019-01-31 11:31:38 1548934298.469837 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1287941 total-bytes-write=52 payload-bytes-read=1287912/5242880 (24.56%)
+2019-01-31 11:31:38 1548934298.470376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1290431 total-bytes-write=52 payload-bytes-read=1290402/5242880 (24.61%)
+2019-01-31 11:31:38 1548934298.472639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1293917 total-bytes-write=52 payload-bytes-read=1293888/5242880 (24.68%)
+2019-01-31 11:31:38 1548934298.473290 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1297353 total-bytes-write=52 payload-bytes-read=1297324/5242880 (24.74%)
+2019-01-31 11:31:38 1548934298.477705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1300839 total-bytes-write=52 payload-bytes-read=1300810/5242880 (24.81%)
+2019-01-31 11:31:38 1548934298.479652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1305321 total-bytes-write=52 payload-bytes-read=1305292/5242880 (24.90%)
+2019-01-31 11:31:38 1548934298.514879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1308807 total-bytes-write=52 payload-bytes-read=1308778/5242880 (24.96%)
+2019-01-31 11:31:38 1548934298.515046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1309803 total-bytes-write=52 payload-bytes-read=1309774/5242880 (24.98%)
+2019-01-31 11:31:38 1548934298.553336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1313239 total-bytes-write=52 payload-bytes-read=1313210/5242880 (25.05%)
+2019-01-31 11:31:38 1548934298.555623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1317223 total-bytes-write=52 payload-bytes-read=1317194/5242880 (25.12%)
+2019-01-31 11:31:38 1548934298.556898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1318717 total-bytes-write=52 payload-bytes-read=1318688/5242880 (25.15%)
+2019-01-31 11:31:38 1548934298.557805 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1322203 total-bytes-write=52 payload-bytes-read=1322174/5242880 (25.22%)
+2019-01-31 11:31:38 1548934298.559038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1327631 total-bytes-write=52 payload-bytes-read=1327602/5242880 (25.32%)
+2019-01-31 11:31:38 1548934298.656105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1335101 total-bytes-write=52 payload-bytes-read=1335072/5242880 (25.46%)
+2019-01-31 11:31:38 1548934298.656189 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1338587 total-bytes-write=52 payload-bytes-read=1338558/5242880 (25.53%)
+2019-01-31 11:31:38 1548934298.656516 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1343517 total-bytes-write=52 payload-bytes-read=1343488/5242880 (25.62%)
+2019-01-31 11:31:38 1548934298.656785 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1350489 total-bytes-write=52 payload-bytes-read=1350460/5242880 (25.76%)
+2019-01-31 11:31:38 1548934298.657107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1358457 total-bytes-write=52 payload-bytes-read=1358428/5242880 (25.91%)
+2019-01-31 11:31:38 1548934298.739657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1361893 total-bytes-write=52 payload-bytes-read=1361864/5242880 (25.98%)
+2019-01-31 11:31:38 1548934298.821442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1365877 total-bytes-write=52 payload-bytes-read=1365848/5242880 (26.05%)
+2019-01-31 11:31:38 1548934298.863523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1369861 total-bytes-write=52 payload-bytes-read=1369832/5242880 (26.13%)
+2019-01-31 11:31:38 1548934298.913319 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1373909 total-bytes-write=52 payload-bytes-read=1373880/5242880 (26.20%)
+2019-01-31 11:31:38 1548934298.956403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1383755 total-bytes-write=52 payload-bytes-read=1383726/5242880 (26.39%)
+2019-01-31 11:31:39 1548934299.002330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1387241 total-bytes-write=52 payload-bytes-read=1387212/5242880 (26.46%)
+2019-01-31 11:31:39 1548934299.003017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1389731 total-bytes-write=52 payload-bytes-read=1389702/5242880 (26.51%)
+2019-01-31 11:31:39 1548934299.003149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1392669 total-bytes-write=52 payload-bytes-read=1392640/5242880 (26.56%)
+2019-01-31 11:31:39 1548934299.032467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1396155 total-bytes-write=52 payload-bytes-read=1396126/5242880 (26.63%)
+2019-01-31 11:31:39 1548934299.085219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1400139 total-bytes-write=52 payload-bytes-read=1400110/5242880 (26.70%)
+2019-01-31 11:31:39 1548934299.086364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1404123 total-bytes-write=52 payload-bytes-read=1404094/5242880 (26.78%)
+2019-01-31 11:31:39 1548934299.128407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1415029 total-bytes-write=52 payload-bytes-read=1415000/5242880 (26.99%)
+2019-01-31 11:31:39 1548934299.172395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1422997 total-bytes-write=52 payload-bytes-read=1422968/5242880 (27.14%)
+2019-01-31 11:31:39 1548934299.172869 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1426931 total-bytes-write=52 payload-bytes-read=1426902/5242880 (27.22%)
+2019-01-31 11:31:39 1548934299.208141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1430915 total-bytes-write=52 payload-bytes-read=1430886/5242880 (27.29%)
+2019-01-31 11:31:39 1548934299.254627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1434899 total-bytes-write=52 payload-bytes-read=1434870/5242880 (27.37%)
+2019-01-31 11:31:39 1548934299.296409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1448295 total-bytes-write=52 payload-bytes-read=1448266/5242880 (27.62%)
+2019-01-31 11:31:39 1548934299.340402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1456761 total-bytes-write=52 payload-bytes-read=1456732/5242880 (27.78%)
+2019-01-31 11:31:39 1548934299.340914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1460197 total-bytes-write=52 payload-bytes-read=1460168/5242880 (27.85%)
+2019-01-31 11:31:39 1548934299.376423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1464181 total-bytes-write=52 payload-bytes-read=1464152/5242880 (27.93%)
+2019-01-31 11:31:39 1548934299.377576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1467667 total-bytes-write=52 payload-bytes-read=1467638/5242880 (27.99%)
+2019-01-31 11:31:39 1548934299.422474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1471651 total-bytes-write=52 payload-bytes-read=1471622/5242880 (28.07%)
+2019-01-31 11:31:39 1548934299.425097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1477577 total-bytes-write=52 payload-bytes-read=1477548/5242880 (28.18%)
+2019-01-31 11:31:39 1548934299.425741 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1481063 total-bytes-write=52 payload-bytes-read=1481034/5242880 (28.25%)
+2019-01-31 11:31:39 1548934299.460605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1485047 total-bytes-write=52 payload-bytes-read=1485018/5242880 (28.32%)
+2019-01-31 11:31:39 1548934299.501801 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1489031 total-bytes-write=52 payload-bytes-read=1489002/5242880 (28.40%)
+2019-01-31 11:31:39 1548934299.544439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1506909 total-bytes-write=52 payload-bytes-read=1506880/5242880 (28.74%)
+2019-01-31 11:31:39 1548934299.588391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1514329 total-bytes-write=52 payload-bytes-read=1514300/5242880 (28.88%)
+2019-01-31 11:31:39 1548934299.594375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1518313 total-bytes-write=52 payload-bytes-read=1518284/5242880 (28.96%)
+2019-01-31 11:31:39 1548934299.595865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1524737 total-bytes-write=52 payload-bytes-read=1524708/5242880 (29.08%)
+2019-01-31 11:31:39 1548934299.595973 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1528721 total-bytes-write=52 payload-bytes-read=1528692/5242880 (29.16%)
+2019-01-31 11:31:39 1548934299.630066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1532207 total-bytes-write=52 payload-bytes-read=1532178/5242880 (29.22%)
+2019-01-31 11:31:39 1548934299.668621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1535195 total-bytes-write=52 payload-bytes-read=1535166/5242880 (29.28%)
+2019-01-31 11:31:39 1548934299.679107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1538681 total-bytes-write=52 payload-bytes-read=1538652/5242880 (29.35%)
+2019-01-31 11:31:39 1548934299.680390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1543611 total-bytes-write=52 payload-bytes-read=1543582/5242880 (29.44%)
+2019-01-31 11:31:39 1548934299.681475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1551579 total-bytes-write=52 payload-bytes-read=1551550/5242880 (29.59%)
+2019-01-31 11:31:39 1548934299.714269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1555563 total-bytes-write=52 payload-bytes-read=1555534/5242880 (29.67%)
+2019-01-31 11:31:39 1548934299.751586 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1558999 total-bytes-write=52 payload-bytes-read=1558970/5242880 (29.73%)
+2019-01-31 11:31:39 1548934299.752664 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1562485 total-bytes-write=52 payload-bytes-read=1562456/5242880 (29.80%)
+2019-01-31 11:31:39 1548934299.764710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1566469 total-bytes-write=52 payload-bytes-read=1566440/5242880 (29.88%)
+2019-01-31 11:31:39 1548934299.765338 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1568461 total-bytes-write=52 payload-bytes-read=1568432/5242880 (29.92%)
+2019-01-31 11:31:39 1548934299.765922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1571947 total-bytes-write=52 payload-bytes-read=1571918/5242880 (29.98%)
+2019-01-31 11:31:39 1548934299.767742 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1575383 total-bytes-write=52 payload-bytes-read=1575354/5242880 (30.05%)
+2019-01-31 11:31:39 1548934299.801303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1578869 total-bytes-write=52 payload-bytes-read=1578840/5242880 (30.11%)
+2019-01-31 11:31:39 1548934299.834623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1582853 total-bytes-write=52 payload-bytes-read=1582824/5242880 (30.19%)
+2019-01-31 11:31:39 1548934299.835163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1583849 total-bytes-write=52 payload-bytes-read=1583820/5242880 (30.21%)
+2019-01-31 11:31:39 1548934299.837450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1588331 total-bytes-write=52 payload-bytes-read=1588302/5242880 (30.29%)
+2019-01-31 11:31:39 1548934299.849249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1591767 total-bytes-write=52 payload-bytes-read=1591738/5242880 (30.36%)
+2019-01-31 11:31:39 1548934299.852374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1595751 total-bytes-write=52 payload-bytes-read=1595722/5242880 (30.44%)
+2019-01-31 11:31:39 1548934299.853557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1599735 total-bytes-write=52 payload-bytes-read=1599706/5242880 (30.51%)
+2019-01-31 11:31:39 1548934299.896380 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1604217 total-bytes-write=52 payload-bytes-read=1604188/5242880 (30.60%)
+2019-01-31 11:31:39 1548934299.940407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1616617 total-bytes-write=52 payload-bytes-read=1616588/5242880 (30.83%)
+2019-01-31 11:31:39 1548934299.984417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1633499 total-bytes-write=52 payload-bytes-read=1633470/5242880 (31.16%)
+2019-01-31 11:31:40 1548934300.028414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1645401 total-bytes-write=52 payload-bytes-read=1645372/5242880 (31.38%)
+2019-01-31 11:31:40 1548934300.032856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1649385 total-bytes-write=52 payload-bytes-read=1649356/5242880 (31.46%)
+2019-01-31 11:31:40 1548934300.034498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1653369 total-bytes-write=52 payload-bytes-read=1653340/5242880 (31.53%)
+2019-01-31 11:31:40 1548934300.076445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1662781 total-bytes-write=52 payload-bytes-read=1662752/5242880 (31.71%)
+2019-01-31 11:31:40 1548934300.120427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1677671 total-bytes-write=52 payload-bytes-read=1677642/5242880 (32.00%)
+2019-01-31 11:31:40 1548934300.164412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1691067 total-bytes-write=52 payload-bytes-read=1691038/5242880 (32.25%)
+2019-01-31 11:31:40 1548934300.171159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1694055 total-bytes-write=52 payload-bytes-read=1694026/5242880 (32.31%)
+2019-01-31 11:31:40 1548934300.252965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1694553 total-bytes-write=52 payload-bytes-read=1694524/5242880 (32.32%)
+2019-01-31 11:31:40 1548934300.405441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1697541 total-bytes-write=52 payload-bytes-read=1697512/5242880 (32.38%)
+2019-01-31 11:31:40 1548934300.425467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1701027 total-bytes-write=52 payload-bytes-read=1700998/5242880 (32.44%)
+2019-01-31 11:31:40 1548934300.457628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1702521 total-bytes-write=52 payload-bytes-read=1702492/5242880 (32.47%)
+2019-01-31 11:31:40 1548934300.458452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1705957 total-bytes-write=52 payload-bytes-read=1705928/5242880 (32.54%)
+2019-01-31 11:31:40 1548934300.468202 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1706953 total-bytes-write=52 payload-bytes-read=1706924/5242880 (32.56%)
+2019-01-31 11:31:40 1548934300.468819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1710439 total-bytes-write=52 payload-bytes-read=1710410/5242880 (32.62%)
+2019-01-31 11:31:40 1548934300.470042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1716913 total-bytes-write=52 payload-bytes-read=1716884/5242880 (32.75%)
+2019-01-31 11:31:40 1548934300.480181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1720349 total-bytes-write=52 payload-bytes-read=1720320/5242880 (32.81%)
+2019-01-31 11:31:40 1548934300.490705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1723835 total-bytes-write=52 payload-bytes-read=1723806/5242880 (32.88%)
+2019-01-31 11:31:40 1548934300.501812 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1727321 total-bytes-write=52 payload-bytes-read=1727292/5242880 (32.95%)
+2019-01-31 11:31:40 1548934300.544396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1735289 total-bytes-write=52 payload-bytes-read=1735260/5242880 (33.10%)
+2019-01-31 11:31:40 1548934300.588428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1760089 total-bytes-write=52 payload-bytes-read=1760060/5242880 (33.57%)
+2019-01-31 11:31:40 1548934300.632395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1765567 total-bytes-write=52 payload-bytes-read=1765538/5242880 (33.67%)
+2019-01-31 11:31:40 1548934300.636247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1769053 total-bytes-write=52 payload-bytes-read=1769024/5242880 (33.74%)
+2019-01-31 11:31:40 1548934300.637839 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1772987 total-bytes-write=52 payload-bytes-read=1772958/5242880 (33.82%)
+2019-01-31 11:31:40 1548934300.641649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1776971 total-bytes-write=52 payload-bytes-read=1776942/5242880 (33.89%)
+2019-01-31 11:31:40 1548934300.647620 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1780457 total-bytes-write=52 payload-bytes-read=1780428/5242880 (33.96%)
+2019-01-31 11:31:40 1548934300.661848 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1781453 total-bytes-write=52 payload-bytes-read=1781424/5242880 (33.98%)
+2019-01-31 11:31:40 1548934300.662835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1784939 total-bytes-write=52 payload-bytes-read=1784910/5242880 (34.04%)
+2019-01-31 11:31:40 1548934300.667298 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1790367 total-bytes-write=52 payload-bytes-read=1790338/5242880 (34.15%)
+2019-01-31 11:31:40 1548934300.681623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1796841 total-bytes-write=52 payload-bytes-read=1796812/5242880 (34.27%)
+2019-01-31 11:31:40 1548934300.710749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1800825 total-bytes-write=52 payload-bytes-read=1800796/5242880 (34.35%)
+2019-01-31 11:31:40 1548934300.719862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1804261 total-bytes-write=52 payload-bytes-read=1804232/5242880 (34.41%)
+2019-01-31 11:31:40 1548934300.720732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1805755 total-bytes-write=52 payload-bytes-read=1805726/5242880 (34.44%)
+2019-01-31 11:31:40 1548934300.727791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1810237 total-bytes-write=52 payload-bytes-read=1810208/5242880 (34.53%)
+2019-01-31 11:31:40 1548934300.727879 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1811731 total-bytes-write=52 payload-bytes-read=1811702/5242880 (34.56%)
+2019-01-31 11:31:40 1548934300.746211 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1815217 total-bytes-write=52 payload-bytes-read=1815188/5242880 (34.62%)
+2019-01-31 11:31:40 1548934300.747455 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1819151 total-bytes-write=52 payload-bytes-read=1819122/5242880 (34.70%)
+2019-01-31 11:31:40 1548934300.750300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1823135 total-bytes-write=52 payload-bytes-read=1823106/5242880 (34.77%)
+2019-01-31 11:31:40 1548934300.764735 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1826123 total-bytes-write=52 payload-bytes-read=1826094/5242880 (34.83%)
+2019-01-31 11:31:40 1548934300.766485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1829609 total-bytes-write=52 payload-bytes-read=1829580/5242880 (34.90%)
+2019-01-31 11:31:40 1548934300.798433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1833593 total-bytes-write=52 payload-bytes-read=1833564/5242880 (34.97%)
+2019-01-31 11:31:40 1548934300.810588 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1837029 total-bytes-write=52 payload-bytes-read=1837000/5242880 (35.04%)
+2019-01-31 11:31:40 1548934300.930310 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1840515 total-bytes-write=52 payload-bytes-read=1840486/5242880 (35.10%)
+2019-01-31 11:31:40 1548934300.943580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1844499 total-bytes-write=52 payload-bytes-read=1844470/5242880 (35.18%)
+2019-01-31 11:31:40 1548934300.944159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1849479 total-bytes-write=52 payload-bytes-read=1849450/5242880 (35.28%)
+2019-01-31 11:31:40 1548934300.944422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1856401 total-bytes-write=52 payload-bytes-read=1856372/5242880 (35.41%)
+2019-01-31 11:31:40 1548934300.944560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1860385 total-bytes-write=52 payload-bytes-read=1860356/5242880 (35.48%)
+2019-01-31 11:31:40 1548934300.944770 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1865863 total-bytes-write=52 payload-bytes-read=1865834/5242880 (35.59%)
+2019-01-31 11:31:40 1548934300.978303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1873283 total-bytes-write=52 payload-bytes-read=1873254/5242880 (35.73%)
+2019-01-31 11:31:41 1548934301.070504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1879757 total-bytes-write=52 payload-bytes-read=1879728/5242880 (35.85%)
+2019-01-31 11:31:41 1548934301.070602 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1882745 total-bytes-write=52 payload-bytes-read=1882716/5242880 (35.91%)
+2019-01-31 11:31:41 1548934301.071416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1886181 total-bytes-write=52 payload-bytes-read=1886152/5242880 (35.98%)
+2019-01-31 11:31:41 1548934301.110750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1890165 total-bytes-write=52 payload-bytes-read=1890136/5242880 (36.05%)
+2019-01-31 11:31:41 1548934301.154634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1894149 total-bytes-write=52 payload-bytes-read=1894120/5242880 (36.13%)
+2019-01-31 11:31:41 1548934301.196408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1902067 total-bytes-write=52 payload-bytes-read=1902038/5242880 (36.28%)
+2019-01-31 11:31:41 1548934301.248359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1909537 total-bytes-write=52 payload-bytes-read=1909508/5242880 (36.42%)
+2019-01-31 11:31:41 1548934301.248453 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1913521 total-bytes-write=52 payload-bytes-read=1913492/5242880 (36.50%)
+2019-01-31 11:31:41 1548934301.276658 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1917455 total-bytes-write=52 payload-bytes-read=1917426/5242880 (36.57%)
+2019-01-31 11:31:41 1548934301.318917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1921937 total-bytes-write=52 payload-bytes-read=1921908/5242880 (36.66%)
+2019-01-31 11:31:41 1548934301.338844 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1928909 total-bytes-write=52 payload-bytes-read=1928880/5242880 (36.79%)
+2019-01-31 11:31:41 1548934301.338967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1934835 total-bytes-write=52 payload-bytes-read=1934806/5242880 (36.90%)
+2019-01-31 11:31:41 1548934301.361967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1938321 total-bytes-write=52 payload-bytes-read=1938292/5242880 (36.97%)
+2019-01-31 11:31:41 1548934301.424848 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1939317 total-bytes-write=52 payload-bytes-read=1939288/5242880 (36.99%)
+2019-01-31 11:31:41 1548934301.425604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1942803 total-bytes-write=52 payload-bytes-read=1942774/5242880 (37.06%)
+2019-01-31 11:31:41 1548934301.426697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1947285 total-bytes-write=52 payload-bytes-read=1947256/5242880 (37.14%)
+2019-01-31 11:31:41 1548934301.427292 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1951717 total-bytes-write=52 payload-bytes-read=1951688/5242880 (37.23%)
+2019-01-31 11:31:41 1548934301.444712 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1955203 total-bytes-write=52 payload-bytes-read=1955174/5242880 (37.29%)
+2019-01-31 11:31:41 1548934301.446169 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1956199 total-bytes-write=52 payload-bytes-read=1956170/5242880 (37.31%)
+2019-01-31 11:31:41 1548934301.511794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1959187 total-bytes-write=52 payload-bytes-read=1959158/5242880 (37.37%)
+2019-01-31 11:31:41 1548934301.513055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1962673 total-bytes-write=52 payload-bytes-read=1962644/5242880 (37.43%)
+2019-01-31 11:31:41 1548934301.515460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1966607 total-bytes-write=52 payload-bytes-read=1966578/5242880 (37.51%)
+2019-01-31 11:31:41 1548934301.516857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1970591 total-bytes-write=52 payload-bytes-read=1970562/5242880 (37.59%)
+2019-01-31 11:31:41 1548934301.517419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1972085 total-bytes-write=52 payload-bytes-read=1972056/5242880 (37.61%)
+2019-01-31 11:31:41 1548934301.531017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1976567 total-bytes-write=52 payload-bytes-read=1976538/5242880 (37.70%)
+2019-01-31 11:31:41 1548934301.600659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1980053 total-bytes-write=52 payload-bytes-read=1980024/5242880 (37.77%)
+2019-01-31 11:31:41 1548934301.602698 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1981049 total-bytes-write=52 payload-bytes-read=1981020/5242880 (37.78%)
+2019-01-31 11:31:41 1548934301.606351 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1985481 total-bytes-write=52 payload-bytes-read=1985452/5242880 (37.87%)
+2019-01-31 11:31:41 1548934301.607638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1988967 total-bytes-write=52 payload-bytes-read=1988938/5242880 (37.94%)
+2019-01-31 11:31:41 1548934301.609073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1992453 total-bytes-write=52 payload-bytes-read=1992424/5242880 (38.00%)
+2019-01-31 11:31:41 1548934301.652408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=1997433 total-bytes-write=52 payload-bytes-read=1997404/5242880 (38.10%)
+2019-01-31 11:31:41 1548934301.696414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2014813 total-bytes-write=52 payload-bytes-read=2014784/5242880 (38.43%)
+2019-01-31 11:31:41 1548934301.740425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2018249 total-bytes-write=52 payload-bytes-read=2018220/5242880 (38.49%)
+2019-01-31 11:31:41 1548934301.741088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2022233 total-bytes-write=52 payload-bytes-read=2022204/5242880 (38.57%)
+2019-01-31 11:31:41 1548934301.770790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2026217 total-bytes-write=52 payload-bytes-read=2026188/5242880 (38.65%)
+2019-01-31 11:31:41 1548934301.812419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2042103 total-bytes-write=52 payload-bytes-read=2042074/5242880 (38.95%)
+2019-01-31 11:31:41 1548934301.856463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2046585 total-bytes-write=52 payload-bytes-read=2046556/5242880 (39.03%)
+2019-01-31 11:31:41 1548934301.856612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2050021 total-bytes-write=52 payload-bytes-read=2049992/5242880 (39.10%)
+2019-01-31 11:31:41 1548934301.861898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2054005 total-bytes-write=52 payload-bytes-read=2053976/5242880 (39.18%)
+2019-01-31 11:31:41 1548934301.870802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2057989 total-bytes-write=52 payload-bytes-read=2057960/5242880 (39.25%)
+2019-01-31 11:31:41 1548934301.912432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2074373 total-bytes-write=52 payload-bytes-read=2074344/5242880 (39.56%)
+2019-01-31 11:31:41 1548934301.960415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2087271 total-bytes-write=52 payload-bytes-read=2087242/5242880 (39.81%)
+2019-01-31 11:31:41 1548934301.965024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2090757 total-bytes-write=52 payload-bytes-read=2090728/5242880 (39.88%)
+2019-01-31 11:31:41 1548934301.991312 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2094741 total-bytes-write=52 payload-bytes-read=2094712/5242880 (39.95%)
+2019-01-31 11:31:41 1548934301.993350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2096235 total-bytes-write=52 payload-bytes-read=2096206/5242880 (39.98%)
+2019-01-31 11:31:41 1548934301.995680 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2100667 total-bytes-write=52 payload-bytes-read=2100638/5242880 (40.07%)
+2019-01-31 11:31:41 1548934301.996393 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2103655 total-bytes-write=52 payload-bytes-read=2103626/5242880 (40.12%)
+2019-01-31 11:31:42 1548934302.031302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2107639 total-bytes-write=52 payload-bytes-read=2107610/5242880 (40.20%)
+2019-01-31 11:31:42 1548934302.039578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2111125 total-bytes-write=52 payload-bytes-read=2111096/5242880 (40.27%)
+2019-01-31 11:31:42 1548934302.041177 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2115059 total-bytes-write=52 payload-bytes-read=2115030/5242880 (40.34%)
+2019-01-31 11:31:42 1548934302.050016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2120039 total-bytes-write=52 payload-bytes-read=2120010/5242880 (40.44%)
+2019-01-31 11:31:42 1548934302.076673 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2124521 total-bytes-write=52 payload-bytes-read=2124492/5242880 (40.52%)
+2019-01-31 11:31:42 1548934302.079521 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2128007 total-bytes-write=52 payload-bytes-read=2127978/5242880 (40.59%)
+2019-01-31 11:31:42 1548934302.080502 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2131941 total-bytes-write=52 payload-bytes-read=2131912/5242880 (40.66%)
+2019-01-31 11:31:42 1548934302.111426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2132937 total-bytes-write=52 payload-bytes-read=2132908/5242880 (40.68%)
+2019-01-31 11:31:42 1548934302.112045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2134431 total-bytes-write=52 payload-bytes-read=2134402/5242880 (40.71%)
+2019-01-31 11:31:42 1548934302.122492 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2137917 total-bytes-write=52 payload-bytes-read=2137888/5242880 (40.78%)
+2019-01-31 11:31:42 1548934302.124403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2141901 total-bytes-write=52 payload-bytes-read=2141872/5242880 (40.85%)
+2019-01-31 11:31:42 1548934302.130890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2145885 total-bytes-write=52 payload-bytes-read=2145856/5242880 (40.93%)
+2019-01-31 11:31:42 1548934302.176419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2158285 total-bytes-write=52 payload-bytes-read=2158256/5242880 (41.17%)
+2019-01-31 11:31:42 1548934302.220428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2177657 total-bytes-write=52 payload-bytes-read=2177628/5242880 (41.53%)
+2019-01-31 11:31:42 1548934302.347376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2181093 total-bytes-write=52 payload-bytes-read=2181064/5242880 (41.60%)
+2019-01-31 11:31:42 1548934302.379392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2184579 total-bytes-write=52 payload-bytes-read=2184550/5242880 (41.67%)
+2019-01-31 11:31:42 1548934302.381031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2187567 total-bytes-write=52 payload-bytes-read=2187538/5242880 (41.72%)
+2019-01-31 11:31:42 1548934302.402866 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2191053 total-bytes-write=52 payload-bytes-read=2191024/5242880 (41.79%)
+2019-01-31 11:31:42 1548934302.413110 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2195037 total-bytes-write=52 payload-bytes-read=2195008/5242880 (41.87%)
+2019-01-31 11:31:42 1548934302.414320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2202457 total-bytes-write=52 payload-bytes-read=2202428/5242880 (42.01%)
+2019-01-31 11:31:42 1548934302.446051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2202955 total-bytes-write=52 payload-bytes-read=2202926/5242880 (42.02%)
+2019-01-31 11:31:42 1548934302.447168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2208931 total-bytes-write=52 payload-bytes-read=2208902/5242880 (42.13%)
+2019-01-31 11:31:42 1548934302.459059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2212367 total-bytes-write=52 payload-bytes-read=2212338/5242880 (42.20%)
+2019-01-31 11:31:42 1548934302.472089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2215853 total-bytes-write=52 payload-bytes-read=2215824/5242880 (42.26%)
+2019-01-31 11:31:42 1548934302.506348 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2223821 total-bytes-write=52 payload-bytes-read=2223792/5242880 (42.42%)
+2019-01-31 11:31:42 1548934302.506471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2229747 total-bytes-write=52 payload-bytes-read=2229718/5242880 (42.53%)
+2019-01-31 11:31:42 1548934302.508115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2231241 total-bytes-write=52 payload-bytes-read=2231212/5242880 (42.56%)
+2019-01-31 11:31:42 1548934302.550015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2233731 total-bytes-write=52 payload-bytes-read=2233702/5242880 (42.60%)
+2019-01-31 11:31:42 1548934302.563383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2237217 total-bytes-write=52 payload-bytes-read=2237188/5242880 (42.67%)
+2019-01-31 11:31:42 1548934302.572400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2240703 total-bytes-write=52 payload-bytes-read=2240674/5242880 (42.74%)
+2019-01-31 11:31:42 1548934302.616417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2260075 total-bytes-write=52 payload-bytes-read=2260046/5242880 (43.11%)
+2019-01-31 11:31:42 1548934302.664407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2271977 total-bytes-write=52 payload-bytes-read=2271948/5242880 (43.33%)
+2019-01-31 11:31:42 1548934302.671933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2276459 total-bytes-write=52 payload-bytes-read=2276430/5242880 (43.42%)
+2019-01-31 11:31:42 1548934302.671998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2276957 total-bytes-write=52 payload-bytes-read=2276928/5242880 (43.43%)
+2019-01-31 11:31:42 1548934302.713263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2280393 total-bytes-write=52 payload-bytes-read=2280364/5242880 (43.49%)
+2019-01-31 11:31:42 1548934302.718528 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2283879 total-bytes-write=52 payload-bytes-read=2283850/5242880 (43.56%)
+2019-01-31 11:31:42 1548934302.719534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2287863 total-bytes-write=52 payload-bytes-read=2287834/5242880 (43.64%)
+2019-01-31 11:31:42 1548934302.721454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2295781 total-bytes-write=52 payload-bytes-read=2295752/5242880 (43.79%)
+2019-01-31 11:31:42 1548934302.721549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2296279 total-bytes-write=52 payload-bytes-read=2296250/5242880 (43.80%)
+2019-01-31 11:31:42 1548934302.727054 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2299267 total-bytes-write=52 payload-bytes-read=2299238/5242880 (43.85%)
+2019-01-31 11:31:42 1548934302.741321 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2302753 total-bytes-write=52 payload-bytes-read=2302724/5242880 (43.92%)
+2019-01-31 11:31:42 1548934302.764962 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2306737 total-bytes-write=52 payload-bytes-read=2306708/5242880 (44.00%)
+2019-01-31 11:31:42 1548934302.766648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2310173 total-bytes-write=52 payload-bytes-read=2310144/5242880 (44.06%)
+2019-01-31 11:31:42 1548934302.803245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2314157 total-bytes-write=52 payload-bytes-read=2314128/5242880 (44.14%)
+2019-01-31 11:31:42 1548934302.803931 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2316647 total-bytes-write=52 payload-bytes-read=2316618/5242880 (44.19%)
+2019-01-31 11:31:42 1548934302.814467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2324117 total-bytes-write=52 payload-bytes-read=2324088/5242880 (44.33%)
+2019-01-31 11:31:42 1548934302.814657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2331537 total-bytes-write=52 payload-bytes-read=2331508/5242880 (44.47%)
+2019-01-31 11:31:42 1548934302.814710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2332533 total-bytes-write=52 payload-bytes-read=2332504/5242880 (44.49%)
+2019-01-31 11:31:42 1548934302.833508 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2335521 total-bytes-write=52 payload-bytes-read=2335492/5242880 (44.55%)
+2019-01-31 11:31:42 1548934302.845227 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2339007 total-bytes-write=52 payload-bytes-read=2338978/5242880 (44.61%)
+2019-01-31 11:31:42 1548934302.855265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2342941 total-bytes-write=52 payload-bytes-read=2342912/5242880 (44.69%)
+2019-01-31 11:31:42 1548934302.893852 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2346925 total-bytes-write=52 payload-bytes-read=2346896/5242880 (44.76%)
+2019-01-31 11:31:42 1548934302.895117 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2351407 total-bytes-write=52 payload-bytes-read=2351378/5242880 (44.85%)
+2019-01-31 11:31:42 1548934302.895196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2352901 total-bytes-write=52 payload-bytes-read=2352872/5242880 (44.88%)
+2019-01-31 11:31:42 1548934302.900503 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2356387 total-bytes-write=52 payload-bytes-read=2356358/5242880 (44.94%)
+2019-01-31 11:31:42 1548934302.901659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2359325 total-bytes-write=52 payload-bytes-read=2359296/5242880 (45.00%)
+2019-01-31 11:31:42 1548934302.908226 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2366297 total-bytes-write=52 payload-bytes-read=2366268/5242880 (45.13%)
+2019-01-31 11:31:42 1548934302.922285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2370281 total-bytes-write=52 payload-bytes-read=2370252/5242880 (45.21%)
+2019-01-31 11:31:42 1548934302.933604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2373767 total-bytes-write=52 payload-bytes-read=2373738/5242880 (45.28%)
+2019-01-31 11:31:42 1548934302.941275 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2377701 total-bytes-write=52 payload-bytes-read=2377672/5242880 (45.35%)
+2019-01-31 11:31:42 1548934302.966261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2381187 total-bytes-write=52 payload-bytes-read=2381158/5242880 (45.42%)
+2019-01-31 11:31:42 1548934302.982083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2382681 total-bytes-write=52 payload-bytes-read=2382652/5242880 (45.45%)
+2019-01-31 11:31:42 1548934302.983671 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2386167 total-bytes-write=52 payload-bytes-read=2386138/5242880 (45.51%)
+2019-01-31 11:31:42 1548934302.986728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2390151 total-bytes-write=52 payload-bytes-read=2390122/5242880 (45.59%)
+2019-01-31 11:31:42 1548934302.997010 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2394583 total-bytes-write=52 payload-bytes-read=2394554/5242880 (45.67%)
+2019-01-31 11:31:42 1548934302.997541 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2398069 total-bytes-write=52 payload-bytes-read=2398040/5242880 (45.74%)
+2019-01-31 11:31:43 1548934303.063114 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2399065 total-bytes-write=52 payload-bytes-read=2399036/5242880 (45.76%)
+2019-01-31 11:31:43 1548934303.065324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2402551 total-bytes-write=52 payload-bytes-read=2402522/5242880 (45.82%)
+2019-01-31 11:31:43 1548934303.067250 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2410469 total-bytes-write=52 payload-bytes-read=2410440/5242880 (45.98%)
+2019-01-31 11:31:43 1548934303.067428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2414951 total-bytes-write=52 payload-bytes-read=2414922/5242880 (46.06%)
+2019-01-31 11:31:43 1548934303.067529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2418437 total-bytes-write=52 payload-bytes-read=2418408/5242880 (46.13%)
+2019-01-31 11:31:43 1548934303.069668 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2421923 total-bytes-write=52 payload-bytes-read=2421894/5242880 (46.19%)
+2019-01-31 11:31:43 1548934303.112420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2433825 total-bytes-write=52 payload-bytes-read=2433796/5242880 (46.42%)
+2019-01-31 11:31:43 1548934303.156856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2437311 total-bytes-write=52 payload-bytes-read=2437282/5242880 (46.49%)
+2019-01-31 11:31:43 1548934303.157449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2441245 total-bytes-write=52 payload-bytes-read=2441216/5242880 (46.56%)
+2019-01-31 11:31:43 1548934303.159014 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2445229 total-bytes-write=52 payload-bytes-read=2445200/5242880 (46.64%)
+2019-01-31 11:31:43 1548934303.160144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2449711 total-bytes-write=52 payload-bytes-read=2449682/5242880 (46.72%)
+2019-01-31 11:31:43 1548934303.160999 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2453695 total-bytes-write=52 payload-bytes-read=2453666/5242880 (46.80%)
+2019-01-31 11:31:43 1548934303.161066 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2454691 total-bytes-write=52 payload-bytes-read=2454662/5242880 (46.82%)
+2019-01-31 11:31:43 1548934303.205935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2455687 total-bytes-write=52 payload-bytes-read=2455658/5242880 (46.84%)
+2019-01-31 11:31:43 1548934303.248392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2457181 total-bytes-write=52 payload-bytes-read=2457152/5242880 (46.87%)
+2019-01-31 11:31:43 1548934303.390201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2457629 total-bytes-write=52 payload-bytes-read=2457600/5242880 (46.88%)
+2019-01-31 11:31:43 1548934303.435510 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2461115 total-bytes-write=52 payload-bytes-read=2461086/5242880 (46.94%)
+2019-01-31 11:31:43 1548934303.476440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2479491 total-bytes-write=52 payload-bytes-read=2479462/5242880 (47.29%)
+2019-01-31 11:31:43 1548934303.520439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2495377 total-bytes-write=52 payload-bytes-read=2495348/5242880 (47.59%)
+2019-01-31 11:31:43 1548934303.524529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2499361 total-bytes-write=52 payload-bytes-read=2499332/5242880 (47.67%)
+2019-01-31 11:31:43 1548934303.532922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2502847 total-bytes-write=52 payload-bytes-read=2502818/5242880 (47.74%)
+2019-01-31 11:31:43 1548934303.533000 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2503843 total-bytes-write=52 payload-bytes-read=2503814/5242880 (47.76%)
+2019-01-31 11:31:43 1548934303.629046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2506781 total-bytes-write=52 payload-bytes-read=2506752/5242880 (47.81%)
+2019-01-31 11:31:43 1548934303.641269 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2510267 total-bytes-write=52 payload-bytes-read=2510238/5242880 (47.88%)
+2019-01-31 11:31:43 1548934303.663986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2513753 total-bytes-write=52 payload-bytes-read=2513724/5242880 (47.95%)
+2019-01-31 11:31:43 1548934303.704437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:31:43 1548934303.748422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2550007 total-bytes-write=52 payload-bytes-read=2549978/5242880 (48.64%)
+2019-01-31 11:31:43 1548934303.792408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2561909 total-bytes-write=52 payload-bytes-read=2561880/5242880 (48.86%)
+2019-01-31 11:31:43 1548934303.823717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2562407 total-bytes-write=52 payload-bytes-read=2562378/5242880 (48.87%)
+2019-01-31 11:31:43 1548934303.826344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2565395 total-bytes-write=52 payload-bytes-read=2565366/5242880 (48.93%)
+2019-01-31 11:31:43 1548934303.837146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2568881 total-bytes-write=52 payload-bytes-read=2568852/5242880 (49.00%)
+2019-01-31 11:31:43 1548934303.837693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2571371 total-bytes-write=52 payload-bytes-read=2571342/5242880 (49.04%)
+2019-01-31 11:31:43 1548934303.854128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2578791 total-bytes-write=52 payload-bytes-read=2578762/5242880 (49.19%)
+2019-01-31 11:31:43 1548934303.865188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2585763 total-bytes-write=52 payload-bytes-read=2585734/5242880 (49.32%)
+2019-01-31 11:31:43 1548934303.876307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2589199 total-bytes-write=52 payload-bytes-read=2589170/5242880 (49.38%)
+2019-01-31 11:31:43 1548934303.897676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2589697 total-bytes-write=52 payload-bytes-read=2589668/5242880 (49.39%)
+2019-01-31 11:31:43 1548934303.898214 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2592187 total-bytes-write=52 payload-bytes-read=2592158/5242880 (49.44%)
+2019-01-31 11:31:43 1548934303.908726 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2594179 total-bytes-write=52 payload-bytes-read=2594150/5242880 (49.48%)
+2019-01-31 11:31:43 1548934303.919429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2596669 total-bytes-write=52 payload-bytes-read=2596640/5242880 (49.53%)
+2019-01-31 11:31:43 1548934303.955500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2604139 total-bytes-write=52 payload-bytes-read=2604110/5242880 (49.67%)
+2019-01-31 11:31:43 1548934303.955630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2612057 total-bytes-write=52 payload-bytes-read=2612028/5242880 (49.82%)
+2019-01-31 11:31:43 1548934303.963576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2613551 total-bytes-write=52 payload-bytes-read=2613522/5242880 (49.85%)
+2019-01-31 11:31:43 1548934303.964288 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2617037 total-bytes-write=52 payload-bytes-read=2617008/5242880 (49.92%)
+2019-01-31 11:31:43 1548934303.986045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2618033 total-bytes-write=52 payload-bytes-read=2618004/5242880 (49.93%)
+2019-01-31 11:31:43 1548934303.987333 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2621469 total-bytes-write=52 payload-bytes-read=2621440/5242880 (50.00%)
+2019-01-31 11:31:43 1548934303.989098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2627445 total-bytes-write=52 payload-bytes-read=2627416/5242880 (50.11%)
+2019-01-31 11:31:44 1548934304.008504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2630433 total-bytes-write=52 payload-bytes-read=2630404/5242880 (50.17%)
+2019-01-31 11:31:44 1548934304.051477 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2633919 total-bytes-write=52 payload-bytes-read=2633890/5242880 (50.24%)
+2019-01-31 11:31:44 1548934304.061238 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2637405 total-bytes-write=52 payload-bytes-read=2637376/5242880 (50.30%)
+2019-01-31 11:31:44 1548934304.104434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2648809 total-bytes-write=52 payload-bytes-read=2648780/5242880 (50.52%)
+2019-01-31 11:31:44 1548934304.148427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2661209 total-bytes-write=52 payload-bytes-read=2661180/5242880 (50.76%)
+2019-01-31 11:31:44 1548934304.192432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2667683 total-bytes-write=52 payload-bytes-read=2667654/5242880 (50.88%)
+2019-01-31 11:31:44 1548934304.270284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2669675 total-bytes-write=52 payload-bytes-read=2669646/5242880 (50.92%)
+2019-01-31 11:31:44 1548934304.347256 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2673111 total-bytes-write=52 payload-bytes-read=2673082/5242880 (50.98%)
+2019-01-31 11:31:44 1548934304.348489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2677095 total-bytes-write=52 payload-bytes-read=2677066/5242880 (51.06%)
+2019-01-31 11:31:44 1548934304.348851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2680581 total-bytes-write=52 payload-bytes-read=2680552/5242880 (51.13%)
+2019-01-31 11:31:44 1548934304.363853 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2688001 total-bytes-write=52 payload-bytes-read=2687972/5242880 (51.27%)
+2019-01-31 11:31:44 1548934304.383725 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2688499 total-bytes-write=52 payload-bytes-read=2688470/5242880 (51.28%)
+2019-01-31 11:31:44 1548934304.385957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2693977 total-bytes-write=52 payload-bytes-read=2693948/5242880 (51.38%)
+2019-01-31 11:31:44 1548934304.391816 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2697463 total-bytes-write=52 payload-bytes-read=2697434/5242880 (51.45%)
+2019-01-31 11:31:44 1548934304.393921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:31:44 1548934304.394489 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2708867 total-bytes-write=52 payload-bytes-read=2708838/5242880 (51.67%)
+2019-01-31 11:31:44 1548934304.404024 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2712353 total-bytes-write=52 payload-bytes-read=2712324/5242880 (51.73%)
+2019-01-31 11:31:44 1548934304.444389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2720271 total-bytes-write=52 payload-bytes-read=2720242/5242880 (51.88%)
+2019-01-31 11:31:44 1548934304.488410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2724255 total-bytes-write=52 payload-bytes-read=2724226/5242880 (51.96%)
+2019-01-31 11:31:44 1548934304.488567 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2726745 total-bytes-write=52 payload-bytes-read=2726716/5242880 (52.01%)
+2019-01-31 11:31:44 1548934304.514562 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2730231 total-bytes-write=52 payload-bytes-read=2730202/5242880 (52.07%)
+2019-01-31 11:31:44 1548934304.551256 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2736157 total-bytes-write=52 payload-bytes-read=2736128/5242880 (52.19%)
+2019-01-31 11:31:44 1548934304.564709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2739643 total-bytes-write=52 payload-bytes-read=2739614/5242880 (52.25%)
+2019-01-31 11:31:44 1548934304.572815 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2743129 total-bytes-write=52 payload-bytes-read=2743100/5242880 (52.32%)
+2019-01-31 11:31:44 1548934304.616404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2750101 total-bytes-write=52 payload-bytes-read=2750072/5242880 (52.45%)
+2019-01-31 11:31:44 1548934304.660419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2765987 total-bytes-write=52 payload-bytes-read=2765958/5242880 (52.76%)
+2019-01-31 11:31:44 1548934304.704399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2775897 total-bytes-write=52 payload-bytes-read=2775868/5242880 (52.95%)
+2019-01-31 11:31:44 1548934304.714023 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2779383 total-bytes-write=52 payload-bytes-read=2779354/5242880 (53.01%)
+2019-01-31 11:31:44 1548934304.715573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2783367 total-bytes-write=52 payload-bytes-read=2783338/5242880 (53.09%)
+2019-01-31 11:31:44 1548934304.723085 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2788795 total-bytes-write=52 payload-bytes-read=2788766/5242880 (53.19%)
+2019-01-31 11:31:44 1548934304.732745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2792281 total-bytes-write=52 payload-bytes-read=2792252/5242880 (53.26%)
+2019-01-31 11:31:44 1548934304.733634 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2795767 total-bytes-write=52 payload-bytes-read=2795738/5242880 (53.32%)
+2019-01-31 11:31:44 1548934304.776439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2808665 total-bytes-write=52 payload-bytes-read=2808636/5242880 (53.57%)
+2019-01-31 11:31:44 1548934304.833132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2810159 total-bytes-write=52 payload-bytes-read=2810130/5242880 (53.60%)
+2019-01-31 11:31:44 1548934304.833893 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2813645 total-bytes-write=52 payload-bytes-read=2813616/5242880 (53.67%)
+2019-01-31 11:31:44 1548934304.835473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2817629 total-bytes-write=52 payload-bytes-read=2817600/5242880 (53.74%)
+2019-01-31 11:31:44 1548934304.836008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2821563 total-bytes-write=52 payload-bytes-read=2821534/5242880 (53.82%)
+2019-01-31 11:31:44 1548934304.847601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2823057 total-bytes-write=52 payload-bytes-read=2823028/5242880 (53.84%)
+2019-01-31 11:31:44 1548934304.847987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2824551 total-bytes-write=52 payload-bytes-read=2824522/5242880 (53.87%)
+2019-01-31 11:31:44 1548934304.888399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2830029 total-bytes-write=52 payload-bytes-read=2830000/5242880 (53.98%)
+2019-01-31 11:31:44 1548934304.932410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2847907 total-bytes-write=52 payload-bytes-read=2847878/5242880 (54.32%)
+2019-01-31 11:31:44 1548934304.976426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2863295 total-bytes-write=52 payload-bytes-read=2863266/5242880 (54.61%)
+2019-01-31 11:31:45 1548934305.029782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2865785 total-bytes-write=52 payload-bytes-read=2865756/5242880 (54.66%)
+2019-01-31 11:31:45 1548934305.052509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2868225 total-bytes-write=52 payload-bytes-read=2868196/5242880 (54.71%)
+2019-01-31 11:31:45 1548934305.063261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2871711 total-bytes-write=52 payload-bytes-read=2871682/5242880 (54.77%)
+2019-01-31 11:31:45 1548934305.063998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2875695 total-bytes-write=52 payload-bytes-read=2875666/5242880 (54.85%)
+2019-01-31 11:31:45 1548934305.075212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2879181 total-bytes-write=52 payload-bytes-read=2879152/5242880 (54.92%)
+2019-01-31 11:31:45 1548934305.108165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2879679 total-bytes-write=52 payload-bytes-read=2879650/5242880 (54.92%)
+2019-01-31 11:31:45 1548934305.111948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2886103 total-bytes-write=52 payload-bytes-read=2886074/5242880 (55.05%)
+2019-01-31 11:31:45 1548934305.153475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2886601 total-bytes-write=52 payload-bytes-read=2886572/5242880 (55.06%)
+2019-01-31 11:31:45 1548934305.154708 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2890087 total-bytes-write=52 payload-bytes-read=2890058/5242880 (55.12%)
+2019-01-31 11:31:45 1548934305.188732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2893573 total-bytes-write=52 payload-bytes-read=2893544/5242880 (55.19%)
+2019-01-31 11:31:45 1548934305.319381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2897059 total-bytes-write=52 payload-bytes-read=2897030/5242880 (55.26%)
+2019-01-31 11:31:45 1548934305.360436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2913443 total-bytes-write=52 payload-bytes-read=2913414/5242880 (55.57%)
+2019-01-31 11:31:45 1548934305.404456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2940733 total-bytes-write=52 payload-bytes-read=2940704/5242880 (56.09%)
+2019-01-31 11:31:45 1548934305.448448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2950643 total-bytes-write=52 payload-bytes-read=2950614/5242880 (56.28%)
+2019-01-31 11:31:45 1548934305.529605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2954627 total-bytes-write=52 payload-bytes-read=2954598/5242880 (56.35%)
+2019-01-31 11:31:45 1548934305.655201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=2958611 total-bytes-write=52 payload-bytes-read=2958582/5242880 (56.43%)
+2019-01-31 11:31:45 1548934305.696551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3006767 total-bytes-write=52 payload-bytes-read=3006738/5242880 (57.35%)
+2019-01-31 11:31:45 1548934305.747858 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3010253 total-bytes-write=52 payload-bytes-read=3010224/5242880 (57.42%)
+2019-01-31 11:31:45 1548934305.755924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3014685 total-bytes-write=52 payload-bytes-read=3014656/5242880 (57.50%)
+2019-01-31 11:31:45 1548934305.756057 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3019167 total-bytes-write=52 payload-bytes-read=3019138/5242880 (57.59%)
+2019-01-31 11:31:45 1548934305.756215 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3025143 total-bytes-write=52 payload-bytes-read=3025114/5242880 (57.70%)
+2019-01-31 11:31:45 1548934305.856315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3026139 total-bytes-write=52 payload-bytes-read=3026110/5242880 (57.72%)
+2019-01-31 11:31:45 1548934305.889666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3028131 total-bytes-write=52 payload-bytes-read=3028102/5242880 (57.76%)
+2019-01-31 11:31:45 1548934305.923568 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3031567 total-bytes-write=52 payload-bytes-read=3031538/5242880 (57.82%)
+2019-01-31 11:31:45 1548934305.924063 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3034555 total-bytes-write=52 payload-bytes-read=3034526/5242880 (57.88%)
+2019-01-31 11:31:45 1548934305.935891 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3038041 total-bytes-write=52 payload-bytes-read=3038012/5242880 (57.95%)
+2019-01-31 11:31:45 1548934305.946706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3041527 total-bytes-write=52 payload-bytes-read=3041498/5242880 (58.01%)
+2019-01-31 11:31:45 1548934305.988417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3046507 total-bytes-write=52 payload-bytes-read=3046478/5242880 (58.11%)
+2019-01-31 11:31:46 1548934306.057965 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3047005 total-bytes-write=52 payload-bytes-read=3046976/5242880 (58.12%)
+2019-01-31 11:31:46 1548934306.058890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3050441 total-bytes-write=52 payload-bytes-read=3050412/5242880 (58.18%)
+2019-01-31 11:31:46 1548934306.173981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3056417 total-bytes-write=52 payload-bytes-read=3056388/5242880 (58.30%)
+2019-01-31 11:31:46 1548934306.174229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3063837 total-bytes-write=52 payload-bytes-read=3063808/5242880 (58.44%)
+2019-01-31 11:31:46 1548934306.174384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3068319 total-bytes-write=52 payload-bytes-read=3068290/5242880 (58.52%)
+2019-01-31 11:31:46 1548934306.174499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3070809 total-bytes-write=52 payload-bytes-read=3070780/5242880 (58.57%)
+2019-01-31 11:31:46 1548934306.404077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3074295 total-bytes-write=52 payload-bytes-read=3074266/5242880 (58.64%)
+2019-01-31 11:31:46 1548934306.493456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3074793 total-bytes-write=52 payload-bytes-read=3074764/5242880 (58.65%)
+2019-01-31 11:31:46 1548934306.862388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3077781 total-bytes-write=52 payload-bytes-read=3077752/5242880 (58.70%)
+2019-01-31 11:31:46 1548934306.954784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3081217 total-bytes-write=52 payload-bytes-read=3081188/5242880 (58.77%)
+2019-01-31 11:31:47 1548934307.040575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3084703 total-bytes-write=52 payload-bytes-read=3084674/5242880 (58.84%)
+2019-01-31 11:31:47 1548934307.041956 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3090181 total-bytes-write=52 payload-bytes-read=3090152/5242880 (58.94%)
+2019-01-31 11:31:47 1548934307.130581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3093667 total-bytes-write=52 payload-bytes-read=3093638/5242880 (59.01%)
+2019-01-31 11:31:47 1548934307.132021 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3101585 total-bytes-write=52 payload-bytes-read=3101556/5242880 (59.16%)
+2019-01-31 11:31:47 1548934307.132207 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3105569 total-bytes-write=52 payload-bytes-read=3105540/5242880 (59.23%)
+2019-01-31 11:31:47 1548934307.218095 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3112989 total-bytes-write=52 payload-bytes-read=3112960/5242880 (59.38%)
+2019-01-31 11:31:47 1548934307.218197 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3116475 total-bytes-write=52 payload-bytes-read=3116446/5242880 (59.44%)
+2019-01-31 11:31:47 1548934307.221478 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3120957 total-bytes-write=52 payload-bytes-read=3120928/5242880 (59.53%)
+2019-01-31 11:31:47 1548934307.221748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3127929 total-bytes-write=52 payload-bytes-read=3127900/5242880 (59.66%)
+2019-01-31 11:31:47 1548934307.306777 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3131863 total-bytes-write=52 payload-bytes-read=3131834/5242880 (59.73%)
+2019-01-31 11:31:47 1548934307.307473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3135847 total-bytes-write=52 payload-bytes-read=3135818/5242880 (59.81%)
+2019-01-31 11:31:47 1548934307.311017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3141823 total-bytes-write=52 payload-bytes-read=3141794/5242880 (59.92%)
+2019-01-31 11:31:47 1548934307.311551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3146753 total-bytes-write=52 payload-bytes-read=3146724/5242880 (60.02%)
+2019-01-31 11:31:47 1548934307.311692 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3150239 total-bytes-write=52 payload-bytes-read=3150210/5242880 (60.09%)
+2019-01-31 11:31:47 1548934307.315454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3153725 total-bytes-write=52 payload-bytes-read=3153696/5242880 (60.15%)
+2019-01-31 11:31:47 1548934307.400103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3157709 total-bytes-write=52 payload-bytes-read=3157680/5242880 (60.23%)
+2019-01-31 11:31:47 1548934307.440442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3182011 total-bytes-write=52 payload-bytes-read=3181982/5242880 (60.69%)
+2019-01-31 11:31:47 1548934307.492986 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3189481 total-bytes-write=52 payload-bytes-read=3189452/5242880 (60.83%)
+2019-01-31 11:31:47 1548934307.493237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3195407 total-bytes-write=52 payload-bytes-read=3195378/5242880 (60.95%)
+2019-01-31 11:31:47 1548934307.493379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3200885 total-bytes-write=52 payload-bytes-read=3200856/5242880 (61.05%)
+2019-01-31 11:31:47 1548934307.493615 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3206363 total-bytes-write=52 payload-bytes-read=3206334/5242880 (61.16%)
+2019-01-31 11:31:47 1548934307.493899 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3211791 total-bytes-write=52 payload-bytes-read=3211762/5242880 (61.26%)
+2019-01-31 11:31:47 1548934307.493963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3213285 total-bytes-write=52 payload-bytes-read=3213256/5242880 (61.29%)
+2019-01-31 11:31:47 1548934307.581382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3216273 total-bytes-write=52 payload-bytes-read=3216244/5242880 (61.34%)
+2019-01-31 11:31:47 1548934307.582458 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3223245 total-bytes-write=52 payload-bytes-read=3223216/5242880 (61.48%)
+2019-01-31 11:31:47 1548934307.582534 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3224739 total-bytes-write=52 payload-bytes-read=3224710/5242880 (61.51%)
+2019-01-31 11:31:47 1548934307.583587 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3232159 total-bytes-write=52 payload-bytes-read=3232130/5242880 (61.65%)
+2019-01-31 11:31:47 1548934307.583648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3232657 total-bytes-write=52 payload-bytes-read=3232628/5242880 (61.66%)
+2019-01-31 11:31:47 1548934307.586488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3236143 total-bytes-write=52 payload-bytes-read=3236114/5242880 (61.72%)
+2019-01-31 11:31:47 1548934307.588892 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3240127 total-bytes-write=52 payload-bytes-read=3240098/5242880 (61.80%)
+2019-01-31 11:31:47 1548934307.670923 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3244061 total-bytes-write=52 payload-bytes-read=3244032/5242880 (61.88%)
+2019-01-31 11:31:47 1548934307.671483 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3248543 total-bytes-write=52 payload-bytes-read=3248514/5242880 (61.96%)
+2019-01-31 11:31:47 1548934307.672111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3251531 total-bytes-write=52 payload-bytes-read=3251502/5242880 (62.02%)
+2019-01-31 11:31:47 1548934307.674071 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3259001 total-bytes-write=52 payload-bytes-read=3258972/5242880 (62.16%)
+2019-01-31 11:31:47 1548934307.674230 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3263433 total-bytes-write=52 payload-bytes-read=3263404/5242880 (62.24%)
+2019-01-31 11:31:47 1548934307.674551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3267417 total-bytes-write=52 payload-bytes-read=3267388/5242880 (62.32%)
+2019-01-31 11:31:47 1548934307.677748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3271401 total-bytes-write=52 payload-bytes-read=3271372/5242880 (62.40%)
+2019-01-31 11:31:47 1548934307.761078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3275385 total-bytes-write=52 payload-bytes-read=3275356/5242880 (62.47%)
+2019-01-31 11:31:47 1548934307.804468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3304667 total-bytes-write=52 payload-bytes-read=3304638/5242880 (63.03%)
+2019-01-31 11:31:47 1548934307.850963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3308153 total-bytes-write=52 payload-bytes-read=3308124/5242880 (63.10%)
+2019-01-31 11:31:47 1548934307.852487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3313083 total-bytes-write=52 payload-bytes-read=3313054/5242880 (63.19%)
+2019-01-31 11:31:47 1548934307.856794 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3317067 total-bytes-write=52 payload-bytes-read=3317038/5242880 (63.27%)
+2019-01-31 11:31:47 1548934307.858132 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3320553 total-bytes-write=52 payload-bytes-read=3320524/5242880 (63.33%)
+2019-01-31 11:31:47 1548934307.859001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3324537 total-bytes-write=52 payload-bytes-read=3324508/5242880 (63.41%)
+2019-01-31 11:31:47 1548934307.859274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3329467 total-bytes-write=52 payload-bytes-read=3329438/5242880 (63.50%)
+2019-01-31 11:31:47 1548934307.860414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3336937 total-bytes-write=52 payload-bytes-read=3336908/5242880 (63.65%)
+2019-01-31 11:31:47 1548934307.967928 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3340921 total-bytes-write=52 payload-bytes-read=3340892/5242880 (63.72%)
+2019-01-31 11:31:47 1548934307.974740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3345851 total-bytes-write=52 payload-bytes-read=3345822/5242880 (63.82%)
+2019-01-31 11:31:47 1548934307.974857 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3349337 total-bytes-write=52 payload-bytes-read=3349308/5242880 (63.88%)
+2019-01-31 11:31:47 1548934307.987830 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3350831 total-bytes-write=52 payload-bytes-read=3350802/5242880 (63.91%)
+2019-01-31 11:31:48 1548934308.325004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3353819 total-bytes-write=52 payload-bytes-read=3353790/5242880 (63.97%)
+2019-01-31 11:31:48 1548934308.390474 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3354317 total-bytes-write=52 payload-bytes-read=3354288/5242880 (63.98%)
+2019-01-31 11:31:48 1548934308.392412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3361737 total-bytes-write=52 payload-bytes-read=3361708/5242880 (64.12%)
+2019-01-31 11:31:48 1548934308.402103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3362235 total-bytes-write=52 payload-bytes-read=3362206/5242880 (64.13%)
+2019-01-31 11:31:48 1548934308.403123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3365721 total-bytes-write=52 payload-bytes-read=3365692/5242880 (64.20%)
+2019-01-31 11:31:48 1548934308.404309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3369769 total-bytes-write=52 payload-bytes-read=3369740/5242880 (64.27%)
+2019-01-31 11:31:48 1548934308.404371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3373191 total-bytes-write=52 payload-bytes-read=3373162/5242880 (64.34%)
+2019-01-31 11:31:48 1548934308.413460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3376627 total-bytes-write=52 payload-bytes-read=3376598/5242880 (64.40%)
+2019-01-31 11:31:48 1548934308.415096 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3384595 total-bytes-write=52 payload-bytes-read=3384566/5242880 (64.56%)
+2019-01-31 11:31:48 1548934308.415479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3387583 total-bytes-write=52 payload-bytes-read=3387554/5242880 (64.61%)
+2019-01-31 11:31:48 1548934308.477386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3391069 total-bytes-write=52 payload-bytes-read=3391040/5242880 (64.68%)
+2019-01-31 11:31:48 1548934308.478355 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3395501 total-bytes-write=52 payload-bytes-read=3395472/5242880 (64.76%)
+2019-01-31 11:31:48 1548934308.510341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3401975 total-bytes-write=52 payload-bytes-read=3401946/5242880 (64.89%)
+2019-01-31 11:31:48 1548934308.510659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3409395 total-bytes-write=52 payload-bytes-read=3409366/5242880 (65.03%)
+2019-01-31 11:31:48 1548934308.510795 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3413379 total-bytes-write=52 payload-bytes-read=3413350/5242880 (65.10%)
+2019-01-31 11:31:48 1548934308.518180 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3418359 total-bytes-write=52 payload-bytes-read=3418330/5242880 (65.20%)
+2019-01-31 11:31:48 1548934308.518353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3421845 total-bytes-write=52 payload-bytes-read=3421816/5242880 (65.27%)
+2019-01-31 11:31:48 1548934308.571439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3425281 total-bytes-write=52 payload-bytes-read=3425252/5242880 (65.33%)
+2019-01-31 11:31:48 1548934308.572888 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3430759 total-bytes-write=52 payload-bytes-read=3430730/5242880 (65.44%)
+2019-01-31 11:31:48 1548934308.617017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3434245 total-bytes-write=52 payload-bytes-read=3434216/5242880 (65.50%)
+2019-01-31 11:31:48 1548934308.719539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3439723 total-bytes-write=52 payload-bytes-read=3439694/5242880 (65.61%)
+2019-01-31 11:31:48 1548934308.719779 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3446147 total-bytes-write=52 payload-bytes-read=3446118/5242880 (65.73%)
+2019-01-31 11:31:48 1548934308.719896 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3449633 total-bytes-write=52 payload-bytes-read=3449604/5242880 (65.80%)
+2019-01-31 11:31:48 1548934308.747529 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3454115 total-bytes-write=52 payload-bytes-read=3454086/5242880 (65.88%)
+2019-01-31 11:31:48 1548934308.747623 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3456605 total-bytes-write=52 payload-bytes-read=3456576/5242880 (65.93%)
+2019-01-31 11:31:48 1548934308.747876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3464025 total-bytes-write=52 payload-bytes-read=3463996/5242880 (66.07%)
+2019-01-31 11:31:48 1548934308.748041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3468009 total-bytes-write=52 payload-bytes-read=3467980/5242880 (66.15%)
+2019-01-31 11:31:48 1548934308.748368 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3475429 total-bytes-write=52 payload-bytes-read=3475400/5242880 (66.29%)
+2019-01-31 11:31:48 1548934308.748433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3475927 total-bytes-write=52 payload-bytes-read=3475898/5242880 (66.30%)
+2019-01-31 11:31:48 1548934308.798073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3479413 total-bytes-write=52 payload-bytes-read=3479384/5242880 (66.36%)
+2019-01-31 11:31:48 1548934308.811749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:31:48 1548934308.888989 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3485389 total-bytes-write=52 payload-bytes-read=3485360/5242880 (66.48%)
+2019-01-31 11:31:48 1548934308.902074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3489373 total-bytes-write=52 payload-bytes-read=3489344/5242880 (66.55%)
+2019-01-31 11:31:48 1548934308.902799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3492809 total-bytes-write=52 payload-bytes-read=3492780/5242880 (66.62%)
+2019-01-31 11:31:48 1548934308.978471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3497789 total-bytes-write=52 payload-bytes-read=3497760/5242880 (66.71%)
+2019-01-31 11:31:48 1548934308.978550 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3498785 total-bytes-write=52 payload-bytes-read=3498756/5242880 (66.73%)
+2019-01-31 11:31:48 1548934308.979041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3501275 total-bytes-write=52 payload-bytes-read=3501246/5242880 (66.78%)
+2019-01-31 11:31:48 1548934308.994604 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3508197 total-bytes-write=52 payload-bytes-read=3508168/5242880 (66.91%)
+2019-01-31 11:31:48 1548934308.995513 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3511683 total-bytes-write=52 payload-bytes-read=3511654/5242880 (66.98%)
+2019-01-31 11:31:49 1548934309.069401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3516165 total-bytes-write=52 payload-bytes-read=3516136/5242880 (67.06%)
+2019-01-31 11:31:49 1548934309.069480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3517659 total-bytes-write=52 payload-bytes-read=3517630/5242880 (67.09%)
+2019-01-31 11:31:49 1548934309.070420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3523087 total-bytes-write=52 payload-bytes-read=3523058/5242880 (67.20%)
+2019-01-31 11:31:49 1548934309.084687 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3526573 total-bytes-write=52 payload-bytes-read=3526544/5242880 (67.26%)
+2019-01-31 11:31:49 1548934309.085324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3531553 total-bytes-write=52 payload-bytes-read=3531524/5242880 (67.36%)
+2019-01-31 11:31:49 1548934309.157147 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3535039 total-bytes-write=52 payload-bytes-read=3535010/5242880 (67.42%)
+2019-01-31 11:31:49 1548934309.159551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3542957 total-bytes-write=52 payload-bytes-read=3542928/5242880 (67.58%)
+2019-01-31 11:31:49 1548934309.168428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3544949 total-bytes-write=52 payload-bytes-read=3544920/5242880 (67.61%)
+2019-01-31 11:31:49 1548934309.168851 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3547439 total-bytes-write=52 payload-bytes-read=3547410/5242880 (67.66%)
+2019-01-31 11:31:49 1548934309.177860 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3550925 total-bytes-write=52 payload-bytes-read=3550896/5242880 (67.73%)
+2019-01-31 11:31:49 1548934309.245296 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3554411 total-bytes-write=52 payload-bytes-read=3554382/5242880 (67.79%)
+2019-01-31 11:31:49 1548934309.288443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3576223 total-bytes-write=52 payload-bytes-read=3576194/5242880 (68.21%)
+2019-01-31 11:31:49 1548934309.338674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3583693 total-bytes-write=52 payload-bytes-read=3583664/5242880 (68.35%)
+2019-01-31 11:31:49 1548934309.338789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3587677 total-bytes-write=52 payload-bytes-read=3587648/5242880 (68.43%)
+2019-01-31 11:31:49 1548934309.348004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3591113 total-bytes-write=52 payload-bytes-read=3591084/5242880 (68.49%)
+2019-01-31 11:31:49 1548934309.355055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3592109 total-bytes-write=52 payload-bytes-read=3592080/5242880 (68.51%)
+2019-01-31 11:31:49 1548934309.356500 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3597089 total-bytes-write=52 payload-bytes-read=3597060/5242880 (68.61%)
+2019-01-31 11:31:49 1548934309.374827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3599081 total-bytes-write=52 payload-bytes-read=3599052/5242880 (68.65%)
+2019-01-31 11:31:49 1548934309.489554 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3604509 total-bytes-write=52 payload-bytes-read=3604480/5242880 (68.75%)
+2019-01-31 11:31:49 1548934309.489655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3607995 total-bytes-write=52 payload-bytes-read=3607966/5242880 (68.82%)
+2019-01-31 11:31:49 1548934309.545392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3611481 total-bytes-write=52 payload-bytes-read=3611452/5242880 (68.88%)
+2019-01-31 11:31:49 1548934309.588427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3626869 total-bytes-write=52 payload-bytes-read=3626840/5242880 (69.18%)
+2019-01-31 11:31:49 1548934309.632429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3630853 total-bytes-write=52 payload-bytes-read=3630824/5242880 (69.25%)
+2019-01-31 11:31:49 1548934309.638655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3634837 total-bytes-write=52 payload-bytes-read=3634808/5242880 (69.33%)
+2019-01-31 11:31:49 1548934309.680436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3650723 total-bytes-write=52 payload-bytes-read=3650694/5242880 (69.63%)
+2019-01-31 11:31:49 1548934309.724410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3656151 total-bytes-write=52 payload-bytes-read=3656122/5242880 (69.73%)
+2019-01-31 11:31:49 1548934309.730220 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3659637 total-bytes-write=52 payload-bytes-read=3659608/5242880 (69.80%)
+2019-01-31 11:31:49 1548934309.742994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3664617 total-bytes-write=52 payload-bytes-read=3664588/5242880 (69.90%)
+2019-01-31 11:31:49 1548934309.835624 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3669099 total-bytes-write=52 payload-bytes-read=3669070/5242880 (69.98%)
+2019-01-31 11:31:49 1548934309.847247 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3672535 total-bytes-write=52 payload-bytes-read=3672506/5242880 (70.05%)
+2019-01-31 11:31:49 1548934309.869496 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3676021 total-bytes-write=52 payload-bytes-read=3675992/5242880 (70.11%)
+2019-01-31 11:31:49 1548934309.869936 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3680005 total-bytes-write=52 payload-bytes-read=3679976/5242880 (70.19%)
+2019-01-31 11:31:49 1548934309.885795 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3680503 total-bytes-write=52 payload-bytes-read=3680474/5242880 (70.20%)
+2019-01-31 11:31:49 1548934309.886856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3683989 total-bytes-write=52 payload-bytes-read=3683960/5242880 (70.27%)
+2019-01-31 11:31:49 1548934309.887342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3686429 total-bytes-write=52 payload-bytes-read=3686400/5242880 (70.31%)
+2019-01-31 11:31:49 1548934309.902840 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3689915 total-bytes-write=52 payload-bytes-read=3689886/5242880 (70.38%)
+2019-01-31 11:31:49 1548934309.903666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3693899 total-bytes-write=52 payload-bytes-read=3693870/5242880 (70.45%)
+2019-01-31 11:31:49 1548934309.936630 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3697883 total-bytes-write=52 payload-bytes-read=3697854/5242880 (70.53%)
+2019-01-31 11:31:49 1548934309.980427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3707793 total-bytes-write=52 payload-bytes-read=3707764/5242880 (70.72%)
+2019-01-31 11:31:50 1548934310.093170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3711777 total-bytes-write=52 payload-bytes-read=3711748/5242880 (70.80%)
+2019-01-31 11:31:50 1548934310.094694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3717753 total-bytes-write=52 payload-bytes-read=3717724/5242880 (70.91%)
+2019-01-31 11:31:50 1548934310.094756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3718749 total-bytes-write=52 payload-bytes-read=3718720/5242880 (70.93%)
+2019-01-31 11:31:50 1548934310.097461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3726169 total-bytes-write=52 payload-bytes-read=3726140/5242880 (71.07%)
+2019-01-31 11:31:50 1548934310.097698 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3730651 total-bytes-write=52 payload-bytes-read=3730622/5242880 (71.16%)
+2019-01-31 11:31:50 1548934310.097843 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3734137 total-bytes-write=52 payload-bytes-read=3734108/5242880 (71.22%)
+2019-01-31 11:31:50 1548934310.187490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3737573 total-bytes-write=52 payload-bytes-read=3737544/5242880 (71.29%)
+2019-01-31 11:31:50 1548934310.189412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3745541 total-bytes-write=52 payload-bytes-read=3745512/5242880 (71.44%)
+2019-01-31 11:31:50 1548934310.189475 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3746039 total-bytes-write=52 payload-bytes-read=3746010/5242880 (71.45%)
+2019-01-31 11:31:50 1548934310.191781 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3750521 total-bytes-write=52 payload-bytes-read=3750492/5242880 (71.53%)
+2019-01-31 11:31:50 1548934310.192003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3756447 total-bytes-write=52 payload-bytes-read=3756418/5242880 (71.65%)
+2019-01-31 11:31:50 1548934310.193137 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3763419 total-bytes-write=52 payload-bytes-read=3763390/5242880 (71.78%)
+2019-01-31 11:31:50 1548934310.241138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3766905 total-bytes-write=52 payload-bytes-read=3766876/5242880 (71.85%)
+2019-01-31 11:31:50 1548934310.317005 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3767901 total-bytes-write=52 payload-bytes-read=3767872/5242880 (71.87%)
+2019-01-31 11:31:50 1548934310.318383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3771337 total-bytes-write=52 payload-bytes-read=3771308/5242880 (71.93%)
+2019-01-31 11:31:50 1548934310.328808 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3772831 total-bytes-write=52 payload-bytes-read=3772802/5242880 (71.96%)
+2019-01-31 11:31:50 1548934310.344335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3776317 total-bytes-write=52 payload-bytes-read=3776288/5242880 (72.03%)
+2019-01-31 11:31:50 1548934310.352557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3779803 total-bytes-write=52 payload-bytes-read=3779774/5242880 (72.09%)
+2019-01-31 11:31:50 1548934310.396417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3783787 total-bytes-write=52 payload-bytes-read=3783758/5242880 (72.17%)
+2019-01-31 11:31:50 1548934310.440404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3791705 total-bytes-write=52 payload-bytes-read=3791676/5242880 (72.32%)
+2019-01-31 11:31:50 1548934310.484417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3808587 total-bytes-write=52 payload-bytes-read=3808558/5242880 (72.64%)
+2019-01-31 11:31:50 1548934310.528409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3815559 total-bytes-write=52 payload-bytes-read=3815530/5242880 (72.78%)
+2019-01-31 11:31:50 1548934310.575870 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3816057 total-bytes-write=52 payload-bytes-read=3816028/5242880 (72.78%)
+2019-01-31 11:31:50 1548934310.576506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3819493 total-bytes-write=52 payload-bytes-read=3819464/5242880 (72.85%)
+2019-01-31 11:31:50 1548934310.619776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3819991 total-bytes-write=52 payload-bytes-read=3819962/5242880 (72.86%)
+2019-01-31 11:31:50 1548934310.620492 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3822481 total-bytes-write=52 payload-bytes-read=3822452/5242880 (72.91%)
+2019-01-31 11:31:50 1548934310.667688 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3825967 total-bytes-write=52 payload-bytes-read=3825938/5242880 (72.97%)
+2019-01-31 11:31:50 1548934310.699106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3829453 total-bytes-write=52 payload-bytes-read=3829424/5242880 (73.04%)
+2019-01-31 11:31:50 1548934310.740429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3845339 total-bytes-write=52 payload-bytes-read=3845310/5242880 (73.34%)
+2019-01-31 11:31:50 1548934310.784409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3855747 total-bytes-write=52 payload-bytes-read=3855718/5242880 (73.54%)
+2019-01-31 11:31:50 1548934310.818377 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3857241 total-bytes-write=52 payload-bytes-read=3857212/5242880 (73.57%)
+2019-01-31 11:31:50 1548934310.819402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3860727 total-bytes-write=52 payload-bytes-read=3860698/5242880 (73.64%)
+2019-01-31 11:31:50 1548934310.905860 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3861723 total-bytes-write=52 payload-bytes-read=3861694/5242880 (73.66%)
+2019-01-31 11:31:50 1548934310.986913 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3865209 total-bytes-write=52 payload-bytes-read=3865180/5242880 (73.72%)
+2019-01-31 11:31:51 1548934311.001078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3868645 total-bytes-write=52 payload-bytes-read=3868616/5242880 (73.79%)
+2019-01-31 11:31:51 1548934311.023206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3875617 total-bytes-write=52 payload-bytes-read=3875588/5242880 (73.92%)
+2019-01-31 11:31:51 1548934311.061065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3879103 total-bytes-write=52 payload-bytes-read=3879074/5242880 (73.99%)
+2019-01-31 11:31:51 1548934311.063657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3887021 total-bytes-write=52 payload-bytes-read=3886992/5242880 (74.14%)
+2019-01-31 11:31:51 1548934311.064775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3891005 total-bytes-write=52 payload-bytes-read=3890976/5242880 (74.21%)
+2019-01-31 11:31:51 1548934311.068083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3893993 total-bytes-write=52 payload-bytes-read=3893964/5242880 (74.27%)
+2019-01-31 11:31:51 1548934311.076029 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE total-bytes-read=3898973 total-bytes-write=52 payload-bytes-read=3898944/5242880 (74.37%)
+2019-01-31 11:31:51 1548934311.145003 [message] [shd-tgen-driver.c:107] [_tgendriver_onHeartbeat] [driver-heartbeat] bytes-read=14384901 bytes-written=372 current-transfers-succeeded=2 current-transfers-failed=1 total-transfers-succeeded=4 total-transfers-failed=1
+2019-01-31 11:31:51 1548934311.145058 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=PAYLOAD,error=NONE moving from state PAYLOAD to state ERROR
+2019-01-31 11:31:51 1548934311.145089 [info] [shd-tgen-transfer.c:371] [_tgentransfer_changeError] transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=ERROR,error=NONE moving from error NONE to error TIMEOUT
+2019-01-31 11:31:51 1548934311.145127 [message] [shd-tgen-transfer.c:1504] [_tgentransfer_log] [transfer-error] transport TCP,12,localhost:127.0.0.1:36440,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,6,phlox,GET,5242880,phlox,6,state=ERROR,error=TIMEOUT total-bytes-read=3898973 total-bytes-write=52 payload-bytes-read=3898944/5242880 (74.37%) usecs-to-socket-create=15 usecs-to-socket-connect=210 usecs-to-proxy-init=276 usecs-to-proxy-choice=332 usecs-to-proxy-request=391 usecs-to-proxy-response=-1 usecs-to-command=733364 usecs-to-response=1248161 usecs-to-first-byte=1365094 usecs-to-last-byte=-1 usecs-to-checksum=-1
+2019-01-31 11:31:51 1548934311.145240 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:31:51 1548934311.145299 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 12
+2019-01-31 11:31:51 1548934311.145365 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:31:51 1548934311.145427 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:31:51 1548934311.145661 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:31:51 1548934311.145769 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:32:04 1548934324.997178 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state RESPONSEB
+2019-01-31 11:32:04 1548934324.997267 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEB,error=NONE moving from state RESPONSEB to state RESPONSEC
+2019-01-31 11:32:04 1548934324.997332 [info] [shd-tgen-transport.c:905] [_tgentransport_receiveSocksResponseC] connection from localhost:127.0.0.1:36448 through socks proxy localhost:127.0.0.1:29280 to 4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080 successful
+2019-01-31 11:32:04 1548934324.997419 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEC,error=NONE moving from state RESPONSEC to state SUCCESS
+2019-01-31 11:32:04 1548934324.997547 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,7,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state RESPONSE
+2019-01-31 11:32:05 1548934325.599684 [info] [shd-tgen-transfer.c:428] [_tgentransfer_authenticate] transfer authentication successful!
+2019-01-31 11:32:05 1548934325.599766 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=RESPONSE,error=NONE moving from state RESPONSE to state PAYLOAD
+2019-01-31 11:32:05 1548934325.738548 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3515 total-bytes-write=52 payload-bytes-read=3486/5242880 (0.07%)
+2019-01-31 11:32:05 1548934325.823210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=7001 total-bytes-write=52 payload-bytes-read=6972/5242880 (0.13%)
+2019-01-31 11:32:05 1548934325.823985 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=7499 total-bytes-write=52 payload-bytes-read=7470/5242880 (0.14%)
+2019-01-31 11:32:05 1548934325.853941 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=10985 total-bytes-write=52 payload-bytes-read=10956/5242880 (0.21%)
+2019-01-31 11:32:05 1548934325.859889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=14969 total-bytes-write=52 payload-bytes-read=14940/5242880 (0.28%)
+2019-01-31 11:32:05 1548934325.862885 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=18903 total-bytes-write=52 payload-bytes-read=18874/5242880 (0.36%)
+2019-01-31 11:32:05 1548934325.913252 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=22389 total-bytes-write=52 payload-bytes-read=22360/5242880 (0.43%)
+2019-01-31 11:32:05 1548934325.949431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=22887 total-bytes-write=52 payload-bytes-read=22858/5242880 (0.44%)
+2019-01-31 11:32:05 1548934325.995648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=26373 total-bytes-write=52 payload-bytes-read=26344/5242880 (0.50%)
+2019-01-31 11:32:05 1548934325.997641 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=29859 total-bytes-write=52 payload-bytes-read=29830/5242880 (0.57%)
+2019-01-31 11:32:06 1548934326.020009 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=33793 total-bytes-write=52 payload-bytes-read=33764/5242880 (0.64%)
+2019-01-31 11:32:06 1548934326.021212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=37777 total-bytes-write=52 payload-bytes-read=37748/5242880 (0.72%)
+2019-01-31 11:32:06 1548934326.021560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=41761 total-bytes-write=52 payload-bytes-read=41732/5242880 (0.80%)
+2019-01-31 11:32:06 1548934326.033964 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=42259 total-bytes-write=52 payload-bytes-read=42230/5242880 (0.81%)
+2019-01-31 11:32:06 1548934326.081088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=46741 total-bytes-write=52 payload-bytes-read=46712/5242880 (0.89%)
+2019-01-31 11:32:06 1548934326.081168 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=47239 total-bytes-write=52 payload-bytes-read=47210/5242880 (0.90%)
+2019-01-31 11:32:06 1548934326.115699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=48733 total-bytes-write=52 payload-bytes-read=48704/5242880 (0.93%)
+2019-01-31 11:32:06 1548934326.153471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=52169 total-bytes-write=52 payload-bytes-read=52140/5242880 (0.99%)
+2019-01-31 11:32:06 1548934326.154317 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=55655 total-bytes-write=52 payload-bytes-read=55626/5242880 (1.06%)
+2019-01-31 11:32:06 1548934326.155736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=56651 total-bytes-write=52 payload-bytes-read=56622/5242880 (1.08%)
+2019-01-31 11:32:06 1548934326.170448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=60137 total-bytes-write=52 payload-bytes-read=60108/5242880 (1.15%)
+2019-01-31 11:32:06 1548934326.189337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=64121 total-bytes-write=52 payload-bytes-read=64092/5242880 (1.22%)
+2019-01-31 11:32:06 1548934326.192337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=68055 total-bytes-write=52 payload-bytes-read=68026/5242880 (1.30%)
+2019-01-31 11:32:06 1548934326.242200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=71541 total-bytes-write=52 payload-bytes-read=71512/5242880 (1.36%)
+2019-01-31 11:32:06 1548934326.247951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=72537 total-bytes-write=52 payload-bytes-read=72508/5242880 (1.38%)
+2019-01-31 11:32:06 1548934326.248019 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=73035 total-bytes-write=52 payload-bytes-read=73006/5242880 (1.39%)
+2019-01-31 11:32:06 1548934326.254075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=76023 total-bytes-write=52 payload-bytes-read=75994/5242880 (1.45%)
+2019-01-31 11:32:06 1548934326.258966 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=79509 total-bytes-write=52 payload-bytes-read=79480/5242880 (1.52%)
+2019-01-31 11:32:06 1548934326.260705 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=82945 total-bytes-write=52 payload-bytes-read=82916/5242880 (1.58%)
+2019-01-31 11:32:06 1548934326.270441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=86929 total-bytes-write=52 payload-bytes-read=86900/5242880 (1.66%)
+2019-01-31 11:32:06 1548934326.273761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=90415 total-bytes-write=52 payload-bytes-read=90386/5242880 (1.72%)
+2019-01-31 11:32:06 1548934326.305955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=90913 total-bytes-write=52 payload-bytes-read=90884/5242880 (1.73%)
+2019-01-31 11:32:06 1548934326.312542 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=94399 total-bytes-write=52 payload-bytes-read=94370/5242880 (1.80%)
+2019-01-31 11:32:06 1548934326.347371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=95395 total-bytes-write=52 payload-bytes-read=95366/5242880 (1.82%)
+2019-01-31 11:32:06 1548934326.384120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=98333 total-bytes-write=52 payload-bytes-read=98304/5242880 (1.88%)
+2019-01-31 11:32:06 1548934326.415835 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=100823 total-bytes-write=52 payload-bytes-read=100794/5242880 (1.92%)
+2019-01-31 11:32:06 1548934326.419344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=104309 total-bytes-write=52 payload-bytes-read=104280/5242880 (1.99%)
+2019-01-31 11:32:06 1548934326.422468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=108293 total-bytes-write=52 payload-bytes-read=108264/5242880 (2.06%)
+2019-01-31 11:32:06 1548934326.425353 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=112277 total-bytes-write=52 payload-bytes-read=112248/5242880 (2.14%)
+2019-01-31 11:32:06 1548934326.468451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=123183 total-bytes-write=52 payload-bytes-read=123154/5242880 (2.35%)
+2019-01-31 11:32:06 1548934326.548316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=125673 total-bytes-write=52 payload-bytes-read=125644/5242880 (2.40%)
+2019-01-31 11:32:06 1548934326.549827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=129159 total-bytes-write=52 payload-bytes-read=129130/5242880 (2.46%)
+2019-01-31 11:32:06 1548934326.550219 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=130155 total-bytes-write=52 payload-bytes-read=130126/5242880 (2.48%)
+2019-01-31 11:32:06 1548934326.551880 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=133591 total-bytes-write=52 payload-bytes-read=133562/5242880 (2.55%)
+2019-01-31 11:32:06 1548934326.552824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=137575 total-bytes-write=52 payload-bytes-read=137546/5242880 (2.62%)
+2019-01-31 11:32:06 1548934326.552918 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=141559 total-bytes-write=52 payload-bytes-read=141530/5242880 (2.70%)
+2019-01-31 11:32:06 1548934326.596411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=146041 total-bytes-write=52 payload-bytes-read=146012/5242880 (2.78%)
+2019-01-31 11:32:06 1548934326.642100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=147983 total-bytes-write=52 payload-bytes-read=147954/5242880 (2.82%)
+2019-01-31 11:32:06 1548934326.671577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=151469 total-bytes-write=52 payload-bytes-read=151440/5242880 (2.89%)
+2019-01-31 11:32:06 1548934326.678598 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=154955 total-bytes-write=52 payload-bytes-read=154926/5242880 (2.95%)
+2019-01-31 11:32:06 1548934326.720414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=172833 total-bytes-write=52 payload-bytes-read=172804/5242880 (3.30%)
+2019-01-31 11:32:06 1548934326.814062 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=175323 total-bytes-write=52 payload-bytes-read=175294/5242880 (3.34%)
+2019-01-31 11:32:06 1548934326.816948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=178809 total-bytes-write=52 payload-bytes-read=178780/5242880 (3.41%)
+2019-01-31 11:32:06 1548934326.817486 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=180751 total-bytes-write=52 payload-bytes-read=180722/5242880 (3.45%)
+2019-01-31 11:32:06 1548934326.818948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=184237 total-bytes-write=52 payload-bytes-read=184208/5242880 (3.51%)
+2019-01-31 11:32:06 1548934326.819678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=188221 total-bytes-write=52 payload-bytes-read=188192/5242880 (3.59%)
+2019-01-31 11:32:06 1548934326.820000 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=192205 total-bytes-write=52 payload-bytes-read=192176/5242880 (3.67%)
+2019-01-31 11:32:06 1548934326.860384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=196637 total-bytes-write=52 payload-bytes-read=196608/5242880 (3.75%)
+2019-01-31 11:32:06 1548934326.904381 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=200621 total-bytes-write=52 payload-bytes-read=200592/5242880 (3.83%)
+2019-01-31 11:32:06 1548934326.939684 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=204107 total-bytes-write=52 payload-bytes-read=204078/5242880 (3.89%)
+2019-01-31 11:32:06 1548934326.946510 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=204605 total-bytes-write=52 payload-bytes-read=204576/5242880 (3.90%)
+2019-01-31 11:32:06 1548934326.947068 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=208091 total-bytes-write=52 payload-bytes-read=208062/5242880 (3.97%)
+2019-01-31 11:32:06 1548934326.949310 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=215013 total-bytes-write=52 payload-bytes-read=214984/5242880 (4.10%)
+2019-01-31 11:32:06 1548934326.949374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=215511 total-bytes-write=52 payload-bytes-read=215482/5242880 (4.11%)
+2019-01-31 11:32:06 1548934326.962039 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=219495 total-bytes-write=52 payload-bytes-read=219466/5242880 (4.19%)
+2019-01-31 11:32:06 1548934326.962303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=221487 total-bytes-write=52 payload-bytes-read=221458/5242880 (4.22%)
+2019-01-31 11:32:06 1548934326.964914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=228459 total-bytes-write=52 payload-bytes-read=228430/5242880 (4.36%)
+2019-01-31 11:32:06 1548934326.964977 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=228957 total-bytes-write=52 payload-bytes-read=228928/5242880 (4.37%)
+2019-01-31 11:32:06 1548934326.978814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=232891 total-bytes-write=52 payload-bytes-read=232862/5242880 (4.44%)
+2019-01-31 11:32:06 1548934326.987181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=234883 total-bytes-write=52 payload-bytes-read=234854/5242880 (4.48%)
+2019-01-31 11:32:07 1548934327.080614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=238369 total-bytes-write=52 payload-bytes-read=238340/5242880 (4.55%)
+2019-01-31 11:32:07 1548934327.096113 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=239365 total-bytes-write=52 payload-bytes-read=239336/5242880 (4.56%)
+2019-01-31 11:32:07 1548934327.097139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=243847 total-bytes-write=52 payload-bytes-read=243818/5242880 (4.65%)
+2019-01-31 11:32:07 1548934327.098329 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=250769 total-bytes-write=52 payload-bytes-read=250740/5242880 (4.78%)
+2019-01-31 11:32:07 1548934327.098396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=251267 total-bytes-write=52 payload-bytes-read=251238/5242880 (4.79%)
+2019-01-31 11:32:07 1548934327.099324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=255251 total-bytes-write=52 payload-bytes-read=255222/5242880 (4.87%)
+2019-01-31 11:32:07 1548934327.099410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=259235 total-bytes-write=52 payload-bytes-read=259206/5242880 (4.94%)
+2019-01-31 11:32:07 1548934327.140389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=267153 total-bytes-write=52 payload-bytes-read=267124/5242880 (5.09%)
+2019-01-31 11:32:07 1548934327.204222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=269145 total-bytes-write=52 payload-bytes-read=269116/5242880 (5.13%)
+2019-01-31 11:32:07 1548934327.242656 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=272631 total-bytes-write=52 payload-bytes-read=272602/5242880 (5.20%)
+2019-01-31 11:32:07 1548934327.248543 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=276615 total-bytes-write=52 payload-bytes-read=276586/5242880 (5.28%)
+2019-01-31 11:32:07 1548934327.248690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=283537 total-bytes-write=52 payload-bytes-read=283508/5242880 (5.41%)
+2019-01-31 11:32:07 1548934327.248761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=287521 total-bytes-write=52 payload-bytes-read=287492/5242880 (5.48%)
+2019-01-31 11:32:07 1548934327.248822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=288019 total-bytes-write=52 payload-bytes-read=287990/5242880 (5.49%)
+2019-01-31 11:32:07 1548934327.249670 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=292003 total-bytes-write=52 payload-bytes-read=291974/5242880 (5.57%)
+2019-01-31 11:32:07 1548934327.249758 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=295937 total-bytes-write=52 payload-bytes-read=295908/5242880 (5.64%)
+2019-01-31 11:32:07 1548934327.249869 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=299423 total-bytes-write=52 payload-bytes-read=299394/5242880 (5.71%)
+2019-01-31 11:32:07 1548934327.250536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=299921 total-bytes-write=52 payload-bytes-read=299892/5242880 (5.72%)
+2019-01-31 11:32:07 1548934327.292015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=303905 total-bytes-write=52 payload-bytes-read=303876/5242880 (5.80%)
+2019-01-31 11:32:07 1548934327.362274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=306395 total-bytes-write=52 payload-bytes-read=306366/5242880 (5.84%)
+2019-01-31 11:32:07 1548934327.363445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=309881 total-bytes-write=52 payload-bytes-read=309852/5242880 (5.91%)
+2019-01-31 11:32:07 1548934327.370166 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=313815 total-bytes-write=52 payload-bytes-read=313786/5242880 (5.98%)
+2019-01-31 11:32:07 1548934327.375505 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=314811 total-bytes-write=52 payload-bytes-read=314782/5242880 (6.00%)
+2019-01-31 11:32:07 1548934327.377082 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=321783 total-bytes-write=52 payload-bytes-read=321754/5242880 (6.14%)
+2019-01-31 11:32:07 1548934327.377170 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=322281 total-bytes-write=52 payload-bytes-read=322252/5242880 (6.15%)
+2019-01-31 11:32:07 1548934327.392820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=326265 total-bytes-write=52 payload-bytes-read=326236/5242880 (6.22%)
+2019-01-31 11:32:07 1548934327.393341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=330199 total-bytes-write=52 payload-bytes-read=330170/5242880 (6.30%)
+2019-01-31 11:32:07 1548934327.393426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=330697 total-bytes-write=52 payload-bytes-read=330668/5242880 (6.31%)
+2019-01-31 11:32:07 1548934327.405706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=331195 total-bytes-write=52 payload-bytes-read=331166/5242880 (6.32%)
+2019-01-31 11:32:07 1548934327.407385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=334681 total-bytes-write=52 payload-bytes-read=334652/5242880 (6.38%)
+2019-01-31 11:32:07 1548934327.407642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=338167 total-bytes-write=52 payload-bytes-read=338138/5242880 (6.45%)
+2019-01-31 11:32:07 1548934327.448392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=342649 total-bytes-write=52 payload-bytes-read=342620/5242880 (6.53%)
+2019-01-31 11:32:07 1548934327.492397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=346085 total-bytes-write=52 payload-bytes-read=346056/5242880 (6.60%)
+2019-01-31 11:32:07 1548934327.534885 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=350069 total-bytes-write=52 payload-bytes-read=350040/5242880 (6.68%)
+2019-01-31 11:32:07 1548934327.535442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=353555 total-bytes-write=52 payload-bytes-read=353526/5242880 (6.74%)
+2019-01-31 11:32:07 1548934327.554205 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=357041 total-bytes-write=52 payload-bytes-read=357012/5242880 (6.81%)
+2019-01-31 11:32:07 1548934327.596431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=371931 total-bytes-write=52 payload-bytes-read=371902/5242880 (7.09%)
+2019-01-31 11:32:07 1548934327.640433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=388315 total-bytes-write=52 payload-bytes-read=388286/5242880 (7.41%)
+2019-01-31 11:32:07 1548934327.684385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=389311 total-bytes-write=52 payload-bytes-read=389282/5242880 (7.42%)
+2019-01-31 11:32:07 1548934327.719575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=391801 total-bytes-write=52 payload-bytes-read=391772/5242880 (7.47%)
+2019-01-31 11:32:07 1548934327.741361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=395237 total-bytes-write=52 payload-bytes-read=395208/5242880 (7.54%)
+2019-01-31 11:32:07 1548934327.780536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=396731 total-bytes-write=52 payload-bytes-read=396702/5242880 (7.57%)
+2019-01-31 11:32:07 1548934327.785123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=400217 total-bytes-write=52 payload-bytes-read=400188/5242880 (7.63%)
+2019-01-31 11:32:07 1548934327.787807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=403703 total-bytes-write=52 payload-bytes-read=403674/5242880 (7.70%)
+2019-01-31 11:32:07 1548934327.828459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=432487 total-bytes-write=52 payload-bytes-read=432458/5242880 (8.25%)
+2019-01-31 11:32:07 1548934327.872406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=440953 total-bytes-write=52 payload-bytes-read=440924/5242880 (8.41%)
+2019-01-31 11:32:07 1548934327.902326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=444389 total-bytes-write=52 payload-bytes-read=444360/5242880 (8.48%)
+2019-01-31 11:32:07 1548934327.915431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=445385 total-bytes-write=52 payload-bytes-read=445356/5242880 (8.49%)
+2019-01-31 11:32:07 1548934327.930257 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=449369 total-bytes-write=52 payload-bytes-read=449340/5242880 (8.57%)
+2019-01-31 11:32:07 1548934327.930382 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=456839 total-bytes-write=52 payload-bytes-read=456810/5242880 (8.71%)
+2019-01-31 11:32:07 1548934327.950300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=460773 total-bytes-write=52 payload-bytes-read=460744/5242880 (8.79%)
+2019-01-31 11:32:07 1548934327.950369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=462267 total-bytes-write=52 payload-bytes-read=462238/5242880 (8.82%)
+2019-01-31 11:32:07 1548934327.956969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=465753 total-bytes-write=52 payload-bytes-read=465724/5242880 (8.88%)
+2019-01-31 11:32:07 1548934327.961736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=469737 total-bytes-write=52 payload-bytes-read=469708/5242880 (8.96%)
+2019-01-31 11:32:07 1548934327.963710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=473223 total-bytes-write=52 payload-bytes-read=473194/5242880 (9.03%)
+2019-01-31 11:32:08 1548934328.000384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=477157 total-bytes-write=52 payload-bytes-read=477128/5242880 (9.10%)
+2019-01-31 11:32:08 1548934328.005065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=480643 total-bytes-write=52 payload-bytes-read=480614/5242880 (9.17%)
+2019-01-31 11:32:08 1548934328.005448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=481141 total-bytes-write=52 payload-bytes-read=481112/5242880 (9.18%)
+2019-01-31 11:32:08 1548934328.015960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=482635 total-bytes-write=52 payload-bytes-read=482606/5242880 (9.20%)
+2019-01-31 11:32:08 1548934328.025218 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=486121 total-bytes-write=52 payload-bytes-read=486092/5242880 (9.27%)
+2019-01-31 11:32:08 1548934328.028065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=489607 total-bytes-write=52 payload-bytes-read=489578/5242880 (9.34%)
+2019-01-31 11:32:08 1548934328.068402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=499517 total-bytes-write=52 payload-bytes-read=499488/5242880 (9.53%)
+2019-01-31 11:32:08 1548934328.112400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=511419 total-bytes-write=52 payload-bytes-read=511390/5242880 (9.75%)
+2019-01-31 11:32:08 1548934328.156373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=514905 total-bytes-write=52 payload-bytes-read=514876/5242880 (9.82%)
+2019-01-31 11:32:08 1548934328.206580 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=518889 total-bytes-write=52 payload-bytes-read=518860/5242880 (9.90%)
+2019-01-31 11:32:08 1548934328.206724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=525313 total-bytes-write=52 payload-bytes-read=525284/5242880 (10.02%)
+2019-01-31 11:32:08 1548934328.206848 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=532285 total-bytes-write=52 payload-bytes-read=532256/5242880 (10.15%)
+2019-01-31 11:32:08 1548934328.206914 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=535771 total-bytes-write=52 payload-bytes-read=535742/5242880 (10.22%)
+2019-01-31 11:32:08 1548934328.246773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=536767 total-bytes-write=52 payload-bytes-read=536738/5242880 (10.24%)
+2019-01-31 11:32:08 1548934328.332546 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=540253 total-bytes-write=52 payload-bytes-read=540224/5242880 (10.30%)
+2019-01-31 11:32:08 1548934328.420262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=543689 total-bytes-write=52 payload-bytes-read=543660/5242880 (10.37%)
+2019-01-31 11:32:08 1548934328.441724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=545681 total-bytes-write=52 payload-bytes-read=545652/5242880 (10.41%)
+2019-01-31 11:32:08 1548934328.443825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=552653 total-bytes-write=52 payload-bytes-read=552624/5242880 (10.54%)
+2019-01-31 11:32:08 1548934328.453360 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=556637 total-bytes-write=52 payload-bytes-read=556608/5242880 (10.62%)
+2019-01-31 11:32:08 1548934328.455364 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=560571 total-bytes-write=52 payload-bytes-read=560542/5242880 (10.69%)
+2019-01-31 11:32:08 1548934328.455862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=564057 total-bytes-write=52 payload-bytes-read=564028/5242880 (10.76%)
+2019-01-31 11:32:08 1548934328.458612 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=568041 total-bytes-write=52 payload-bytes-read=568012/5242880 (10.83%)
+2019-01-31 11:32:08 1548934328.477616 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=572025 total-bytes-write=52 payload-bytes-read=571996/5242880 (10.91%)
+2019-01-31 11:32:08 1548934328.520430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=591845 total-bytes-write=52 payload-bytes-read=591816/5242880 (11.29%)
+2019-01-31 11:32:08 1548934328.564391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=595829 total-bytes-write=52 payload-bytes-read=595800/5242880 (11.36%)
+2019-01-31 11:32:08 1548934328.576605 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=596825 total-bytes-write=52 payload-bytes-read=596796/5242880 (11.38%)
+2019-01-31 11:32:08 1548934328.578825 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=600311 total-bytes-write=52 payload-bytes-read=600282/5242880 (11.45%)
+2019-01-31 11:32:08 1548934328.582372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=604295 total-bytes-write=52 payload-bytes-read=604266/5242880 (11.53%)
+2019-01-31 11:32:08 1548934328.584105 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=606237 total-bytes-write=52 payload-bytes-read=606208/5242880 (11.56%)
+2019-01-31 11:32:08 1548934328.584864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=609723 total-bytes-write=52 payload-bytes-read=609694/5242880 (11.63%)
+2019-01-31 11:32:08 1548934328.586070 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=610719 total-bytes-write=52 payload-bytes-read=610690/5242880 (11.65%)
+2019-01-31 11:32:08 1548934328.608754 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=614205 total-bytes-write=52 payload-bytes-read=614176/5242880 (11.71%)
+2019-01-31 11:32:08 1548934328.622077 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=620679 total-bytes-write=52 payload-bytes-read=620650/5242880 (11.84%)
+2019-01-31 11:32:08 1548934328.642188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=621177 total-bytes-write=52 payload-bytes-read=621148/5242880 (11.85%)
+2019-01-31 11:32:08 1548934328.644265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=624613 total-bytes-write=52 payload-bytes-read=624584/5242880 (11.91%)
+2019-01-31 11:32:08 1548934328.683002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=626107 total-bytes-write=52 payload-bytes-read=626078/5242880 (11.94%)
+2019-01-31 11:32:08 1548934328.683407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=629593 total-bytes-write=52 payload-bytes-read=629564/5242880 (12.01%)
+2019-01-31 11:32:08 1548934328.683652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=630091 total-bytes-write=52 payload-bytes-read=630062/5242880 (12.02%)
+2019-01-31 11:32:08 1548934328.701639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=633577 total-bytes-write=52 payload-bytes-read=633548/5242880 (12.08%)
+2019-01-31 11:32:08 1548934328.723819 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=637063 total-bytes-write=52 payload-bytes-read=637034/5242880 (12.15%)
+2019-01-31 11:32:08 1548934328.768389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=638557 total-bytes-write=52 payload-bytes-read=638528/5242880 (12.18%)
+2019-01-31 11:32:08 1548934328.772507 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=641993 total-bytes-write=52 payload-bytes-read=641964/5242880 (12.24%)
+2019-01-31 11:32:08 1548934328.778347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=645479 total-bytes-write=52 payload-bytes-read=645450/5242880 (12.31%)
+2019-01-31 11:32:08 1548934328.820424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=670329 total-bytes-write=52 payload-bytes-read=670300/5242880 (12.78%)
+2019-01-31 11:32:08 1548934328.864412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=690647 total-bytes-write=52 payload-bytes-read=690618/5242880 (13.17%)
+2019-01-31 11:32:08 1548934328.894263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=694631 total-bytes-write=52 payload-bytes-read=694602/5242880 (13.25%)
+2019-01-31 11:32:08 1548934328.895716 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=698615 total-bytes-write=52 payload-bytes-read=698586/5242880 (13.32%)
+2019-01-31 11:32:08 1548934328.936409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=714003 total-bytes-write=52 payload-bytes-read=713974/5242880 (13.62%)
+2019-01-31 11:32:08 1548934328.980430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=735865 total-bytes-write=52 payload-bytes-read=735836/5242880 (14.03%)
+2019-01-31 11:32:09 1548934329.024430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=755187 total-bytes-write=52 payload-bytes-read=755158/5242880 (14.40%)
+2019-01-31 11:32:09 1548934329.057934 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=758673 total-bytes-write=52 payload-bytes-read=758644/5242880 (14.47%)
+2019-01-31 11:32:09 1548934329.060775 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=760665 total-bytes-write=52 payload-bytes-read=760636/5242880 (14.51%)
+2019-01-31 11:32:09 1548934329.112617 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=764151 total-bytes-write=52 payload-bytes-read=764122/5242880 (14.57%)
+2019-01-31 11:32:09 1548934329.122237 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=765147 total-bytes-write=52 payload-bytes-read=765118/5242880 (14.59%)
+2019-01-31 11:32:09 1548934329.138398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=769131 total-bytes-write=52 payload-bytes-read=769102/5242880 (14.67%)
+2019-01-31 11:32:09 1548934329.138465 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=770077 total-bytes-write=52 payload-bytes-read=770048/5242880 (14.69%)
+2019-01-31 11:32:09 1548934329.145223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=773563 total-bytes-write=52 payload-bytes-read=773534/5242880 (14.75%)
+2019-01-31 11:32:09 1548934329.148679 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=777547 total-bytes-write=52 payload-bytes-read=777518/5242880 (14.83%)
+2019-01-31 11:32:09 1548934329.148737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=778045 total-bytes-write=52 payload-bytes-read=778016/5242880 (14.84%)
+2019-01-31 11:32:09 1548934329.152337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=781531 total-bytes-write=52 payload-bytes-read=781502/5242880 (14.91%)
+2019-01-31 11:32:09 1548934329.156038 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=782527 total-bytes-write=52 payload-bytes-read=782498/5242880 (14.92%)
+2019-01-31 11:32:09 1548934329.164404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=786013 total-bytes-write=52 payload-bytes-read=785984/5242880 (14.99%)
+2019-01-31 11:32:09 1548934329.177146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=788453 total-bytes-write=52 payload-bytes-read=788424/5242880 (15.04%)
+2019-01-31 11:32:09 1548934329.178034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=791939 total-bytes-write=52 payload-bytes-read=791910/5242880 (15.10%)
+2019-01-31 11:32:09 1548934329.194060 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=792437 total-bytes-write=52 payload-bytes-read=792408/5242880 (15.11%)
+2019-01-31 11:32:09 1548934329.342844 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=792935 total-bytes-write=52 payload-bytes-read=792906/5242880 (15.12%)
+2019-01-31 11:32:09 1548934329.399535 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=793931 total-bytes-write=52 payload-bytes-read=793902/5242880 (15.14%)
+2019-01-31 11:32:09 1548934329.408739 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=797417 total-bytes-write=52 payload-bytes-read=797388/5242880 (15.21%)
+2019-01-31 11:32:09 1548934329.409933 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=800903 total-bytes-write=52 payload-bytes-read=800874/5242880 (15.28%)
+2019-01-31 11:32:09 1548934329.452480 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=814299 total-bytes-write=52 payload-bytes-read=814270/5242880 (15.53%)
+2019-01-31 11:32:09 1548934329.496408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=836609 total-bytes-write=52 payload-bytes-read=836580/5242880 (15.96%)
+2019-01-31 11:32:09 1548934329.540374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=837605 total-bytes-write=52 payload-bytes-read=837576/5242880 (15.98%)
+2019-01-31 11:32:09 1548934329.544067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=841091 total-bytes-write=52 payload-bytes-read=841062/5242880 (16.04%)
+2019-01-31 11:32:09 1548934329.558277 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=844577 total-bytes-write=52 payload-bytes-read=844548/5242880 (16.11%)
+2019-01-31 11:32:09 1548934329.600428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=871867 total-bytes-write=52 payload-bytes-read=871838/5242880 (16.63%)
+2019-01-31 11:32:09 1548934329.644437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=879337 total-bytes-write=52 payload-bytes-read=879308/5242880 (16.77%)
+2019-01-31 11:32:09 1548934329.661160 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=879835 total-bytes-write=52 payload-bytes-read=879806/5242880 (16.78%)
+2019-01-31 11:32:09 1548934329.719894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=883321 total-bytes-write=52 payload-bytes-read=883292/5242880 (16.85%)
+2019-01-31 11:32:09 1548934329.743900 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=884765 total-bytes-write=52 payload-bytes-read=884736/5242880 (16.88%)
+2019-01-31 11:32:09 1548934329.806544 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=888251 total-bytes-write=52 payload-bytes-read=888222/5242880 (16.94%)
+2019-01-31 11:32:09 1548934329.826064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=891737 total-bytes-write=52 payload-bytes-read=891708/5242880 (17.01%)
+2019-01-31 11:32:09 1548934329.868432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=907623 total-bytes-write=52 payload-bytes-read=907594/5242880 (17.31%)
+2019-01-31 11:32:09 1548934329.912413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=916587 total-bytes-write=52 payload-bytes-read=916558/5242880 (17.48%)
+2019-01-31 11:32:09 1548934329.917468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=920023 total-bytes-write=52 payload-bytes-read=919994/5242880 (17.55%)
+2019-01-31 11:32:09 1548934329.918139 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=921517 total-bytes-write=52 payload-bytes-read=921488/5242880 (17.58%)
+2019-01-31 11:32:09 1548934329.935662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=925003 total-bytes-write=52 payload-bytes-read=924974/5242880 (17.64%)
+2019-01-31 11:32:09 1548934329.942786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=928987 total-bytes-write=52 payload-bytes-read=928958/5242880 (17.72%)
+2019-01-31 11:32:09 1548934329.942890 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=932473 total-bytes-write=52 payload-bytes-read=932444/5242880 (17.78%)
+2019-01-31 11:32:10 1548934330.015159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=935909 total-bytes-write=52 payload-bytes-read=935880/5242880 (17.85%)
+2019-01-31 11:32:10 1548934330.015596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=939893 total-bytes-write=52 payload-bytes-read=939864/5242880 (17.93%)
+2019-01-31 11:32:10 1548934330.015669 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=941387 total-bytes-write=52 payload-bytes-read=941358/5242880 (17.95%)
+2019-01-31 11:32:10 1548934330.015915 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=948359 total-bytes-write=52 payload-bytes-read=948330/5242880 (18.09%)
+2019-01-31 11:32:10 1548934330.015984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=949853 total-bytes-write=52 payload-bytes-read=949824/5242880 (18.12%)
+2019-01-31 11:32:10 1548934330.022549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=953289 total-bytes-write=52 payload-bytes-read=953260/5242880 (18.18%)
+2019-01-31 11:32:10 1548934330.036707 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=956775 total-bytes-write=52 payload-bytes-read=956746/5242880 (18.25%)
+2019-01-31 11:32:10 1548934330.049184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=960261 total-bytes-write=52 payload-bytes-read=960232/5242880 (18.31%)
+2019-01-31 11:32:10 1548934330.096415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=974653 total-bytes-write=52 payload-bytes-read=974624/5242880 (18.59%)
+2019-01-31 11:32:10 1548934330.140407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=988049 total-bytes-write=52 payload-bytes-read=988020/5242880 (18.84%)
+2019-01-31 11:32:10 1548934330.143193 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=992033 total-bytes-write=52 payload-bytes-read=992004/5242880 (18.92%)
+2019-01-31 11:32:10 1548934330.169741 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=993029 total-bytes-write=52 payload-bytes-read=993000/5242880 (18.94%)
+2019-01-31 11:32:10 1548934330.210272 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=996017 total-bytes-write=52 payload-bytes-read=995988/5242880 (19.00%)
+2019-01-31 11:32:10 1548934330.283042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=999453 total-bytes-write=52 payload-bytes-read=999424/5242880 (19.06%)
+2019-01-31 11:32:10 1548934330.350679 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1002939 total-bytes-write=52 payload-bytes-read=1002910/5242880 (19.13%)
+2019-01-31 11:32:10 1548934330.362738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1006425 total-bytes-write=52 payload-bytes-read=1006396/5242880 (19.20%)
+2019-01-31 11:32:10 1548934330.404448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1026793 total-bytes-write=52 payload-bytes-read=1026764/5242880 (19.58%)
+2019-01-31 11:32:10 1548934330.448454 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1052091 total-bytes-write=52 payload-bytes-read=1052062/5242880 (20.07%)
+2019-01-31 11:32:10 1548934330.492431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1080925 total-bytes-write=52 payload-bytes-read=1080896/5242880 (20.62%)
+2019-01-31 11:32:10 1548934330.536413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1092329 total-bytes-write=52 payload-bytes-read=1092300/5242880 (20.83%)
+2019-01-31 11:32:10 1548934330.551240 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1093325 total-bytes-write=52 payload-bytes-read=1093296/5242880 (20.85%)
+2019-01-31 11:32:10 1548934330.552649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1095317 total-bytes-write=52 payload-bytes-read=1095288/5242880 (20.89%)
+2019-01-31 11:32:10 1548934330.561714 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1098753 total-bytes-write=52 payload-bytes-read=1098724/5242880 (20.96%)
+2019-01-31 11:32:10 1548934330.566098 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1101243 total-bytes-write=52 payload-bytes-read=1101214/5242880 (21.00%)
+2019-01-31 11:32:10 1548934330.580351 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1104729 total-bytes-write=52 payload-bytes-read=1104700/5242880 (21.07%)
+2019-01-31 11:32:10 1548934330.583504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1108215 total-bytes-write=52 payload-bytes-read=1108186/5242880 (21.14%)
+2019-01-31 11:32:10 1548934330.624440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1120117 total-bytes-write=52 payload-bytes-read=1120088/5242880 (21.36%)
+2019-01-31 11:32:10 1548934330.668407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1127089 total-bytes-write=52 payload-bytes-read=1127060/5242880 (21.50%)
+2019-01-31 11:32:10 1548934330.672763 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1127587 total-bytes-write=52 payload-bytes-read=1127558/5242880 (21.51%)
+2019-01-31 11:32:10 1548934330.681859 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1130525 total-bytes-write=52 payload-bytes-read=1130496/5242880 (21.56%)
+2019-01-31 11:32:10 1548934330.697203 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1134011 total-bytes-write=52 payload-bytes-read=1133982/5242880 (21.63%)
+2019-01-31 11:32:10 1548934330.716361 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1137497 total-bytes-write=52 payload-bytes-read=1137468/5242880 (21.70%)
+2019-01-31 11:32:10 1548934330.760390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1141481 total-bytes-write=52 payload-bytes-read=1141452/5242880 (21.77%)
+2019-01-31 11:32:10 1548934330.804440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1157367 total-bytes-write=52 payload-bytes-read=1157338/5242880 (22.07%)
+2019-01-31 11:32:10 1548934330.848431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1166281 total-bytes-write=52 payload-bytes-read=1166252/5242880 (22.24%)
+2019-01-31 11:32:10 1548934330.851576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1169767 total-bytes-write=52 payload-bytes-read=1169738/5242880 (22.31%)
+2019-01-31 11:32:10 1548934330.861737 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1173253 total-bytes-write=52 payload-bytes-read=1173224/5242880 (22.38%)
+2019-01-31 11:32:10 1548934330.904407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1185155 total-bytes-write=52 payload-bytes-read=1185126/5242880 (22.60%)
+2019-01-31 11:32:10 1548934330.948424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1191131 total-bytes-write=52 payload-bytes-read=1191102/5242880 (22.72%)
+2019-01-31 11:32:10 1548934330.948814 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1194617 total-bytes-write=52 payload-bytes-read=1194588/5242880 (22.78%)
+2019-01-31 11:32:10 1548934330.972330 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1198053 total-bytes-write=52 payload-bytes-read=1198024/5242880 (22.85%)
+2019-01-31 11:32:10 1548934330.973968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1199547 total-bytes-write=52 payload-bytes-read=1199518/5242880 (22.88%)
+2019-01-31 11:32:10 1548934330.975527 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1203033 total-bytes-write=52 payload-bytes-read=1203004/5242880 (22.95%)
+2019-01-31 11:32:10 1548934330.984703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1207017 total-bytes-write=52 payload-bytes-read=1206988/5242880 (23.02%)
+2019-01-31 11:32:11 1548934331.033636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1208013 total-bytes-write=52 payload-bytes-read=1207984/5242880 (23.04%)
+2019-01-31 11:32:11 1548934331.038055 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1211997 total-bytes-write=52 payload-bytes-read=1211968/5242880 (23.12%)
+2019-01-31 11:32:11 1548934331.038131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1215433 total-bytes-write=52 payload-bytes-read=1215404/5242880 (23.18%)
+2019-01-31 11:32:11 1548934331.042001 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1219417 total-bytes-write=52 payload-bytes-read=1219388/5242880 (23.26%)
+2019-01-31 11:32:11 1548934331.058183 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1223401 total-bytes-write=52 payload-bytes-read=1223372/5242880 (23.33%)
+2019-01-31 11:32:11 1548934331.100433 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1230323 total-bytes-write=52 payload-bytes-read=1230294/5242880 (23.47%)
+2019-01-31 11:32:11 1548934331.144470 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1240781 total-bytes-write=52 payload-bytes-read=1240752/5242880 (23.67%)
+2019-01-31 11:32:11 1548934331.188426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1252683 total-bytes-write=52 payload-bytes-read=1252654/5242880 (23.89%)
+2019-01-31 11:32:11 1548934331.232395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1256667 total-bytes-write=52 payload-bytes-read=1256638/5242880 (23.97%)
+2019-01-31 11:32:11 1548934331.253748 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1257663 total-bytes-write=52 payload-bytes-read=1257634/5242880 (23.99%)
+2019-01-31 11:32:11 1548934331.298621 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1260153 total-bytes-write=52 payload-bytes-read=1260124/5242880 (24.03%)
+2019-01-31 11:32:11 1548934331.349111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1261149 total-bytes-write=52 payload-bytes-read=1261120/5242880 (24.05%)
+2019-01-31 11:32:11 1548934331.349943 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1264585 total-bytes-write=52 payload-bytes-read=1264556/5242880 (24.12%)
+2019-01-31 11:32:11 1548934331.352115 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1268569 total-bytes-write=52 payload-bytes-read=1268540/5242880 (24.20%)
+2019-01-31 11:32:11 1548934331.352201 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1272553 total-bytes-write=52 payload-bytes-read=1272524/5242880 (24.27%)
+2019-01-31 11:32:11 1548934331.392472 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1285451 total-bytes-write=52 payload-bytes-read=1285422/5242880 (24.52%)
+2019-01-31 11:32:11 1548934331.436447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1307811 total-bytes-write=52 payload-bytes-read=1307782/5242880 (24.94%)
+2019-01-31 11:32:11 1548934331.480450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1327631 total-bytes-write=52 payload-bytes-read=1327602/5242880 (25.32%)
+2019-01-31 11:32:11 1548934331.487167 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1328627 total-bytes-write=52 payload-bytes-read=1328598/5242880 (25.34%)
+2019-01-31 11:32:11 1548934331.488749 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1330121 total-bytes-write=52 payload-bytes-read=1330092/5242880 (25.37%)
+2019-01-31 11:32:11 1548934331.501328 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1333607 total-bytes-write=52 payload-bytes-read=1333578/5242880 (25.44%)
+2019-01-31 11:32:11 1548934331.502589 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1337591 total-bytes-write=52 payload-bytes-read=1337562/5242880 (25.51%)
+2019-01-31 11:32:11 1548934331.502659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1338089 total-bytes-write=52 payload-bytes-read=1338060/5242880 (25.52%)
+2019-01-31 11:32:11 1548934331.536128 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1341575 total-bytes-write=52 payload-bytes-read=1341546/5242880 (25.59%)
+2019-01-31 11:32:11 1548934331.558444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1343069 total-bytes-write=52 payload-bytes-read=1343040/5242880 (25.62%)
+2019-01-31 11:32:11 1548934331.560464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1346505 total-bytes-write=52 payload-bytes-read=1346476/5242880 (25.68%)
+2019-01-31 11:32:11 1548934331.562780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1349991 total-bytes-write=52 payload-bytes-read=1349962/5242880 (25.75%)
+2019-01-31 11:32:11 1548934331.570865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1354473 total-bytes-write=52 payload-bytes-read=1354444/5242880 (25.83%)
+2019-01-31 11:32:11 1548934331.577813 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1357959 total-bytes-write=52 payload-bytes-read=1357930/5242880 (25.90%)
+2019-01-31 11:32:11 1548934331.589919 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1361395 total-bytes-write=52 payload-bytes-read=1361366/5242880 (25.97%)
+2019-01-31 11:32:11 1548934331.613136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1361893 total-bytes-write=52 payload-bytes-read=1361864/5242880 (25.98%)
+2019-01-31 11:32:11 1548934331.620178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1362391 total-bytes-write=52 payload-bytes-read=1362362/5242880 (25.98%)
+2019-01-31 11:32:11 1548934331.621136 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1365877 total-bytes-write=52 payload-bytes-read=1365848/5242880 (26.05%)
+2019-01-31 11:32:11 1548934331.626264 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1369861 total-bytes-write=52 payload-bytes-read=1369832/5242880 (26.13%)
+2019-01-31 11:32:11 1548934331.637182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1372849 total-bytes-write=52 payload-bytes-read=1372820/5242880 (26.18%)
+2019-01-31 11:32:11 1548934331.657016 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1373845 total-bytes-write=52 payload-bytes-read=1373816/5242880 (26.20%)
+2019-01-31 11:32:11 1548934331.657872 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1375837 total-bytes-write=52 payload-bytes-read=1375808/5242880 (26.24%)
+2019-01-31 11:32:11 1548934331.670451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1379273 total-bytes-write=52 payload-bytes-read=1379244/5242880 (26.31%)
+2019-01-31 11:32:11 1548934331.712638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1379771 total-bytes-write=52 payload-bytes-read=1379742/5242880 (26.32%)
+2019-01-31 11:32:11 1548934331.758790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1383257 total-bytes-write=52 payload-bytes-read=1383228/5242880 (26.38%)
+2019-01-31 11:32:11 1548934331.786739 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1383755 total-bytes-write=52 payload-bytes-read=1383726/5242880 (26.39%)
+2019-01-31 11:32:11 1548934331.800920 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1387241 total-bytes-write=52 payload-bytes-read=1387212/5242880 (26.46%)
+2019-01-31 11:32:11 1548934331.811464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1391225 total-bytes-write=52 payload-bytes-read=1391196/5242880 (26.53%)
+2019-01-31 11:32:11 1548934331.811539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1394661 total-bytes-write=52 payload-bytes-read=1394632/5242880 (26.60%)
+2019-01-31 11:32:11 1548934331.832261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1398645 total-bytes-write=52 payload-bytes-read=1398616/5242880 (26.68%)
+2019-01-31 11:32:11 1548934331.833632 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1402131 total-bytes-write=52 payload-bytes-read=1402102/5242880 (26.74%)
+2019-01-31 11:32:11 1548934331.837195 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1403127 total-bytes-write=52 payload-bytes-read=1403098/5242880 (26.76%)
+2019-01-31 11:32:11 1548934331.838277 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1406613 total-bytes-write=52 payload-bytes-read=1406584/5242880 (26.83%)
+2019-01-31 11:32:11 1548934331.839657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1410547 total-bytes-write=52 payload-bytes-read=1410518/5242880 (26.90%)
+2019-01-31 11:32:11 1548934331.844046 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1414531 total-bytes-write=52 payload-bytes-read=1414502/5242880 (26.98%)
+2019-01-31 11:32:11 1548934331.851678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1418515 total-bytes-write=52 payload-bytes-read=1418486/5242880 (27.06%)
+2019-01-31 11:32:11 1548934331.892420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1436393 total-bytes-write=52 payload-bytes-read=1436364/5242880 (27.40%)
+2019-01-31 11:32:11 1548934331.936436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1448793 total-bytes-write=52 payload-bytes-read=1448764/5242880 (27.63%)
+2019-01-31 11:32:11 1548934331.946304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1452279 total-bytes-write=52 payload-bytes-read=1452250/5242880 (27.70%)
+2019-01-31 11:32:11 1548934331.973876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1453275 total-bytes-write=52 payload-bytes-read=1453246/5242880 (27.72%)
+2019-01-31 11:32:11 1548934331.977188 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1457757 total-bytes-write=52 payload-bytes-read=1457728/5242880 (27.80%)
+2019-01-31 11:32:11 1548934331.995149 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1461193 total-bytes-write=52 payload-bytes-read=1461164/5242880 (27.87%)
+2019-01-31 11:32:12 1548934332.005648 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1464679 total-bytes-write=52 payload-bytes-read=1464650/5242880 (27.94%)
+2019-01-31 11:32:12 1548934332.017784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1468663 total-bytes-write=52 payload-bytes-read=1468634/5242880 (28.01%)
+2019-01-31 11:32:12 1548934332.034203 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1471153 total-bytes-write=52 payload-bytes-read=1471124/5242880 (28.06%)
+2019-01-31 11:32:12 1548934332.035867 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1471651 total-bytes-write=52 payload-bytes-read=1471622/5242880 (28.07%)
+2019-01-31 11:32:12 1548934332.061510 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1475087 total-bytes-write=52 payload-bytes-read=1475058/5242880 (28.13%)
+2019-01-31 11:32:12 1548934332.064308 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1479071 total-bytes-write=52 payload-bytes-read=1479042/5242880 (28.21%)
+2019-01-31 11:32:12 1548934332.074349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1482059 total-bytes-write=52 payload-bytes-read=1482030/5242880 (28.27%)
+2019-01-31 11:32:12 1548934332.078007 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1485545 total-bytes-write=52 payload-bytes-read=1485516/5242880 (28.33%)
+2019-01-31 11:32:12 1548934332.090232 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1486043 total-bytes-write=52 payload-bytes-read=1486014/5242880 (28.34%)
+2019-01-31 11:32:12 1548934332.098161 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1489031 total-bytes-write=52 payload-bytes-read=1489002/5242880 (28.40%)
+2019-01-31 11:32:12 1548934332.116886 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1492467 total-bytes-write=52 payload-bytes-read=1492438/5242880 (28.47%)
+2019-01-31 11:32:12 1548934332.128590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1495455 total-bytes-write=52 payload-bytes-read=1495426/5242880 (28.52%)
+2019-01-31 11:32:12 1548934332.146293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1498443 total-bytes-write=52 payload-bytes-read=1498414/5242880 (28.58%)
+2019-01-31 11:32:12 1548934332.188415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1502427 total-bytes-write=52 payload-bytes-read=1502398/5242880 (28.66%)
+2019-01-31 11:32:12 1548934332.232410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1505913 total-bytes-write=52 payload-bytes-read=1505884/5242880 (28.72%)
+2019-01-31 11:32:12 1548934332.259051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1506909 total-bytes-write=52 payload-bytes-read=1506880/5242880 (28.74%)
+2019-01-31 11:32:12 1548934332.305850 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1510345 total-bytes-write=52 payload-bytes-read=1510316/5242880 (28.81%)
+2019-01-31 11:32:12 1548934332.333991 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1513831 total-bytes-write=52 payload-bytes-read=1513802/5242880 (28.87%)
+2019-01-31 11:32:12 1548934332.355578 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1517815 total-bytes-write=52 payload-bytes-read=1517786/5242880 (28.95%)
+2019-01-31 11:32:12 1548934332.396408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1524737 total-bytes-write=52 payload-bytes-read=1524708/5242880 (29.08%)
+2019-01-31 11:32:12 1548934332.440443 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1539677 total-bytes-write=52 payload-bytes-read=1539648/5242880 (29.37%)
+2019-01-31 11:32:12 1548934332.484440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1551081 total-bytes-write=52 payload-bytes-read=1551052/5242880 (29.58%)
+2019-01-31 11:32:12 1548934332.488706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1555065 total-bytes-write=52 payload-bytes-read=1555036/5242880 (29.66%)
+2019-01-31 11:32:12 1548934332.491509 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1558501 total-bytes-write=52 payload-bytes-read=1558472/5242880 (29.73%)
+2019-01-31 11:32:12 1548934332.492050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1558999 total-bytes-write=52 payload-bytes-read=1558970/5242880 (29.73%)
+2019-01-31 11:32:12 1548934332.501031 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1562485 total-bytes-write=52 payload-bytes-read=1562456/5242880 (29.80%)
+2019-01-31 11:32:12 1548934332.502498 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1566469 total-bytes-write=52 payload-bytes-read=1566440/5242880 (29.88%)
+2019-01-31 11:32:12 1548934332.511485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1569955 total-bytes-write=52 payload-bytes-read=1569926/5242880 (29.94%)
+2019-01-31 11:32:12 1548934332.511797 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1571947 total-bytes-write=52 payload-bytes-read=1571918/5242880 (29.98%)
+2019-01-31 11:32:12 1548934332.516971 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1575383 total-bytes-write=52 payload-bytes-read=1575354/5242880 (30.05%)
+2019-01-31 11:32:12 1548934332.518955 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1579367 total-bytes-write=52 payload-bytes-read=1579338/5242880 (30.12%)
+2019-01-31 11:32:12 1548934332.531952 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1583351 total-bytes-write=52 payload-bytes-read=1583322/5242880 (30.20%)
+2019-01-31 11:32:12 1548934332.572397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1584347 total-bytes-write=52 payload-bytes-read=1584318/5242880 (30.22%)
+2019-01-31 11:32:12 1548934332.590929 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1585343 total-bytes-write=52 payload-bytes-read=1585314/5242880 (30.24%)
+2019-01-31 11:32:12 1548934332.632395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1596249 total-bytes-write=52 payload-bytes-read=1596220/5242880 (30.45%)
+2019-01-31 11:32:12 1548934332.676423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1605213 total-bytes-write=52 payload-bytes-read=1605184/5242880 (30.62%)
+2019-01-31 11:32:12 1548934332.700325 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1608649 total-bytes-write=52 payload-bytes-read=1608620/5242880 (30.68%)
+2019-01-31 11:32:12 1548934332.701171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1612633 total-bytes-write=52 payload-bytes-read=1612604/5242880 (30.76%)
+2019-01-31 11:32:12 1548934332.729800 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1616119 total-bytes-write=52 payload-bytes-read=1616090/5242880 (30.82%)
+2019-01-31 11:32:12 1548934332.759565 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1619605 total-bytes-write=52 payload-bytes-read=1619576/5242880 (30.89%)
+2019-01-31 11:32:12 1548934332.800407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1627025 total-bytes-write=52 payload-bytes-read=1626996/5242880 (31.03%)
+2019-01-31 11:32:12 1548934332.844408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1627523 total-bytes-write=52 payload-bytes-read=1627494/5242880 (31.04%)
+2019-01-31 11:32:12 1548934332.847787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1631009 total-bytes-write=52 payload-bytes-read=1630980/5242880 (31.11%)
+2019-01-31 11:32:12 1548934332.849677 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1631507 total-bytes-write=52 payload-bytes-read=1631478/5242880 (31.12%)
+2019-01-31 11:32:12 1548934332.854799 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1634993 total-bytes-write=52 payload-bytes-read=1634964/5242880 (31.18%)
+2019-01-31 11:32:12 1548934332.858956 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1638927 total-bytes-write=52 payload-bytes-read=1638898/5242880 (31.26%)
+2019-01-31 11:32:12 1548934332.866100 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1642911 total-bytes-write=52 payload-bytes-read=1642882/5242880 (31.34%)
+2019-01-31 11:32:12 1548934332.876530 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1644405 total-bytes-write=52 payload-bytes-read=1644376/5242880 (31.36%)
+2019-01-31 11:32:12 1548934332.876782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1645401 total-bytes-write=52 payload-bytes-read=1645372/5242880 (31.38%)
+2019-01-31 11:32:12 1548934332.877706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1648887 total-bytes-write=52 payload-bytes-read=1648858/5242880 (31.45%)
+2019-01-31 11:32:12 1548934332.879320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1652871 total-bytes-write=52 payload-bytes-read=1652842/5242880 (31.53%)
+2019-01-31 11:32:12 1548934332.898385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1656307 total-bytes-write=52 payload-bytes-read=1656278/5242880 (31.59%)
+2019-01-31 11:32:12 1548934332.899239 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1660291 total-bytes-write=52 payload-bytes-read=1660262/5242880 (31.67%)
+2019-01-31 11:32:13 1548934333.004602 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1664275 total-bytes-write=52 payload-bytes-read=1664246/5242880 (31.74%)
+2019-01-31 11:32:13 1548934333.067761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1668259 total-bytes-write=52 payload-bytes-read=1668230/5242880 (31.82%)
+2019-01-31 11:32:13 1548934333.108460 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1694553 total-bytes-write=52 payload-bytes-read=1694524/5242880 (32.32%)
+2019-01-31 11:32:13 1548934333.152469 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1722839 total-bytes-write=52 payload-bytes-read=1722810/5242880 (32.86%)
+2019-01-31 11:32:13 1548934333.196442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1734791 total-bytes-write=52 payload-bytes-read=1734762/5242880 (33.09%)
+2019-01-31 11:32:13 1548934333.225789 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1735787 total-bytes-write=52 payload-bytes-read=1735758/5242880 (33.11%)
+2019-01-31 11:32:13 1548934333.308969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1737231 total-bytes-write=52 payload-bytes-read=1737202/5242880 (33.13%)
+2019-01-31 11:32:13 1548934333.389200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1740717 total-bytes-write=52 payload-bytes-read=1740688/5242880 (33.20%)
+2019-01-31 11:32:13 1548934333.416921 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1744203 total-bytes-write=52 payload-bytes-read=1744174/5242880 (33.27%)
+2019-01-31 11:32:13 1548934333.460409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1756603 total-bytes-write=52 payload-bytes-read=1756574/5242880 (33.50%)
+2019-01-31 11:32:13 1548934333.504395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1760089 total-bytes-write=52 payload-bytes-read=1760060/5242880 (33.57%)
+2019-01-31 11:32:13 1548934333.549533 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1765567 total-bytes-write=52 payload-bytes-read=1765538/5242880 (33.67%)
+2019-01-31 11:32:13 1548934333.550033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1769053 total-bytes-write=52 payload-bytes-read=1769024/5242880 (33.74%)
+2019-01-31 11:32:13 1548934333.551235 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1772987 total-bytes-write=52 payload-bytes-read=1772958/5242880 (33.82%)
+2019-01-31 11:32:13 1548934333.559696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1776473 total-bytes-write=52 payload-bytes-read=1776444/5242880 (33.88%)
+2019-01-31 11:32:13 1548934333.579150 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1776971 total-bytes-write=52 payload-bytes-read=1776942/5242880 (33.89%)
+2019-01-31 11:32:13 1548934333.579557 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1780457 total-bytes-write=52 payload-bytes-read=1780428/5242880 (33.96%)
+2019-01-31 11:32:13 1548934333.580294 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1780955 total-bytes-write=52 payload-bytes-read=1780926/5242880 (33.97%)
+2019-01-31 11:32:13 1548934333.590571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1784441 total-bytes-write=52 payload-bytes-read=1784412/5242880 (34.03%)
+2019-01-31 11:32:13 1548934333.595459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1787877 total-bytes-write=52 payload-bytes-read=1787848/5242880 (34.10%)
+2019-01-31 11:32:13 1548934333.614989 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1788873 total-bytes-write=52 payload-bytes-read=1788844/5242880 (34.12%)
+2019-01-31 11:32:13 1548934333.634609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1792359 total-bytes-write=52 payload-bytes-read=1792330/5242880 (34.19%)
+2019-01-31 11:32:13 1548934333.636693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1793853 total-bytes-write=52 payload-bytes-read=1793824/5242880 (34.21%)
+2019-01-31 11:32:13 1548934333.637804 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1797339 total-bytes-write=52 payload-bytes-read=1797310/5242880 (34.28%)
+2019-01-31 11:32:13 1548934333.640889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1801323 total-bytes-write=52 payload-bytes-read=1801294/5242880 (34.36%)
+2019-01-31 11:32:13 1548934333.641849 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1805257 total-bytes-write=52 payload-bytes-read=1805228/5242880 (34.43%)
+2019-01-31 11:32:13 1548934333.657161 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1810237 total-bytes-write=52 payload-bytes-read=1810208/5242880 (34.53%)
+2019-01-31 11:32:13 1548934333.657268 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1813723 total-bytes-write=52 payload-bytes-read=1813694/5242880 (34.59%)
+2019-01-31 11:32:13 1548934333.657596 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1817707 total-bytes-write=52 payload-bytes-read=1817678/5242880 (34.67%)
+2019-01-31 11:32:13 1548934333.672120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1821641 total-bytes-write=52 payload-bytes-read=1821612/5242880 (34.74%)
+2019-01-31 11:32:13 1548934333.672717 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1825625 total-bytes-write=52 payload-bytes-read=1825596/5242880 (34.82%)
+2019-01-31 11:32:13 1548934333.672787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1826123 total-bytes-write=52 payload-bytes-read=1826094/5242880 (34.83%)
+2019-01-31 11:32:13 1548934333.675165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1829609 total-bytes-write=52 payload-bytes-read=1829580/5242880 (34.90%)
+2019-01-31 11:32:13 1548934333.681573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1832597 total-bytes-write=52 payload-bytes-read=1832568/5242880 (34.95%)
+2019-01-31 11:32:13 1548934333.736196 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1834589 total-bytes-write=52 payload-bytes-read=1834560/5242880 (34.99%)
+2019-01-31 11:32:13 1548934333.753687 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1838025 total-bytes-write=52 payload-bytes-read=1837996/5242880 (35.06%)
+2019-01-31 11:32:13 1548934333.762173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1840017 total-bytes-write=52 payload-bytes-read=1839988/5242880 (35.09%)
+2019-01-31 11:32:13 1548934333.763864 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1843503 total-bytes-write=52 payload-bytes-read=1843474/5242880 (35.16%)
+2019-01-31 11:32:13 1548934333.822488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1846989 total-bytes-write=52 payload-bytes-read=1846960/5242880 (35.23%)
+2019-01-31 11:32:13 1548934333.864441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1858393 total-bytes-write=52 payload-bytes-read=1858364/5242880 (35.45%)
+2019-01-31 11:32:13 1548934333.908418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1877267 total-bytes-write=52 payload-bytes-read=1877238/5242880 (35.81%)
+2019-01-31 11:32:13 1548934333.952452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1907545 total-bytes-write=52 payload-bytes-read=1907516/5242880 (36.38%)
+2019-01-31 11:32:13 1548934333.996403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1917953 total-bytes-write=52 payload-bytes-read=1917924/5242880 (36.58%)
+2019-01-31 11:32:14 1548934334.002366 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1921937 total-bytes-write=52 payload-bytes-read=1921908/5242880 (36.66%)
+2019-01-31 11:32:14 1548934334.002452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1922933 total-bytes-write=52 payload-bytes-read=1922904/5242880 (36.68%)
+2019-01-31 11:32:14 1548934334.013067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1926419 total-bytes-write=52 payload-bytes-read=1926390/5242880 (36.74%)
+2019-01-31 11:32:14 1548934334.052877 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1932395 total-bytes-write=52 payload-bytes-read=1932366/5242880 (36.86%)
+2019-01-31 11:32:14 1548934334.063302 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1935831 total-bytes-write=52 payload-bytes-read=1935802/5242880 (36.92%)
+2019-01-31 11:32:14 1548934334.085438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1939317 total-bytes-write=52 payload-bytes-read=1939288/5242880 (36.99%)
+2019-01-31 11:32:14 1548934334.096499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1942803 total-bytes-write=52 payload-bytes-read=1942774/5242880 (37.06%)
+2019-01-31 11:32:14 1548934334.140420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1953211 total-bytes-write=52 payload-bytes-read=1953182/5242880 (37.25%)
+2019-01-31 11:32:14 1548934334.184445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1972583 total-bytes-write=52 payload-bytes-read=1972554/5242880 (37.62%)
+2019-01-31 11:32:14 1548934334.255352 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1975073 total-bytes-write=52 payload-bytes-read=1975044/5242880 (37.67%)
+2019-01-31 11:32:14 1548934334.296938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1976567 total-bytes-write=52 payload-bytes-read=1976538/5242880 (37.70%)
+2019-01-31 11:32:14 1548934334.362123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1980053 total-bytes-write=52 payload-bytes-read=1980024/5242880 (37.77%)
+2019-01-31 11:32:14 1548934334.363526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1983489 total-bytes-write=52 payload-bytes-read=1983460/5242880 (37.83%)
+2019-01-31 11:32:14 1548934334.364643 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1987473 total-bytes-write=52 payload-bytes-read=1987444/5242880 (37.91%)
+2019-01-31 11:32:14 1548934334.371946 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=1991457 total-bytes-write=52 payload-bytes-read=1991428/5242880 (37.98%)
+2019-01-31 11:32:14 1548934334.412429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2004355 total-bytes-write=52 payload-bytes-read=2004326/5242880 (38.23%)
+2019-01-31 11:32:14 1548934334.456468 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2030201 total-bytes-write=52 payload-bytes-read=2030172/5242880 (38.72%)
+2019-01-31 11:32:14 1548934334.541727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2033637 total-bytes-write=52 payload-bytes-read=2033608/5242880 (38.79%)
+2019-01-31 11:32:14 1548934334.595960 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2035131 total-bytes-write=52 payload-bytes-read=2035102/5242880 (38.82%)
+2019-01-31 11:32:14 1548934334.609724 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2038617 total-bytes-write=52 payload-bytes-read=2038588/5242880 (38.88%)
+2019-01-31 11:32:14 1548934334.616898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2042103 total-bytes-write=52 payload-bytes-read=2042074/5242880 (38.95%)
+2019-01-31 11:32:14 1548934334.660424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2049523 total-bytes-write=52 payload-bytes-read=2049494/5242880 (39.09%)
+2019-01-31 11:32:14 1548934334.704414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2055499 total-bytes-write=52 payload-bytes-read=2055470/5242880 (39.20%)
+2019-01-31 11:32:14 1548934334.756141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2058985 total-bytes-write=52 payload-bytes-read=2058956/5242880 (39.27%)
+2019-01-31 11:32:14 1548934334.756703 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2059981 total-bytes-write=52 payload-bytes-read=2059952/5242880 (39.29%)
+2019-01-31 11:32:14 1548934334.770450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2066903 total-bytes-write=52 payload-bytes-read=2066874/5242880 (39.42%)
+2019-01-31 11:32:14 1548934334.774335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2067899 total-bytes-write=52 payload-bytes-read=2067870/5242880 (39.44%)
+2019-01-31 11:32:14 1548934334.778600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2071385 total-bytes-write=52 payload-bytes-read=2071356/5242880 (39.51%)
+2019-01-31 11:32:14 1548934334.787629 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2074871 total-bytes-write=52 payload-bytes-read=2074842/5242880 (39.57%)
+2019-01-31 11:32:14 1548934334.828444 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2098675 total-bytes-write=52 payload-bytes-read=2098646/5242880 (40.03%)
+2019-01-31 11:32:14 1548934334.872405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2103157 total-bytes-write=52 payload-bytes-read=2103128/5242880 (40.11%)
+2019-01-31 11:32:14 1548934334.877018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2107141 total-bytes-write=52 payload-bytes-read=2107112/5242880 (40.19%)
+2019-01-31 11:32:14 1548934334.882974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2109133 total-bytes-write=52 payload-bytes-read=2109104/5242880 (40.23%)
+2019-01-31 11:32:14 1548934334.908089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2112619 total-bytes-write=52 payload-bytes-read=2112590/5242880 (40.29%)
+2019-01-31 11:32:14 1548934334.914968 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2115557 total-bytes-write=52 payload-bytes-read=2115528/5242880 (40.35%)
+2019-01-31 11:32:14 1548934334.922089 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2116553 total-bytes-write=52 payload-bytes-read=2116524/5242880 (40.37%)
+2019-01-31 11:32:14 1548934334.922728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2120039 total-bytes-write=52 payload-bytes-read=2120010/5242880 (40.44%)
+2019-01-31 11:32:14 1548934334.923306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2121035 total-bytes-write=52 payload-bytes-read=2121006/5242880 (40.45%)
+2019-01-31 11:32:14 1548934334.925432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2124521 total-bytes-write=52 payload-bytes-read=2124492/5242880 (40.52%)
+2019-01-31 11:32:14 1548934334.947953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2130945 total-bytes-write=52 payload-bytes-read=2130916/5242880 (40.64%)
+2019-01-31 11:32:14 1548934334.954294 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2131443 total-bytes-write=52 payload-bytes-read=2131414/5242880 (40.65%)
+2019-01-31 11:32:14 1548934334.969242 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2134929 total-bytes-write=52 payload-bytes-read=2134900/5242880 (40.72%)
+2019-01-31 11:32:14 1548934334.974182 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2137419 total-bytes-write=52 payload-bytes-read=2137390/5242880 (40.77%)
+2019-01-31 11:32:14 1548934334.974895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2137917 total-bytes-write=52 payload-bytes-read=2137888/5242880 (40.78%)
+2019-01-31 11:32:14 1548934334.985146 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2141403 total-bytes-write=52 payload-bytes-read=2141374/5242880 (40.84%)
+2019-01-31 11:32:14 1548934334.986954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2145387 total-bytes-write=52 payload-bytes-read=2145358/5242880 (40.92%)
+2019-01-31 11:32:14 1548934334.987689 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2148823 total-bytes-write=52 payload-bytes-read=2148794/5242880 (40.98%)
+2019-01-31 11:32:15 1548934335.008501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2152807 total-bytes-write=52 payload-bytes-read=2152778/5242880 (41.06%)
+2019-01-31 11:32:15 1548934335.009426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2156293 total-bytes-write=52 payload-bytes-read=2156264/5242880 (41.13%)
+2019-01-31 11:32:15 1548934335.011935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2159779 total-bytes-write=52 payload-bytes-read=2159750/5242880 (41.19%)
+2019-01-31 11:32:15 1548934335.052395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2164709 total-bytes-write=52 payload-bytes-read=2164680/5242880 (41.29%)
+2019-01-31 11:32:15 1548934335.096415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2168693 total-bytes-write=52 payload-bytes-read=2168664/5242880 (41.36%)
+2019-01-31 11:32:15 1548934335.099143 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2171183 total-bytes-write=52 payload-bytes-read=2171154/5242880 (41.41%)
+2019-01-31 11:32:15 1548934335.101686 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2175167 total-bytes-write=52 payload-bytes-read=2175138/5242880 (41.49%)
+2019-01-31 11:32:15 1548934335.107407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2178653 total-bytes-write=52 payload-bytes-read=2178624/5242880 (41.55%)
+2019-01-31 11:32:15 1548934335.147778 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2181093 total-bytes-write=52 payload-bytes-read=2181064/5242880 (41.60%)
+2019-01-31 11:32:15 1548934335.151093 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2187567 total-bytes-write=52 payload-bytes-read=2187538/5242880 (41.72%)
+2019-01-31 11:32:15 1548934335.151493 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2191551 total-bytes-write=52 payload-bytes-read=2191522/5242880 (41.80%)
+2019-01-31 11:32:15 1548934335.158577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2195037 total-bytes-write=52 payload-bytes-read=2195008/5242880 (41.87%)
+2019-01-31 11:32:15 1548934335.176429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2198473 total-bytes-write=52 payload-bytes-read=2198444/5242880 (41.93%)
+2019-01-31 11:32:15 1548934335.205018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2200963 total-bytes-write=52 payload-bytes-read=2200934/5242880 (41.98%)
+2019-01-31 11:32:15 1548934335.214342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2201959 total-bytes-write=52 payload-bytes-read=2201930/5242880 (42.00%)
+2019-01-31 11:32:15 1548934335.254601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2205445 total-bytes-write=52 payload-bytes-read=2205416/5242880 (42.06%)
+2019-01-31 11:32:15 1548934335.310787 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2206939 total-bytes-write=52 payload-bytes-read=2206910/5242880 (42.09%)
+2019-01-31 11:32:15 1548934335.413167 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2210425 total-bytes-write=52 payload-bytes-read=2210396/5242880 (42.16%)
+2019-01-31 11:32:15 1548934335.421158 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2211869 total-bytes-write=52 payload-bytes-read=2211840/5242880 (42.19%)
+2019-01-31 11:32:15 1548934335.421922 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2215355 total-bytes-write=52 payload-bytes-read=2215326/5242880 (42.25%)
+2019-01-31 11:32:15 1548934335.455163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2218841 total-bytes-write=52 payload-bytes-read=2218812/5242880 (42.32%)
+2019-01-31 11:32:15 1548934335.496408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2230245 total-bytes-write=52 payload-bytes-read=2230216/5242880 (42.54%)
+2019-01-31 11:32:15 1548934335.540473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2263511 total-bytes-write=52 payload-bytes-read=2263482/5242880 (43.17%)
+2019-01-31 11:32:15 1548934335.584418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2279397 total-bytes-write=52 payload-bytes-read=2279368/5242880 (43.48%)
+2019-01-31 11:32:15 1548934335.603033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2280393 total-bytes-write=52 payload-bytes-read=2280364/5242880 (43.49%)
+2019-01-31 11:32:15 1548934335.630732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2283381 total-bytes-write=52 payload-bytes-read=2283352/5242880 (43.55%)
+2019-01-31 11:32:15 1548934335.649064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2286867 total-bytes-write=52 payload-bytes-read=2286838/5242880 (43.62%)
+2019-01-31 11:32:15 1548934335.653727 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2290353 total-bytes-write=52 payload-bytes-read=2290324/5242880 (43.68%)
+2019-01-31 11:32:15 1548934335.733354 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2293789 total-bytes-write=52 payload-bytes-read=2293760/5242880 (43.75%)
+2019-01-31 11:32:15 1548934335.742192 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2297275 total-bytes-write=52 payload-bytes-read=2297246/5242880 (43.82%)
+2019-01-31 11:32:15 1548934335.784386 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2304745 total-bytes-write=52 payload-bytes-read=2304716/5242880 (43.96%)
+2019-01-31 11:32:15 1548934335.828404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2317145 total-bytes-write=52 payload-bytes-read=2317116/5242880 (44.20%)
+2019-01-31 11:32:15 1548934335.872405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2329545 total-bytes-write=52 payload-bytes-read=2329516/5242880 (44.43%)
+2019-01-31 11:32:15 1548934335.916400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2333529 total-bytes-write=52 payload-bytes-read=2333500/5242880 (44.51%)
+2019-01-31 11:32:15 1548934335.938243 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2336517 total-bytes-write=52 payload-bytes-read=2336488/5242880 (44.56%)
+2019-01-31 11:32:15 1548934335.947263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2340003 total-bytes-write=52 payload-bytes-read=2339974/5242880 (44.63%)
+2019-01-31 11:32:15 1548934335.981008 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2343439 total-bytes-write=52 payload-bytes-read=2343410/5242880 (44.70%)
+2019-01-31 11:32:15 1548934335.998033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2346427 total-bytes-write=52 payload-bytes-read=2346398/5242880 (44.75%)
+2019-01-31 11:32:16 1548934336.002484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2350411 total-bytes-write=52 payload-bytes-read=2350382/5242880 (44.83%)
+2019-01-31 11:32:16 1548934336.012823 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2353897 total-bytes-write=52 payload-bytes-read=2353868/5242880 (44.90%)
+2019-01-31 11:32:16 1548934336.023376 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2357881 total-bytes-write=52 payload-bytes-read=2357852/5242880 (44.97%)
+2019-01-31 11:32:16 1548934336.024125 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2361317 total-bytes-write=52 payload-bytes-read=2361288/5242880 (45.04%)
+2019-01-31 11:32:16 1548934336.037601 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2364803 total-bytes-write=52 payload-bytes-read=2364774/5242880 (45.10%)
+2019-01-31 11:32:16 1548934336.064313 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2366297 total-bytes-write=52 payload-bytes-read=2366268/5242880 (45.13%)
+2019-01-31 11:32:16 1548934336.064791 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2369783 total-bytes-write=52 payload-bytes-read=2369754/5242880 (45.20%)
+2019-01-31 11:32:16 1548934336.073766 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2370779 total-bytes-write=52 payload-bytes-read=2370750/5242880 (45.22%)
+2019-01-31 11:32:16 1548934336.085222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2375261 total-bytes-write=52 payload-bytes-read=2375232/5242880 (45.30%)
+2019-01-31 11:32:16 1548934336.086206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2378697 total-bytes-write=52 payload-bytes-read=2378668/5242880 (45.37%)
+2019-01-31 11:32:16 1548934336.087597 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2382183 total-bytes-write=52 payload-bytes-read=2382154/5242880 (45.44%)
+2019-01-31 11:32:16 1548934336.098254 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2385669 total-bytes-write=52 payload-bytes-read=2385640/5242880 (45.50%)
+2019-01-31 11:32:16 1548934336.140407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2390151 total-bytes-write=52 payload-bytes-read=2390122/5242880 (45.59%)
+2019-01-31 11:32:16 1548934336.184398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2398069 total-bytes-write=52 payload-bytes-read=2398040/5242880 (45.74%)
+2019-01-31 11:32:16 1548934336.228406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2405041 total-bytes-write=52 payload-bytes-read=2405012/5242880 (45.87%)
+2019-01-31 11:32:16 1548934336.230309 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2405539 total-bytes-write=52 payload-bytes-read=2405510/5242880 (45.88%)
+2019-01-31 11:32:16 1548934336.283646 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2407531 total-bytes-write=52 payload-bytes-read=2407502/5242880 (45.92%)
+2019-01-31 11:32:16 1548934336.322649 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2408477 total-bytes-write=52 payload-bytes-read=2408448/5242880 (45.94%)
+2019-01-31 11:32:16 1548934336.355265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2411963 total-bytes-write=52 payload-bytes-read=2411934/5242880 (46.00%)
+2019-01-31 11:32:16 1548934336.365341 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2415449 total-bytes-write=52 payload-bytes-read=2415420/5242880 (46.07%)
+2019-01-31 11:32:16 1548934336.408437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2439303 total-bytes-write=52 payload-bytes-read=2439274/5242880 (46.53%)
+2019-01-31 11:32:16 1548934336.452440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2444731 total-bytes-write=52 payload-bytes-read=2444702/5242880 (46.63%)
+2019-01-31 11:32:16 1548934336.504659 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2448217 total-bytes-write=52 payload-bytes-read=2448188/5242880 (46.70%)
+2019-01-31 11:32:16 1548934336.525383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2448715 total-bytes-write=52 payload-bytes-read=2448686/5242880 (46.70%)
+2019-01-31 11:32:16 1548934336.585210 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2452201 total-bytes-write=52 payload-bytes-read=2452172/5242880 (46.77%)
+2019-01-31 11:32:16 1548934336.585701 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2452699 total-bytes-write=52 payload-bytes-read=2452670/5242880 (46.78%)
+2019-01-31 11:32:16 1548934336.587674 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2456185 total-bytes-write=52 payload-bytes-read=2456156/5242880 (46.85%)
+2019-01-31 11:32:16 1548934336.588983 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2459621 total-bytes-write=52 payload-bytes-read=2459592/5242880 (46.91%)
+2019-01-31 11:32:16 1548934336.590118 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2463107 total-bytes-write=52 payload-bytes-read=2463078/5242880 (46.98%)
+2019-01-31 11:32:16 1548934336.591173 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2465597 total-bytes-write=52 payload-bytes-read=2465568/5242880 (47.03%)
+2019-01-31 11:32:16 1548934336.592010 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2469083 total-bytes-write=52 payload-bytes-read=2469054/5242880 (47.09%)
+2019-01-31 11:32:16 1548934336.608017 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2470079 total-bytes-write=52 payload-bytes-read=2470050/5242880 (47.11%)
+2019-01-31 11:32:16 1548934336.627271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2472569 total-bytes-write=52 payload-bytes-read=2472540/5242880 (47.16%)
+2019-01-31 11:32:16 1548934336.628397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2476005 total-bytes-write=52 payload-bytes-read=2475976/5242880 (47.23%)
+2019-01-31 11:32:16 1548934336.639223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2477001 total-bytes-write=52 payload-bytes-read=2476972/5242880 (47.24%)
+2019-01-31 11:32:16 1548934336.659482 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2480985 total-bytes-write=52 payload-bytes-read=2480956/5242880 (47.32%)
+2019-01-31 11:32:16 1548934336.669895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2481981 total-bytes-write=52 payload-bytes-read=2481952/5242880 (47.34%)
+2019-01-31 11:32:16 1548934336.671492 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2485467 total-bytes-write=52 payload-bytes-read=2485438/5242880 (47.41%)
+2019-01-31 11:32:16 1548934336.681372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2488953 total-bytes-write=52 payload-bytes-read=2488924/5242880 (47.47%)
+2019-01-31 11:32:16 1548934336.740625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2493001 total-bytes-write=52 payload-bytes-read=2492972/5242880 (47.55%)
+2019-01-31 11:32:16 1548934336.784413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2508275 total-bytes-write=52 payload-bytes-read=2508246/5242880 (47.84%)
+2019-01-31 11:32:16 1548934336.828404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2516243 total-bytes-write=52 payload-bytes-read=2516214/5242880 (47.99%)
+2019-01-31 11:32:16 1548934336.836832 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2518235 total-bytes-write=52 payload-bytes-read=2518206/5242880 (48.03%)
+2019-01-31 11:32:16 1548934336.860738 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2521223 total-bytes-write=52 payload-bytes-read=2521194/5242880 (48.09%)
+2019-01-31 11:32:16 1548934336.861862 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2524659 total-bytes-write=52 payload-bytes-read=2524630/5242880 (48.15%)
+2019-01-31 11:32:16 1548934336.885429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2525655 total-bytes-write=52 payload-bytes-read=2525626/5242880 (48.17%)
+2019-01-31 11:32:16 1548934336.893332 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2529141 total-bytes-write=52 payload-bytes-read=2529112/5242880 (48.24%)
+2019-01-31 11:32:16 1548934336.923627 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2533125 total-bytes-write=52 payload-bytes-read=2533096/5242880 (48.31%)
+2019-01-31 11:32:16 1548934336.923731 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2536611 total-bytes-write=52 payload-bytes-read=2536582/5242880 (48.38%)
+2019-01-31 11:32:16 1548934336.932981 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2538105 total-bytes-write=52 payload-bytes-read=2538076/5242880 (48.41%)
+2019-01-31 11:32:16 1548934336.954706 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2541043 total-bytes-write=52 payload-bytes-read=2541014/5242880 (48.47%)
+2019-01-31 11:32:16 1548934336.972720 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2543533 total-bytes-write=52 payload-bytes-read=2543504/5242880 (48.51%)
+2019-01-31 11:32:17 1548934337.033637 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2547019 total-bytes-write=52 payload-bytes-read=2546990/5242880 (48.58%)
+2019-01-31 11:32:17 1548934337.137919 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2550505 total-bytes-write=52 payload-bytes-read=2550476/5242880 (48.65%)
+2019-01-31 11:32:17 1548934337.180375 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2553493 total-bytes-write=52 payload-bytes-read=2553464/5242880 (48.70%)
+2019-01-31 11:32:17 1548934337.189793 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2556431 total-bytes-write=52 payload-bytes-read=2556402/5242880 (48.76%)
+2019-01-31 11:32:17 1548934337.195284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2559917 total-bytes-write=52 payload-bytes-read=2559888/5242880 (48.83%)
+2019-01-31 11:32:17 1548934337.236390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2563901 total-bytes-write=52 payload-bytes-read=2563872/5242880 (48.90%)
+2019-01-31 11:32:17 1548934337.493052 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2567387 total-bytes-write=52 payload-bytes-read=2567358/5242880 (48.97%)
+2019-01-31 11:32:17 1548934337.559676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2570873 total-bytes-write=52 payload-bytes-read=2570844/5242880 (49.03%)
+2019-01-31 11:32:17 1548934337.563654 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2574309 total-bytes-write=52 payload-bytes-read=2574280/5242880 (49.10%)
+2019-01-31 11:32:17 1548934337.564894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2574807 total-bytes-write=52 payload-bytes-read=2574778/5242880 (49.11%)
+2019-01-31 11:32:17 1548934337.566204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2578293 total-bytes-write=52 payload-bytes-read=2578264/5242880 (49.18%)
+2019-01-31 11:32:17 1548934337.569889 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2578791 total-bytes-write=52 payload-bytes-read=2578762/5242880 (49.19%)
+2019-01-31 11:32:17 1548934337.592428 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2582277 total-bytes-write=52 payload-bytes-read=2582248/5242880 (49.25%)
+2019-01-31 11:32:17 1548934337.621935 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2583273 total-bytes-write=52 payload-bytes-read=2583244/5242880 (49.27%)
+2019-01-31 11:32:17 1548934337.632221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2587257 total-bytes-write=52 payload-bytes-read=2587228/5242880 (49.35%)
+2019-01-31 11:32:17 1548934337.641284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2591689 total-bytes-write=52 payload-bytes-read=2591660/5242880 (49.43%)
+2019-01-31 11:32:17 1548934337.644824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2595175 total-bytes-write=52 payload-bytes-read=2595146/5242880 (49.50%)
+2019-01-31 11:32:17 1548934337.648015 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2599159 total-bytes-write=52 payload-bytes-read=2599130/5242880 (49.57%)
+2019-01-31 11:32:17 1548934337.649397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2602645 total-bytes-write=52 payload-bytes-read=2602616/5242880 (49.64%)
+2019-01-31 11:32:17 1548934337.649822 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2603143 total-bytes-write=52 payload-bytes-read=2603114/5242880 (49.65%)
+2019-01-31 11:32:17 1548934337.654440 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2606579 total-bytes-write=52 payload-bytes-read=2606550/5242880 (49.72%)
+2019-01-31 11:32:17 1548934337.658343 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2610563 total-bytes-write=52 payload-bytes-read=2610534/5242880 (49.79%)
+2019-01-31 11:32:17 1548934337.659788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2614049 total-bytes-write=52 payload-bytes-read=2614020/5242880 (49.86%)
+2019-01-31 11:32:17 1548934337.684957 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2615045 total-bytes-write=52 payload-bytes-read=2615016/5242880 (49.88%)
+2019-01-31 11:32:17 1548934337.686978 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2618531 total-bytes-write=52 payload-bytes-read=2618502/5242880 (49.94%)
+2019-01-31 11:32:17 1548934337.794967 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2621021 total-bytes-write=52 payload-bytes-read=2620992/5242880 (49.99%)
+2019-01-31 11:32:17 1548934337.804369 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2624955 total-bytes-write=52 payload-bytes-read=2624926/5242880 (50.07%)
+2019-01-31 11:32:17 1548934337.833520 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2628441 total-bytes-write=52 payload-bytes-read=2628412/5242880 (50.13%)
+2019-01-31 11:32:17 1548934337.836117 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2631927 total-bytes-write=52 payload-bytes-read=2631898/5242880 (50.20%)
+2019-01-31 11:32:17 1548934337.876401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2637853 total-bytes-write=52 payload-bytes-read=2637824/5242880 (50.31%)
+2019-01-31 11:32:17 1548934337.920410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2641339 total-bytes-write=52 payload-bytes-read=2641310/5242880 (50.38%)
+2019-01-31 11:32:17 1548934337.924466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2644825 total-bytes-write=52 payload-bytes-read=2644796/5242880 (50.45%)
+2019-01-31 11:32:17 1548934337.968398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2648809 total-bytes-write=52 payload-bytes-read=2648780/5242880 (50.52%)
+2019-01-31 11:32:18 1548934338.012407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2652295 total-bytes-write=52 payload-bytes-read=2652266/5242880 (50.59%)
+2019-01-31 11:32:18 1548934338.017033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2653291 total-bytes-write=52 payload-bytes-read=2653262/5242880 (50.61%)
+2019-01-31 11:32:18 1548934338.017539 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2656727 total-bytes-write=52 payload-bytes-read=2656698/5242880 (50.67%)
+2019-01-31 11:32:18 1548934338.038755 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2659217 total-bytes-write=52 payload-bytes-read=2659188/5242880 (50.72%)
+2019-01-31 11:32:18 1548934338.051573 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2662703 total-bytes-write=52 payload-bytes-read=2662674/5242880 (50.79%)
+2019-01-31 11:32:18 1548934338.065327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2666189 total-bytes-write=52 payload-bytes-read=2666160/5242880 (50.85%)
+2019-01-31 11:32:18 1548934338.108403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2669675 total-bytes-write=52 payload-bytes-read=2669646/5242880 (50.92%)
+2019-01-31 11:32:18 1548934338.152404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2670621 total-bytes-write=52 payload-bytes-read=2670592/5242880 (50.94%)
+2019-01-31 11:32:18 1548934338.162770 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2674107 total-bytes-write=52 payload-bytes-read=2674078/5242880 (51.00%)
+2019-01-31 11:32:18 1548934338.204404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2683569 total-bytes-write=52 payload-bytes-read=2683540/5242880 (51.18%)
+2019-01-31 11:32:18 1548934338.248400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2690491 total-bytes-write=52 payload-bytes-read=2690462/5242880 (51.32%)
+2019-01-31 11:32:18 1548934338.254661 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2694475 total-bytes-write=52 payload-bytes-read=2694446/5242880 (51.39%)
+2019-01-31 11:32:18 1548934338.283080 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2697961 total-bytes-write=52 payload-bytes-read=2697932/5242880 (51.46%)
+2019-01-31 11:32:18 1548934338.291710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2701945 total-bytes-write=52 payload-bytes-read=2701916/5242880 (51.53%)
+2019-01-31 11:32:18 1548934338.323291 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2705381 total-bytes-write=52 payload-bytes-read=2705352/5242880 (51.60%)
+2019-01-31 11:32:18 1548934338.324260 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2709365 total-bytes-write=52 payload-bytes-read=2709336/5242880 (51.68%)
+2019-01-31 11:32:18 1548934338.331824 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2712851 total-bytes-write=52 payload-bytes-read=2712822/5242880 (51.74%)
+2019-01-31 11:32:18 1548934338.332745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2716835 total-bytes-write=52 payload-bytes-read=2716806/5242880 (51.82%)
+2019-01-31 11:32:18 1548934338.332809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2717333 total-bytes-write=52 payload-bytes-read=2717304/5242880 (51.83%)
+2019-01-31 11:32:18 1548934338.342898 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2720769 total-bytes-write=52 payload-bytes-read=2720740/5242880 (51.89%)
+2019-01-31 11:32:18 1548934338.352591 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2721267 total-bytes-write=52 payload-bytes-read=2721238/5242880 (51.90%)
+2019-01-31 11:32:18 1548934338.353022 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2724753 total-bytes-write=52 payload-bytes-read=2724724/5242880 (51.97%)
+2019-01-31 11:32:18 1548934338.370699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2725749 total-bytes-write=52 payload-bytes-read=2725720/5242880 (51.99%)
+2019-01-31 11:32:18 1548934338.387044 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2732721 total-bytes-write=52 payload-bytes-read=2732692/5242880 (52.12%)
+2019-01-31 11:32:18 1548934338.387131 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2736655 total-bytes-write=52 payload-bytes-read=2736626/5242880 (52.20%)
+2019-01-31 11:32:18 1548934338.403761 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2740639 total-bytes-write=52 payload-bytes-read=2740610/5242880 (52.27%)
+2019-01-31 11:32:18 1548934338.458936 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2742133 total-bytes-write=52 payload-bytes-read=2742104/5242880 (52.30%)
+2019-01-31 11:32:18 1548934338.460076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2744125 total-bytes-write=52 payload-bytes-read=2744096/5242880 (52.34%)
+2019-01-31 11:32:18 1548934338.460265 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2747611 total-bytes-write=52 payload-bytes-read=2747582/5242880 (52.41%)
+2019-01-31 11:32:18 1548934338.481709 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2749105 total-bytes-write=52 payload-bytes-read=2749076/5242880 (52.43%)
+2019-01-31 11:32:18 1548934338.487586 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2752541 total-bytes-write=52 payload-bytes-read=2752512/5242880 (52.50%)
+2019-01-31 11:32:18 1548934338.502798 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2756525 total-bytes-write=52 payload-bytes-read=2756496/5242880 (52.58%)
+2019-01-31 11:32:18 1548934338.565423 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2757023 total-bytes-write=52 payload-bytes-read=2756994/5242880 (52.59%)
+2019-01-31 11:32:18 1548934338.571222 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2760509 total-bytes-write=52 payload-bytes-read=2760480/5242880 (52.65%)
+2019-01-31 11:32:18 1548934338.573392 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2764493 total-bytes-write=52 payload-bytes-read=2764464/5242880 (52.73%)
+2019-01-31 11:32:18 1548934338.573948 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2767979 total-bytes-write=52 payload-bytes-read=2767950/5242880 (52.79%)
+2019-01-31 11:32:18 1548934338.589035 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2770419 total-bytes-write=52 payload-bytes-read=2770390/5242880 (52.84%)
+2019-01-31 11:32:18 1548934338.611784 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2773905 total-bytes-write=52 payload-bytes-read=2773876/5242880 (52.91%)
+2019-01-31 11:32:18 1548934338.618590 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2777889 total-bytes-write=52 payload-bytes-read=2777860/5242880 (52.98%)
+2019-01-31 11:32:18 1548934338.674776 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2781375 total-bytes-write=52 payload-bytes-read=2781346/5242880 (53.05%)
+2019-01-31 11:32:18 1548934338.675711 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2785309 total-bytes-write=52 payload-bytes-read=2785280/5242880 (53.12%)
+2019-01-31 11:32:18 1548934338.696285 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2786305 total-bytes-write=52 payload-bytes-read=2786276/5242880 (53.14%)
+2019-01-31 11:32:18 1548934338.698233 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2790289 total-bytes-write=52 payload-bytes-read=2790260/5242880 (53.22%)
+2019-01-31 11:32:18 1548934338.732284 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2793775 total-bytes-write=52 payload-bytes-read=2793746/5242880 (53.29%)
+2019-01-31 11:32:18 1548934338.762626 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2797759 total-bytes-write=52 payload-bytes-read=2797730/5242880 (53.36%)
+2019-01-31 11:32:18 1548934338.762695 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2798755 total-bytes-write=52 payload-bytes-read=2798726/5242880 (53.38%)
+2019-01-31 11:32:18 1548934338.777209 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2801693 total-bytes-write=52 payload-bytes-read=2801664/5242880 (53.44%)
+2019-01-31 11:32:18 1548934338.778263 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2804681 total-bytes-write=52 payload-bytes-read=2804652/5242880 (53.49%)
+2019-01-31 11:32:18 1548934338.789611 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2808167 total-bytes-write=52 payload-bytes-read=2808138/5242880 (53.56%)
+2019-01-31 11:32:18 1548934338.791383 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2811653 total-bytes-write=52 payload-bytes-read=2811624/5242880 (53.63%)
+2019-01-31 11:32:18 1548934338.836429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2834013 total-bytes-write=52 payload-bytes-read=2833984/5242880 (54.05%)
+2019-01-31 11:32:18 1548934338.880425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2856821 total-bytes-write=52 payload-bytes-read=2856792/5242880 (54.49%)
+2019-01-31 11:32:18 1548934338.924431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2865287 total-bytes-write=52 payload-bytes-read=2865258/5242880 (54.65%)
+2019-01-31 11:32:19 1548934339.053778 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2867229 total-bytes-write=52 payload-bytes-read=2867200/5242880 (54.69%)
+2019-01-31 11:32:19 1548934339.054842 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2874699 total-bytes-write=52 payload-bytes-read=2874670/5242880 (54.83%)
+2019-01-31 11:32:19 1548934339.062744 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2878683 total-bytes-write=52 payload-bytes-read=2878654/5242880 (54.91%)
+2019-01-31 11:32:19 1548934339.094481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2882169 total-bytes-write=52 payload-bytes-read=2882140/5242880 (54.97%)
+2019-01-31 11:32:19 1548934339.103471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2885605 total-bytes-write=52 payload-bytes-read=2885576/5242880 (55.04%)
+2019-01-31 11:32:19 1548934339.138307 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2886103 total-bytes-write=52 payload-bytes-read=2886074/5242880 (55.05%)
+2019-01-31 11:32:19 1548934339.153570 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2887099 total-bytes-write=52 payload-bytes-read=2887070/5242880 (55.07%)
+2019-01-31 11:32:19 1548934339.163732 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2890585 total-bytes-write=52 payload-bytes-read=2890556/5242880 (55.13%)
+2019-01-31 11:32:19 1548934339.164786 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2894569 total-bytes-write=52 payload-bytes-read=2894540/5242880 (55.21%)
+2019-01-31 11:32:19 1548934339.165524 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2899051 total-bytes-write=52 payload-bytes-read=2899022/5242880 (55.29%)
+2019-01-31 11:32:19 1548934339.173838 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2902985 total-bytes-write=52 payload-bytes-read=2902956/5242880 (55.37%)
+2019-01-31 11:32:19 1548934339.175642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2906969 total-bytes-write=52 payload-bytes-read=2906940/5242880 (55.45%)
+2019-01-31 11:32:19 1548934339.175728 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2910455 total-bytes-write=52 payload-bytes-read=2910426/5242880 (55.51%)
+2019-01-31 11:32:19 1548934339.186409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2914439 total-bytes-write=52 payload-bytes-read=2914410/5242880 (55.59%)
+2019-01-31 11:32:19 1548934339.225723 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2915933 total-bytes-write=52 payload-bytes-read=2915904/5242880 (55.62%)
+2019-01-31 11:32:19 1548934339.265807 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2918871 total-bytes-write=52 payload-bytes-read=2918842/5242880 (55.67%)
+2019-01-31 11:32:19 1548934339.368487 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2922855 total-bytes-write=52 payload-bytes-read=2922826/5242880 (55.75%)
+2019-01-31 11:32:19 1548934339.369640 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2926341 total-bytes-write=52 payload-bytes-read=2926312/5242880 (55.81%)
+2019-01-31 11:32:19 1548934339.386827 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2930325 total-bytes-write=52 payload-bytes-read=2930296/5242880 (55.89%)
+2019-01-31 11:32:19 1548934339.388180 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2934259 total-bytes-write=52 payload-bytes-read=2934230/5242880 (55.97%)
+2019-01-31 11:32:19 1548934339.405303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2937745 total-bytes-write=52 payload-bytes-read=2937716/5242880 (56.03%)
+2019-01-31 11:32:19 1548934339.405969 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2939737 total-bytes-write=52 payload-bytes-read=2939708/5242880 (56.07%)
+2019-01-31 11:32:19 1548934339.408242 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2943223 total-bytes-write=52 payload-bytes-read=2943194/5242880 (56.14%)
+2019-01-31 11:32:19 1548934339.411678 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2947207 total-bytes-write=52 payload-bytes-read=2947178/5242880 (56.21%)
+2019-01-31 11:32:19 1548934339.411820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2954129 total-bytes-write=52 payload-bytes-read=2954100/5242880 (56.34%)
+2019-01-31 11:32:19 1548934339.411895 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2954627 total-bytes-write=52 payload-bytes-read=2954598/5242880 (56.35%)
+2019-01-31 11:32:19 1548934339.418690 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2958611 total-bytes-write=52 payload-bytes-read=2958582/5242880 (56.43%)
+2019-01-31 11:32:19 1548934339.419526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2959607 total-bytes-write=52 payload-bytes-read=2959578/5242880 (56.45%)
+2019-01-31 11:32:19 1548934339.420667 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2963093 total-bytes-write=52 payload-bytes-read=2963064/5242880 (56.52%)
+2019-01-31 11:32:19 1548934339.430304 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2967027 total-bytes-write=52 payload-bytes-read=2966998/5242880 (56.59%)
+2019-01-31 11:32:19 1548934339.431442 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2968521 total-bytes-write=52 payload-bytes-read=2968492/5242880 (56.62%)
+2019-01-31 11:32:19 1548934339.432572 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2975991 total-bytes-write=52 payload-bytes-read=2975962/5242880 (56.76%)
+2019-01-31 11:32:19 1548934339.434575 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2979975 total-bytes-write=52 payload-bytes-read=2979946/5242880 (56.84%)
+2019-01-31 11:32:19 1548934339.444576 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2984407 total-bytes-write=52 payload-bytes-read=2984378/5242880 (56.92%)
+2019-01-31 11:32:19 1548934339.445394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2989885 total-bytes-write=52 payload-bytes-read=2989856/5242880 (57.03%)
+2019-01-31 11:32:19 1548934339.452011 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2993869 total-bytes-write=52 payload-bytes-read=2993840/5242880 (57.10%)
+2019-01-31 11:32:19 1548934339.484628 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2996359 total-bytes-write=52 payload-bytes-read=2996330/5242880 (57.15%)
+2019-01-31 11:32:19 1548934339.484998 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2996857 total-bytes-write=52 payload-bytes-read=2996828/5242880 (57.16%)
+2019-01-31 11:32:19 1548934339.495199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=2997853 total-bytes-write=52 payload-bytes-read=2997824/5242880 (57.18%)
+2019-01-31 11:32:19 1548934339.557875 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3001289 total-bytes-write=52 payload-bytes-read=3001260/5242880 (57.24%)
+2019-01-31 11:32:19 1548934339.596610 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3003281 total-bytes-write=52 payload-bytes-read=3003252/5242880 (57.28%)
+2019-01-31 11:32:19 1548934339.613700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3006767 total-bytes-write=52 payload-bytes-read=3006738/5242880 (57.35%)
+2019-01-31 11:32:19 1548934339.614847 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3010253 total-bytes-write=52 payload-bytes-read=3010224/5242880 (57.42%)
+2019-01-31 11:32:19 1548934339.656401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3017175 total-bytes-write=52 payload-bytes-read=3017146/5242880 (57.55%)
+2019-01-31 11:32:19 1548934339.700419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3029127 total-bytes-write=52 payload-bytes-read=3029098/5242880 (57.78%)
+2019-01-31 11:32:19 1548934339.744430 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3031069 total-bytes-write=52 payload-bytes-read=3031040/5242880 (57.81%)
+2019-01-31 11:32:19 1548934339.753451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3034555 total-bytes-write=52 payload-bytes-read=3034526/5242880 (57.88%)
+2019-01-31 11:32:19 1548934339.754449 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3038041 total-bytes-write=52 payload-bytes-read=3038012/5242880 (57.95%)
+2019-01-31 11:32:19 1548934339.796420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3058409 total-bytes-write=52 payload-bytes-read=3058380/5242880 (58.33%)
+2019-01-31 11:32:19 1548934339.840408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3070809 total-bytes-write=52 payload-bytes-read=3070780/5242880 (58.57%)
+2019-01-31 11:32:19 1548934339.842782 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3071805 total-bytes-write=52 payload-bytes-read=3071776/5242880 (58.59%)
+2019-01-31 11:32:19 1548934339.843342 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3074793 total-bytes-write=52 payload-bytes-read=3074764/5242880 (58.65%)
+2019-01-31 11:32:19 1548934339.878407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3077781 total-bytes-write=52 payload-bytes-read=3077752/5242880 (58.70%)
+2019-01-31 11:32:19 1548934339.920445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3098099 total-bytes-write=52 payload-bytes-read=3098070/5242880 (59.09%)
+2019-01-31 11:32:19 1548934339.964429 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3106067 total-bytes-write=52 payload-bytes-read=3106038/5242880 (59.24%)
+2019-01-31 11:32:19 1548934339.967006 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3109553 total-bytes-write=52 payload-bytes-read=3109524/5242880 (59.31%)
+2019-01-31 11:32:19 1548934339.967662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3110051 total-bytes-write=52 payload-bytes-read=3110022/5242880 (59.32%)
+2019-01-31 11:32:19 1548934339.982894 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3113487 total-bytes-write=52 payload-bytes-read=3113458/5242880 (59.38%)
+2019-01-31 11:32:19 1548934339.999504 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3117471 total-bytes-write=52 payload-bytes-read=3117442/5242880 (59.46%)
+2019-01-31 11:32:20 1548934340.001876 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3120459 total-bytes-write=52 payload-bytes-read=3120430/5242880 (59.52%)
+2019-01-31 11:32:20 1548934340.003809 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3123945 total-bytes-write=52 payload-bytes-read=3123916/5242880 (59.58%)
+2019-01-31 11:32:20 1548934340.036216 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3127431 total-bytes-write=52 payload-bytes-read=3127402/5242880 (59.65%)
+2019-01-31 11:32:20 1548934340.076421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3133855 total-bytes-write=52 payload-bytes-read=3133826/5242880 (59.77%)
+2019-01-31 11:32:20 1548934340.120437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3148745 total-bytes-write=52 payload-bytes-read=3148716/5242880 (60.06%)
+2019-01-31 11:32:20 1548934340.164404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3165627 total-bytes-write=52 payload-bytes-read=3165598/5242880 (60.38%)
+2019-01-31 11:32:20 1548934340.208432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3173097 total-bytes-write=52 payload-bytes-read=3173068/5242880 (60.52%)
+2019-01-31 11:32:20 1548934340.283251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3176583 total-bytes-write=52 payload-bytes-read=3176554/5242880 (60.59%)
+2019-01-31 11:32:20 1548934340.328097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3177081 total-bytes-write=52 payload-bytes-read=3177052/5242880 (60.60%)
+2019-01-31 11:32:20 1548934340.408414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3178525 total-bytes-write=52 payload-bytes-read=3178496/5242880 (60.62%)
+2019-01-31 11:32:20 1548934340.445122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3182011 total-bytes-write=52 payload-bytes-read=3181982/5242880 (60.69%)
+2019-01-31 11:32:20 1548934340.445951 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3185497 total-bytes-write=52 payload-bytes-read=3185468/5242880 (60.76%)
+2019-01-31 11:32:20 1548934340.488412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3195905 total-bytes-write=52 payload-bytes-read=3195876/5242880 (60.96%)
+2019-01-31 11:32:20 1548934340.532413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3200885 total-bytes-write=52 payload-bytes-read=3200856/5242880 (61.05%)
+2019-01-31 11:32:20 1548934340.546818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3204869 total-bytes-write=52 payload-bytes-read=3204840/5242880 (61.13%)
+2019-01-31 11:32:20 1548934340.558886 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3208853 total-bytes-write=52 payload-bytes-read=3208824/5242880 (61.20%)
+2019-01-31 11:32:20 1548934340.600463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3242617 total-bytes-write=52 payload-bytes-read=3242588/5242880 (61.85%)
+2019-01-31 11:32:20 1548934340.644414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3251531 total-bytes-write=52 payload-bytes-read=3251502/5242880 (62.02%)
+2019-01-31 11:32:20 1548934340.830417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3255017 total-bytes-write=52 payload-bytes-read=3254988/5242880 (62.08%)
+2019-01-31 11:32:20 1548934340.861213 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3258503 total-bytes-write=52 payload-bytes-read=3258474/5242880 (62.15%)
+2019-01-31 11:32:20 1548934340.904402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3261939 total-bytes-write=52 payload-bytes-read=3261910/5242880 (62.22%)
+2019-01-31 11:32:20 1548934340.905928 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3263931 total-bytes-write=52 payload-bytes-read=3263902/5242880 (62.25%)
+2019-01-31 11:32:20 1548934340.916141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3267417 total-bytes-write=52 payload-bytes-read=3267388/5242880 (62.32%)
+2019-01-31 11:32:20 1548934340.956432 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3290275 total-bytes-write=52 payload-bytes-read=3290246/5242880 (62.76%)
+2019-01-31 11:32:21 1548934341.000517 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3348341 total-bytes-write=52 payload-bytes-read=3348312/5242880 (63.86%)
+2019-01-31 11:32:21 1548934341.044397 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3357803 total-bytes-write=52 payload-bytes-read=3357774/5242880 (64.04%)
+2019-01-31 11:32:21 1548934341.066479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3359247 total-bytes-write=52 payload-bytes-read=3359218/5242880 (64.07%)
+2019-01-31 11:32:21 1548934341.083190 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3361737 total-bytes-write=52 payload-bytes-read=3361708/5242880 (64.12%)
+2019-01-31 11:32:21 1548934341.106609 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3365223 total-bytes-write=52 payload-bytes-read=3365194/5242880 (64.19%)
+2019-01-31 11:32:21 1548934341.108994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3369207 total-bytes-write=52 payload-bytes-read=3369178/5242880 (64.26%)
+2019-01-31 11:32:21 1548934341.127408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3372693 total-bytes-write=52 payload-bytes-read=3372664/5242880 (64.33%)
+2019-01-31 11:32:21 1548934341.128129 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3375133 total-bytes-write=52 payload-bytes-read=3375104/5242880 (64.38%)
+2019-01-31 11:32:21 1548934341.140655 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3378619 total-bytes-write=52 payload-bytes-read=3378590/5242880 (64.44%)
+2019-01-31 11:32:21 1548934341.141103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3380113 total-bytes-write=52 payload-bytes-read=3380084/5242880 (64.47%)
+2019-01-31 11:32:21 1548934341.147422 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3383599 total-bytes-write=52 payload-bytes-read=3383570/5242880 (64.54%)
+2019-01-31 11:32:21 1548934341.147647 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3384595 total-bytes-write=52 payload-bytes-read=3384566/5242880 (64.56%)
+2019-01-31 11:32:21 1548934341.148446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3388081 total-bytes-write=52 payload-bytes-read=3388052/5242880 (64.62%)
+2019-01-31 11:32:21 1548934341.159663 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3392015 total-bytes-write=52 payload-bytes-read=3391986/5242880 (64.70%)
+2019-01-31 11:32:21 1548934341.160142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3393509 total-bytes-write=52 payload-bytes-read=3393480/5242880 (64.73%)
+2019-01-31 11:32:21 1548934341.167174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3396995 total-bytes-write=52 payload-bytes-read=3396966/5242880 (64.79%)
+2019-01-31 11:32:21 1548934341.274069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3398489 total-bytes-write=52 payload-bytes-read=3398460/5242880 (64.82%)
+2019-01-31 11:32:21 1548934341.290163 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3399983 total-bytes-write=52 payload-bytes-read=3399954/5242880 (64.85%)
+2019-01-31 11:32:21 1548934341.332874 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3403469 total-bytes-write=52 payload-bytes-read=3403440/5242880 (64.92%)
+2019-01-31 11:32:21 1548934341.376424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3403967 total-bytes-write=52 payload-bytes-read=3403938/5242880 (64.92%)
+2019-01-31 11:32:21 1548934341.446420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3407453 total-bytes-write=52 payload-bytes-read=3407424/5242880 (64.99%)
+2019-01-31 11:32:21 1548934341.488384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3407901 total-bytes-write=52 payload-bytes-read=3407872/5242880 (65.00%)
+2019-01-31 11:32:21 1548934341.489097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3411387 total-bytes-write=52 payload-bytes-read=3411358/5242880 (65.07%)
+2019-01-31 11:32:21 1548934341.532417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3421347 total-bytes-write=52 payload-bytes-read=3421318/5242880 (65.26%)
+2019-01-31 11:32:21 1548934341.576447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3448637 total-bytes-write=52 payload-bytes-read=3448608/5242880 (65.78%)
+2019-01-31 11:32:21 1548934341.620409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3455609 total-bytes-write=52 payload-bytes-read=3455580/5242880 (65.91%)
+2019-01-31 11:32:21 1548934341.620771 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3457053 total-bytes-write=52 payload-bytes-read=3457024/5242880 (65.94%)
+2019-01-31 11:32:21 1548934341.620846 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3460539 total-bytes-write=52 payload-bytes-read=3460510/5242880 (66.00%)
+2019-01-31 11:32:21 1548934341.622300 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3464523 total-bytes-write=52 payload-bytes-read=3464494/5242880 (66.08%)
+2019-01-31 11:32:21 1548934341.644865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3468507 total-bytes-write=52 payload-bytes-read=3468478/5242880 (66.16%)
+2019-01-31 11:32:21 1548934341.688435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3474931 total-bytes-write=52 payload-bytes-read=3474902/5242880 (66.28%)
+2019-01-31 11:32:21 1548934341.732416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3478417 total-bytes-write=52 payload-bytes-read=3478388/5242880 (66.34%)
+2019-01-31 11:32:21 1548934341.743582 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3481903 total-bytes-write=52 payload-bytes-read=3481874/5242880 (66.41%)
+2019-01-31 11:32:21 1548934341.784403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3486883 total-bytes-write=52 payload-bytes-read=3486854/5242880 (66.51%)
+2019-01-31 11:32:21 1548934341.832427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3503267 total-bytes-write=52 payload-bytes-read=3503238/5242880 (66.82%)
+2019-01-31 11:32:21 1548934341.876405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3513177 total-bytes-write=52 payload-bytes-read=3513148/5242880 (67.01%)
+2019-01-31 11:32:21 1548934341.914589 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3513675 total-bytes-write=52 payload-bytes-read=3513646/5242880 (67.02%)
+2019-01-31 11:32:21 1548934341.922206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3517161 total-bytes-write=52 payload-bytes-read=3517132/5242880 (67.08%)
+2019-01-31 11:32:21 1548934341.926061 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3517659 total-bytes-write=52 payload-bytes-read=3517630/5242880 (67.09%)
+2019-01-31 11:32:21 1548934341.969305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3521145 total-bytes-write=52 payload-bytes-read=3521116/5242880 (67.16%)
+2019-01-31 11:32:21 1548934341.971607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3524581 total-bytes-write=52 payload-bytes-read=3524552/5242880 (67.23%)
+2019-01-31 11:32:21 1548934341.985286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3525577 total-bytes-write=52 payload-bytes-read=3525548/5242880 (67.24%)
+2019-01-31 11:32:21 1548934341.994700 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3526573 total-bytes-write=52 payload-bytes-read=3526544/5242880 (67.26%)
+2019-01-31 11:32:22 1548934342.036451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3545945 total-bytes-write=52 payload-bytes-read=3545916/5242880 (67.63%)
+2019-01-31 11:32:22 1548934342.080414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3546941 total-bytes-write=52 payload-bytes-read=3546912/5242880 (67.65%)
+2019-01-31 11:32:22 1548934342.128074 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3549431 total-bytes-write=52 payload-bytes-read=3549402/5242880 (67.70%)
+2019-01-31 11:32:22 1548934342.139374 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3552917 total-bytes-write=52 payload-bytes-read=3552888/5242880 (67.77%)
+2019-01-31 11:32:22 1548934342.140406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3555357 total-bytes-write=52 payload-bytes-read=3555328/5242880 (67.81%)
+2019-01-31 11:32:22 1548934342.170885 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3558843 total-bytes-write=52 payload-bytes-read=3558814/5242880 (67.88%)
+2019-01-31 11:32:22 1548934342.171120 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3562329 total-bytes-write=52 payload-bytes-read=3562300/5242880 (67.95%)
+2019-01-31 11:32:22 1548934342.212415 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3562827 total-bytes-write=52 payload-bytes-read=3562798/5242880 (67.95%)
+2019-01-31 11:32:22 1548934342.339344 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3566313 total-bytes-write=52 payload-bytes-read=3566284/5242880 (68.02%)
+2019-01-31 11:32:22 1548934342.438639 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3566811 total-bytes-write=52 payload-bytes-read=3566782/5242880 (68.03%)
+2019-01-31 11:32:22 1548934342.439144 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3570297 total-bytes-write=52 payload-bytes-read=3570268/5242880 (68.10%)
+2019-01-31 11:32:22 1548934342.480437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3578215 total-bytes-write=52 payload-bytes-read=3578186/5242880 (68.25%)
+2019-01-31 11:32:22 1548934342.524409 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3588623 total-bytes-write=52 payload-bytes-read=3588594/5242880 (68.45%)
+2019-01-31 11:32:22 1548934342.568463 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3609987 total-bytes-write=52 payload-bytes-read=3609958/5242880 (68.85%)
+2019-01-31 11:32:22 1548934342.612399 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3614967 total-bytes-write=52 payload-bytes-read=3614938/5242880 (68.95%)
+2019-01-31 11:32:22 1548934342.613802 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3615963 total-bytes-write=52 payload-bytes-read=3615934/5242880 (68.97%)
+2019-01-31 11:32:22 1548934342.615456 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3619449 total-bytes-write=52 payload-bytes-read=3619420/5242880 (69.03%)
+2019-01-31 11:32:22 1548934342.638159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3623383 total-bytes-write=52 payload-bytes-read=3623354/5242880 (69.11%)
+2019-01-31 11:32:22 1548934342.638245 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3626869 total-bytes-write=52 payload-bytes-read=3626840/5242880 (69.18%)
+2019-01-31 11:32:22 1548934342.656178 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3630853 total-bytes-write=52 payload-bytes-read=3630824/5242880 (69.25%)
+2019-01-31 11:32:22 1548934342.656249 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3634837 total-bytes-write=52 payload-bytes-read=3634808/5242880 (69.33%)
+2019-01-31 11:32:22 1548934342.696390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3642257 total-bytes-write=52 payload-bytes-read=3642228/5242880 (69.47%)
+2019-01-31 11:32:22 1548934342.740394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3647735 total-bytes-write=52 payload-bytes-read=3647706/5242880 (69.57%)
+2019-01-31 11:32:22 1548934342.749402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3648731 total-bytes-write=52 payload-bytes-read=3648702/5242880 (69.59%)
+2019-01-31 11:32:22 1548934342.953134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3652217 total-bytes-write=52 payload-bytes-read=3652188/5242880 (69.66%)
+2019-01-31 11:32:22 1548934342.954259 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3653661 total-bytes-write=52 payload-bytes-read=3653632/5242880 (69.69%)
+2019-01-31 11:32:22 1548934342.956666 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3657147 total-bytes-write=52 payload-bytes-read=3657118/5242880 (69.75%)
+2019-01-31 11:32:23 1548934343.003636 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3661131 total-bytes-write=52 payload-bytes-read=3661102/5242880 (69.83%)
+2019-01-31 11:32:23 1548934343.006600 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3665115 total-bytes-write=52 payload-bytes-read=3665086/5242880 (69.91%)
+2019-01-31 11:32:23 1548934343.048405 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3678013 total-bytes-write=52 payload-bytes-read=3677984/5242880 (70.15%)
+2019-01-31 11:32:23 1548934343.092417 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3681499 total-bytes-write=52 payload-bytes-read=3681470/5242880 (70.22%)
+2019-01-31 11:32:23 1548934343.104122 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3682993 total-bytes-write=52 payload-bytes-read=3682964/5242880 (70.25%)
+2019-01-31 11:32:23 1548934343.104662 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3686429 total-bytes-write=52 payload-bytes-read=3686400/5242880 (70.31%)
+2019-01-31 11:32:23 1548934343.105746 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3690413 total-bytes-write=52 payload-bytes-read=3690384/5242880 (70.39%)
+2019-01-31 11:32:23 1548934343.120953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3694397 total-bytes-write=52 payload-bytes-read=3694368/5242880 (70.46%)
+2019-01-31 11:32:23 1548934343.164410 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3698879 total-bytes-write=52 payload-bytes-read=3698850/5242880 (70.55%)
+2019-01-31 11:32:23 1548934343.208419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3700373 total-bytes-write=52 payload-bytes-read=3700344/5242880 (70.58%)
+2019-01-31 11:32:23 1548934343.339061 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3702813 total-bytes-write=52 payload-bytes-read=3702784/5242880 (70.62%)
+2019-01-31 11:32:23 1548934343.454661 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3706299 total-bytes-write=52 payload-bytes-read=3706270/5242880 (70.69%)
+2019-01-31 11:32:23 1548934343.492490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3707793 total-bytes-write=52 payload-bytes-read=3707764/5242880 (70.72%)
+2019-01-31 11:32:23 1548934343.493448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3711279 total-bytes-write=52 payload-bytes-read=3711250/5242880 (70.79%)
+2019-01-31 11:32:23 1548934343.513401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3714765 total-bytes-write=52 payload-bytes-read=3714736/5242880 (70.85%)
+2019-01-31 11:32:23 1548934343.567828 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3716259 total-bytes-write=52 payload-bytes-read=3716230/5242880 (70.88%)
+2019-01-31 11:32:23 1548934343.568200 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3717753 total-bytes-write=52 payload-bytes-read=3717724/5242880 (70.91%)
+2019-01-31 11:32:23 1548934343.608450 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3743051 total-bytes-write=52 payload-bytes-read=3743022/5242880 (71.39%)
+2019-01-31 11:32:23 1548934343.652404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3746039 total-bytes-write=52 payload-bytes-read=3746010/5242880 (71.45%)
+2019-01-31 11:32:23 1548934343.653320 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3747533 total-bytes-write=52 payload-bytes-read=3747504/5242880 (71.48%)
+2019-01-31 11:32:23 1548934343.673743 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3750023 total-bytes-write=52 payload-bytes-read=3749994/5242880 (71.53%)
+2019-01-31 11:32:23 1548934343.686424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3752463 total-bytes-write=52 payload-bytes-read=3752434/5242880 (71.57%)
+2019-01-31 11:32:23 1548934343.706577 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3754953 total-bytes-write=52 payload-bytes-read=3754924/5242880 (71.62%)
+2019-01-31 11:32:23 1548934343.777551 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3757443 total-bytes-write=52 payload-bytes-read=3757414/5242880 (71.67%)
+2019-01-31 11:32:23 1548934343.820395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3763419 total-bytes-write=52 payload-bytes-read=3763390/5242880 (71.78%)
+2019-01-31 11:32:23 1548934343.950227 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3765909 total-bytes-write=52 payload-bytes-read=3765880/5242880 (71.83%)
+2019-01-31 11:32:24 1548934344.082466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3769345 total-bytes-write=52 payload-bytes-read=3769316/5242880 (71.89%)
+2019-01-31 11:32:24 1548934344.083034 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3769843 total-bytes-write=52 payload-bytes-read=3769814/5242880 (71.90%)
+2019-01-31 11:32:24 1548934344.085092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3773329 total-bytes-write=52 payload-bytes-read=3773300/5242880 (71.97%)
+2019-01-31 11:32:24 1548934344.086075 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3777313 total-bytes-write=52 payload-bytes-read=3777284/5242880 (72.05%)
+2019-01-31 11:32:24 1548934344.105694 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3781297 total-bytes-write=52 payload-bytes-read=3781268/5242880 (72.12%)
+2019-01-31 11:32:24 1548934344.148400 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3787223 total-bytes-write=52 payload-bytes-read=3787194/5242880 (72.23%)
+2019-01-31 11:32:24 1548934344.248490 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3788717 total-bytes-write=52 payload-bytes-read=3788688/5242880 (72.26%)
+2019-01-31 11:32:24 1548934344.312571 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3792203 total-bytes-write=52 payload-bytes-read=3792174/5242880 (72.33%)
+2019-01-31 11:32:24 1548934344.334427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3792701 total-bytes-write=52 payload-bytes-read=3792672/5242880 (72.34%)
+2019-01-31 11:32:24 1548934344.478349 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3793199 total-bytes-write=52 payload-bytes-read=3793170/5242880 (72.35%)
+2019-01-31 11:32:24 1548934344.555002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3796685 total-bytes-write=52 payload-bytes-read=3796656/5242880 (72.42%)
+2019-01-31 11:32:24 1548934344.558171 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3800171 total-bytes-write=52 payload-bytes-read=3800142/5242880 (72.48%)
+2019-01-31 11:32:24 1548934344.600434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3824971 total-bytes-write=52 payload-bytes-read=3824942/5242880 (72.95%)
+2019-01-31 11:32:24 1548934344.644462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3850269 total-bytes-write=52 payload-bytes-read=3850240/5242880 (73.44%)
+2019-01-31 11:32:24 1548934344.688439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3859233 total-bytes-write=52 payload-bytes-read=3859204/5242880 (73.61%)
+2019-01-31 11:32:24 1548934344.689714 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3861723 total-bytes-write=52 payload-bytes-read=3861694/5242880 (73.66%)
+2019-01-31 11:32:24 1548934344.804773 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3868645 total-bytes-write=52 payload-bytes-read=3868616/5242880 (73.79%)
+2019-01-31 11:32:24 1548934344.813362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3870139 total-bytes-write=52 payload-bytes-read=3870110/5242880 (73.82%)
+2019-01-31 11:32:24 1548934344.818533 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3872629 total-bytes-write=52 payload-bytes-read=3872600/5242880 (73.86%)
+2019-01-31 11:32:24 1548934344.819203 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3876115 total-bytes-write=52 payload-bytes-read=3876086/5242880 (73.93%)
+2019-01-31 11:32:24 1548934344.831373 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3879601 total-bytes-write=52 payload-bytes-read=3879572/5242880 (74.00%)
+2019-01-31 11:32:24 1548934344.876427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3891005 total-bytes-write=52 payload-bytes-read=3890976/5242880 (74.21%)
+2019-01-31 11:32:24 1548934344.920445 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3905397 total-bytes-write=52 payload-bytes-read=3905368/5242880 (74.49%)
+2019-01-31 11:32:24 1548934344.964441 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3924271 total-bytes-write=52 payload-bytes-read=3924242/5242880 (74.85%)
+2019-01-31 11:32:25 1548934345.008511 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3947129 total-bytes-write=52 payload-bytes-read=3947100/5242880 (75.28%)
+2019-01-31 11:32:25 1548934345.052434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3952557 total-bytes-write=52 payload-bytes-read=3952528/5242880 (75.39%)
+2019-01-31 11:32:25 1548934345.113765 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3956541 total-bytes-write=52 payload-bytes-read=3956512/5242880 (75.46%)
+2019-01-31 11:32:25 1548934345.113841 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3960027 total-bytes-write=52 payload-bytes-read=3959998/5242880 (75.53%)
+2019-01-31 11:32:25 1548934345.124348 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3964011 total-bytes-write=52 payload-bytes-read=3963982/5242880 (75.61%)
+2019-01-31 11:32:25 1548934345.135992 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3964957 total-bytes-write=52 payload-bytes-read=3964928/5242880 (75.62%)
+2019-01-31 11:32:25 1548934345.157315 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3968443 total-bytes-write=52 payload-bytes-read=3968414/5242880 (75.69%)
+2019-01-31 11:32:25 1548934345.158401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3969439 total-bytes-write=52 payload-bytes-read=3969410/5242880 (75.71%)
+2019-01-31 11:32:25 1548934345.162684 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3976909 total-bytes-write=52 payload-bytes-read=3976880/5242880 (75.85%)
+2019-01-31 11:32:25 1548934345.177229 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3980395 total-bytes-write=52 payload-bytes-read=3980366/5242880 (75.92%)
+2019-01-31 11:32:25 1548934345.200394 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3983831 total-bytes-write=52 payload-bytes-read=3983802/5242880 (75.98%)
+2019-01-31 11:32:25 1548934345.377994 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3986321 total-bytes-write=52 payload-bytes-read=3986292/5242880 (76.03%)
+2019-01-31 11:32:25 1548934345.419347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3986819 total-bytes-write=52 payload-bytes-read=3986790/5242880 (76.04%)
+2019-01-31 11:32:25 1548934345.434092 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3988811 total-bytes-write=52 payload-bytes-read=3988782/5242880 (76.08%)
+2019-01-31 11:32:25 1548934345.455481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3992297 total-bytes-write=52 payload-bytes-read=3992268/5242880 (76.15%)
+2019-01-31 11:32:25 1548934345.455984 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3995285 total-bytes-write=52 payload-bytes-read=3995256/5242880 (76.20%)
+2019-01-31 11:32:25 1548934345.457083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=3998721 total-bytes-write=52 payload-bytes-read=3998692/5242880 (76.27%)
+2019-01-31 11:32:25 1548934345.467123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4002705 total-bytes-write=52 payload-bytes-read=4002676/5242880 (76.34%)
+2019-01-31 11:32:25 1548934345.467203 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4003701 total-bytes-write=52 payload-bytes-read=4003672/5242880 (76.36%)
+2019-01-31 11:32:25 1548934345.472625 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4010673 total-bytes-write=52 payload-bytes-read=4010644/5242880 (76.50%)
+2019-01-31 11:32:25 1548934345.472708 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4015105 total-bytes-write=52 payload-bytes-read=4015076/5242880 (76.58%)
+2019-01-31 11:32:25 1548934345.478362 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4018591 total-bytes-write=52 payload-bytes-read=4018562/5242880 (76.65%)
+2019-01-31 11:32:25 1548934345.489501 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4019089 total-bytes-write=52 payload-bytes-read=4019060/5242880 (76.66%)
+2019-01-31 11:32:25 1548934345.508488 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4021081 total-bytes-write=52 payload-bytes-read=4021052/5242880 (76.70%)
+2019-01-31 11:32:25 1548934345.510471 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4025563 total-bytes-write=52 payload-bytes-read=4025534/5242880 (76.78%)
+2019-01-31 11:32:25 1548934345.510683 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4029049 total-bytes-write=52 payload-bytes-read=4029020/5242880 (76.85%)
+2019-01-31 11:32:25 1548934345.551306 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4031489 total-bytes-write=52 payload-bytes-read=4031460/5242880 (76.89%)
+2019-01-31 11:32:25 1548934345.569865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4033979 total-bytes-write=52 payload-bytes-read=4033950/5242880 (76.94%)
+2019-01-31 11:32:25 1548934345.579138 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4037963 total-bytes-write=52 payload-bytes-read=4037934/5242880 (77.02%)
+2019-01-31 11:32:25 1548934345.686606 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4041947 total-bytes-write=52 payload-bytes-read=4041918/5242880 (77.09%)
+2019-01-31 11:32:25 1548934345.728427 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4053849 total-bytes-write=52 payload-bytes-read=4053820/5242880 (77.32%)
+2019-01-31 11:32:25 1548934345.772396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4054347 total-bytes-write=52 payload-bytes-read=4054318/5242880 (77.33%)
+2019-01-31 11:32:25 1548934345.785909 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4057833 total-bytes-write=52 payload-bytes-read=4057804/5242880 (77.40%)
+2019-01-31 11:32:25 1548934345.798033 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4061817 total-bytes-write=52 payload-bytes-read=4061788/5242880 (77.47%)
+2019-01-31 11:32:25 1548934345.819134 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4065253 total-bytes-write=52 payload-bytes-read=4065224/5242880 (77.54%)
+2019-01-31 11:32:25 1548934345.823412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4066249 total-bytes-write=52 payload-bytes-read=4066220/5242880 (77.56%)
+2019-01-31 11:32:25 1548934345.825212 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4069735 total-bytes-write=52 payload-bytes-read=4069706/5242880 (77.62%)
+2019-01-31 11:32:25 1548934345.837447 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4073719 total-bytes-write=52 payload-bytes-read=4073690/5242880 (77.70%)
+2019-01-31 11:32:25 1548934345.838675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4077703 total-bytes-write=52 payload-bytes-read=4077674/5242880 (77.78%)
+2019-01-31 11:32:25 1548934345.880387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4083131 total-bytes-write=52 payload-bytes-read=4083102/5242880 (77.88%)
+2019-01-31 11:32:25 1548934345.952710 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4086617 total-bytes-write=52 payload-bytes-read=4086588/5242880 (77.95%)
+2019-01-31 11:32:26 1548934346.015549 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4087115 total-bytes-write=52 payload-bytes-read=4087086/5242880 (77.95%)
+2019-01-31 11:32:26 1548934346.045697 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4091099 total-bytes-write=52 payload-bytes-read=4091070/5242880 (78.03%)
+2019-01-31 11:32:26 1548934346.073416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4095581 total-bytes-write=52 payload-bytes-read=4095552/5242880 (78.12%)
+2019-01-31 11:32:26 1548934346.074337 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4096029 total-bytes-write=52 payload-bytes-read=4096000/5242880 (78.12%)
+2019-01-31 11:32:26 1548934346.075893 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4099515 total-bytes-write=52 payload-bytes-read=4099486/5242880 (78.19%)
+2019-01-31 11:32:26 1548934346.077350 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4103499 total-bytes-write=52 payload-bytes-read=4103470/5242880 (78.27%)
+2019-01-31 11:32:26 1548934346.108367 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4103997 total-bytes-write=52 payload-bytes-read=4103968/5242880 (78.28%)
+2019-01-31 11:32:26 1548934346.109379 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4106985 total-bytes-write=52 payload-bytes-read=4106956/5242880 (78.33%)
+2019-01-31 11:32:26 1548934346.126050 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4110471 total-bytes-write=52 payload-bytes-read=4110442/5242880 (78.40%)
+2019-01-31 11:32:26 1548934346.140314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4114903 total-bytes-write=52 payload-bytes-read=4114874/5242880 (78.48%)
+2019-01-31 11:32:26 1548934346.141336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4118887 total-bytes-write=52 payload-bytes-read=4118858/5242880 (78.56%)
+2019-01-31 11:32:26 1548934346.144624 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4122373 total-bytes-write=52 payload-bytes-read=4122344/5242880 (78.63%)
+2019-01-31 11:32:26 1548934346.153963 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4126357 total-bytes-write=52 payload-bytes-read=4126328/5242880 (78.70%)
+2019-01-31 11:32:26 1548934346.183961 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4127353 total-bytes-write=52 payload-bytes-read=4127324/5242880 (78.72%)
+2019-01-31 11:32:26 1548934346.321682 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4128797 total-bytes-write=52 payload-bytes-read=4128768/5242880 (78.75%)
+2019-01-31 11:32:26 1548934346.454336 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4132283 total-bytes-write=52 payload-bytes-read=4132254/5242880 (78.82%)
+2019-01-31 11:32:26 1548934346.472938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4135769 total-bytes-write=52 payload-bytes-read=4135740/5242880 (78.88%)
+2019-01-31 11:32:26 1548934346.516403 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4136267 total-bytes-write=52 payload-bytes-read=4136238/5242880 (78.89%)
+2019-01-31 11:32:26 1548934346.702037 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4139753 total-bytes-write=52 payload-bytes-read=4139724/5242880 (78.96%)
+2019-01-31 11:32:26 1548934346.781103 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4140251 total-bytes-write=52 payload-bytes-read=4140222/5242880 (78.97%)
+2019-01-31 11:32:26 1548934346.825820 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4143737 total-bytes-write=52 payload-bytes-read=4143708/5242880 (79.03%)
+2019-01-31 11:32:26 1548934346.868398 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4148667 total-bytes-write=52 payload-bytes-read=4148638/5242880 (79.13%)
+2019-01-31 11:32:26 1548934346.912451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4167043 total-bytes-write=52 payload-bytes-read=4167014/5242880 (79.48%)
+2019-01-31 11:32:26 1548934346.956448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4176505 total-bytes-write=52 payload-bytes-read=4176476/5242880 (79.66%)
+2019-01-31 11:32:26 1548934346.968133 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4178945 total-bytes-write=52 payload-bytes-read=4178916/5242880 (79.71%)
+2019-01-31 11:32:26 1548934346.979917 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4181933 total-bytes-write=52 payload-bytes-read=4181904/5242880 (79.76%)
+2019-01-31 11:32:27 1548934347.019248 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4182929 total-bytes-write=52 payload-bytes-read=4182900/5242880 (79.78%)
+2019-01-31 11:32:27 1548934347.042181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4187909 total-bytes-write=52 payload-bytes-read=4187880/5242880 (79.88%)
+2019-01-31 11:32:27 1548934347.053479 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4191395 total-bytes-write=52 payload-bytes-read=4191366/5242880 (79.94%)
+2019-01-31 11:32:27 1548934347.061756 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4194333 total-bytes-write=52 payload-bytes-read=4194304/5242880 (80.00%)
+2019-01-31 11:32:27 1548934347.096780 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4200309 total-bytes-write=52 payload-bytes-read=4200280/5242880 (80.11%)
+2019-01-31 11:32:27 1548934347.100076 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4201305 total-bytes-write=52 payload-bytes-read=4201276/5242880 (80.13%)
+2019-01-31 11:32:27 1548934347.100499 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4204293 total-bytes-write=52 payload-bytes-read=4204264/5242880 (80.19%)
+2019-01-31 11:32:27 1548934347.106861 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4207779 total-bytes-write=52 payload-bytes-read=4207750/5242880 (80.26%)
+2019-01-31 11:32:27 1548934347.124042 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4211713 total-bytes-write=52 payload-bytes-read=4211684/5242880 (80.33%)
+2019-01-31 11:32:27 1548934347.126371 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4213207 total-bytes-write=52 payload-bytes-read=4213178/5242880 (80.36%)
+2019-01-31 11:32:27 1548934347.128603 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4216693 total-bytes-write=52 payload-bytes-read=4216664/5242880 (80.43%)
+2019-01-31 11:32:27 1548934347.165293 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4220677 total-bytes-write=52 payload-bytes-read=4220648/5242880 (80.50%)
+2019-01-31 11:32:27 1548934347.209161 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4222669 total-bytes-write=52 payload-bytes-read=4222640/5242880 (80.54%)
+2019-01-31 11:32:27 1548934347.249286 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4223167 total-bytes-write=52 payload-bytes-read=4223138/5242880 (80.55%)
+2019-01-31 11:32:27 1548934347.374569 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4225657 total-bytes-write=52 payload-bytes-read=4225628/5242880 (80.60%)
+2019-01-31 11:32:27 1548934347.484581 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4229093 total-bytes-write=52 payload-bytes-read=4229064/5242880 (80.66%)
+2019-01-31 11:32:27 1548934347.499165 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4232579 total-bytes-write=52 payload-bytes-read=4232550/5242880 (80.73%)
+2019-01-31 11:32:27 1548934347.520448 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4236065 total-bytes-write=52 payload-bytes-read=4236036/5242880 (80.80%)
+2019-01-31 11:32:27 1548934347.564384 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4240049 total-bytes-write=52 payload-bytes-read=4240020/5242880 (80.87%)
+2019-01-31 11:32:27 1548934347.612385 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4245477 total-bytes-write=52 payload-bytes-read=4245448/5242880 (80.98%)
+2019-01-31 11:32:27 1548934347.656426 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4253943 total-bytes-write=52 payload-bytes-read=4253914/5242880 (81.14%)
+2019-01-31 11:32:27 1548934347.700418 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4262359 total-bytes-write=52 payload-bytes-read=4262330/5242880 (81.30%)
+2019-01-31 11:32:27 1548934347.724696 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4265845 total-bytes-write=52 payload-bytes-read=4265816/5242880 (81.36%)
+2019-01-31 11:32:27 1548934347.731372 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4266343 total-bytes-write=52 payload-bytes-read=4266314/5242880 (81.37%)
+2019-01-31 11:32:27 1548934347.732811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4270327 total-bytes-write=52 payload-bytes-read=4270298/5242880 (81.45%)
+2019-01-31 11:32:27 1548934347.763676 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4274809 total-bytes-write=52 payload-bytes-read=4274780/5242880 (81.53%)
+2019-01-31 11:32:27 1548934347.764734 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4278245 total-bytes-write=52 payload-bytes-read=4278216/5242880 (81.60%)
+2019-01-31 11:32:27 1548934347.773908 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4279241 total-bytes-write=52 payload-bytes-read=4279212/5242880 (81.62%)
+2019-01-31 11:32:27 1548934347.783003 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4280735 total-bytes-write=52 payload-bytes-read=4280706/5242880 (81.65%)
+2019-01-31 11:32:27 1548934347.783831 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4284221 total-bytes-write=52 payload-bytes-read=4284192/5242880 (81.71%)
+2019-01-31 11:32:27 1548934347.802473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4288205 total-bytes-write=52 payload-bytes-read=4288176/5242880 (81.79%)
+2019-01-31 11:32:27 1548934347.803314 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4288703 total-bytes-write=52 payload-bytes-read=4288674/5242880 (81.80%)
+2019-01-31 11:32:27 1548934347.804041 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4292189 total-bytes-write=52 payload-bytes-read=4292160/5242880 (81.87%)
+2019-01-31 11:32:27 1548934347.806107 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4296123 total-bytes-write=52 payload-bytes-read=4296094/5242880 (81.94%)
+2019-01-31 11:32:27 1548934347.808073 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4300107 total-bytes-write=52 payload-bytes-read=4300078/5242880 (82.02%)
+2019-01-31 11:32:27 1548934347.811485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4303593 total-bytes-write=52 payload-bytes-read=4303564/5242880 (82.08%)
+2019-01-31 11:32:27 1548934347.813064 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4304589 total-bytes-write=52 payload-bytes-read=4304560/5242880 (82.10%)
+2019-01-31 11:32:27 1548934347.816069 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4308075 total-bytes-write=52 payload-bytes-read=4308046/5242880 (82.17%)
+2019-01-31 11:32:27 1548934347.825924 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4312009 total-bytes-write=52 payload-bytes-read=4311980/5242880 (82.24%)
+2019-01-31 11:32:27 1548934347.835347 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4315993 total-bytes-write=52 payload-bytes-read=4315964/5242880 (82.32%)
+2019-01-31 11:32:27 1548934347.836532 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4319977 total-bytes-write=52 payload-bytes-read=4319948/5242880 (82.40%)
+2019-01-31 11:32:27 1548934347.880457 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4340345 total-bytes-write=52 payload-bytes-read=4340316/5242880 (82.78%)
+2019-01-31 11:32:27 1548934347.924395 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4346769 total-bytes-write=52 payload-bytes-read=4346740/5242880 (82.91%)
+2019-01-31 11:32:27 1548934347.930262 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4350753 total-bytes-write=52 payload-bytes-read=4350724/5242880 (82.98%)
+2019-01-31 11:32:27 1548934347.952485 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4354239 total-bytes-write=52 payload-bytes-read=4354210/5242880 (83.05%)
+2019-01-31 11:32:27 1548934347.957740 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4355733 total-bytes-write=52 payload-bytes-read=4355704/5242880 (83.08%)
+2019-01-31 11:32:27 1548934347.970413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4359169 total-bytes-write=52 payload-bytes-read=4359140/5242880 (83.14%)
+2019-01-31 11:32:27 1548934347.979408 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4362655 total-bytes-write=52 payload-bytes-read=4362626/5242880 (83.21%)
+2019-01-31 11:32:27 1548934347.998451 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4366141 total-bytes-write=52 payload-bytes-read=4366112/5242880 (83.28%)
+2019-01-31 11:32:28 1548934348.046797 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4368133 total-bytes-write=52 payload-bytes-read=4368104/5242880 (83.31%)
+2019-01-31 11:32:28 1548934348.068184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4371619 total-bytes-write=52 payload-bytes-read=4371590/5242880 (83.38%)
+2019-01-31 11:32:28 1548934348.108416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4379039 total-bytes-write=52 payload-bytes-read=4379010/5242880 (83.52%)
+2019-01-31 11:32:28 1548934348.152414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4383521 total-bytes-write=52 payload-bytes-read=4383492/5242880 (83.61%)
+2019-01-31 11:32:28 1548934348.304181 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4385513 total-bytes-write=52 payload-bytes-read=4385484/5242880 (83.65%)
+2019-01-31 11:32:28 1548934348.444881 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4388999 total-bytes-write=52 payload-bytes-read=4388970/5242880 (83.71%)
+2019-01-31 11:32:28 1548934348.474267 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4390493 total-bytes-write=52 payload-bytes-read=4390464/5242880 (83.74%)
+2019-01-31 11:32:28 1548934348.496316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4392933 total-bytes-write=52 payload-bytes-read=4392904/5242880 (83.79%)
+2019-01-31 11:32:28 1548934348.515938 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4395423 total-bytes-write=52 payload-bytes-read=4395394/5242880 (83.84%)
+2019-01-31 11:32:28 1548934348.563657 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4398909 total-bytes-write=52 payload-bytes-read=4398880/5242880 (83.90%)
+2019-01-31 11:32:28 1548934348.568045 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4401897 total-bytes-write=52 payload-bytes-read=4401868/5242880 (83.96%)
+2019-01-31 11:32:28 1548934348.570745 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4405383 total-bytes-write=52 payload-bytes-read=4405354/5242880 (84.03%)
+2019-01-31 11:32:28 1548934348.573078 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4408819 total-bytes-write=52 payload-bytes-read=4408790/5242880 (84.09%)
+2019-01-31 11:32:28 1548934348.575675 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4412305 total-bytes-write=52 payload-bytes-read=4412276/5242880 (84.16%)
+2019-01-31 11:32:28 1548934348.577303 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4413301 total-bytes-write=52 payload-bytes-read=4413272/5242880 (84.18%)
+2019-01-31 11:32:28 1548934348.579513 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4414297 total-bytes-write=52 payload-bytes-read=4414268/5242880 (84.20%)
+2019-01-31 11:32:28 1548934348.620438 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4427195 total-bytes-write=52 payload-bytes-read=4427166/5242880 (84.44%)
+2019-01-31 11:32:28 1548934348.664420 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4445571 total-bytes-write=52 payload-bytes-read=4445542/5242880 (84.79%)
+2019-01-31 11:32:28 1548934348.708414 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4454535 total-bytes-write=52 payload-bytes-read=4454506/5242880 (84.96%)
+2019-01-31 11:32:28 1548934348.710287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4456029 total-bytes-write=52 payload-bytes-read=4456000/5242880 (84.99%)
+2019-01-31 11:32:28 1548934348.733750 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4459465 total-bytes-write=52 payload-bytes-read=4459436/5242880 (85.06%)
+2019-01-31 11:32:28 1548934348.734065 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4460959 total-bytes-write=52 payload-bytes-read=4460930/5242880 (85.09%)
+2019-01-31 11:32:28 1548934348.747796 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4464445 total-bytes-write=52 payload-bytes-read=4464416/5242880 (85.15%)
+2019-01-31 11:32:28 1548934348.761059 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4467931 total-bytes-write=52 payload-bytes-read=4467902/5242880 (85.22%)
+2019-01-31 11:32:28 1548934348.804421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4475351 total-bytes-write=52 payload-bytes-read=4475322/5242880 (85.36%)
+2019-01-31 11:32:28 1548934348.848416 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4482323 total-bytes-write=52 payload-bytes-read=4482294/5242880 (85.49%)
+2019-01-31 11:32:28 1548934348.849389 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4482821 total-bytes-write=52 payload-bytes-read=4482792/5242880 (85.50%)
+2019-01-31 11:32:28 1548934348.912025 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4486307 total-bytes-write=52 payload-bytes-read=4486278/5242880 (85.57%)
+2019-01-31 11:32:28 1548934348.954790 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4489245 total-bytes-write=52 payload-bytes-read=4489216/5242880 (85.62%)
+2019-01-31 11:32:28 1548934348.954884 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4492731 total-bytes-write=52 payload-bytes-read=4492702/5242880 (85.69%)
+2019-01-31 11:32:28 1548934348.962953 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4496217 total-bytes-write=52 payload-bytes-read=4496188/5242880 (85.76%)
+2019-01-31 11:32:29 1548934349.004406 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4505629 total-bytes-write=52 payload-bytes-read=4505600/5242880 (85.94%)
+2019-01-31 11:32:29 1548934349.048411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4521067 total-bytes-write=52 payload-bytes-read=4521038/5242880 (86.23%)
+2019-01-31 11:32:29 1548934349.132942 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4522013 total-bytes-write=52 payload-bytes-read=4521984/5242880 (86.25%)
+2019-01-31 11:32:29 1548934349.206051 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4525499 total-bytes-write=52 payload-bytes-read=4525470/5242880 (86.32%)
+2019-01-31 11:32:29 1548934349.209032 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4529483 total-bytes-write=52 payload-bytes-read=4529454/5242880 (86.39%)
+2019-01-31 11:32:29 1548934349.427652 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4533467 total-bytes-write=52 payload-bytes-read=4533438/5242880 (86.47%)
+2019-01-31 11:32:29 1548934349.461251 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4536953 total-bytes-write=52 payload-bytes-read=4536924/5242880 (86.53%)
+2019-01-31 11:32:29 1548934349.467117 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4537949 total-bytes-write=52 payload-bytes-read=4537920/5242880 (86.55%)
+2019-01-31 11:32:29 1548934349.514481 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4541385 total-bytes-write=52 payload-bytes-read=4541356/5242880 (86.62%)
+2019-01-31 11:32:29 1548934349.516261 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4542381 total-bytes-write=52 payload-bytes-read=4542352/5242880 (86.64%)
+2019-01-31 11:32:29 1548934349.564607 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4545867 total-bytes-write=52 payload-bytes-read=4545838/5242880 (86.70%)
+2019-01-31 11:32:29 1548934349.566185 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4548855 total-bytes-write=52 payload-bytes-read=4548826/5242880 (86.76%)
+2019-01-31 11:32:29 1548934349.571088 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4552341 total-bytes-write=52 payload-bytes-read=4552312/5242880 (86.83%)
+2019-01-31 11:32:29 1548934349.579506 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4556275 total-bytes-write=52 payload-bytes-read=4556246/5242880 (86.90%)
+2019-01-31 11:32:29 1548934349.581274 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4559761 total-bytes-write=52 payload-bytes-read=4559732/5242880 (86.97%)
+2019-01-31 11:32:29 1548934349.614142 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4563745 total-bytes-write=52 payload-bytes-read=4563716/5242880 (87.05%)
+2019-01-31 11:32:29 1548934349.647097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4564741 total-bytes-write=52 payload-bytes-read=4564712/5242880 (87.06%)
+2019-01-31 11:32:29 1548934349.668316 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4568725 total-bytes-write=52 payload-bytes-read=4568696/5242880 (87.14%)
+2019-01-31 11:32:29 1548934349.668404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4571165 total-bytes-write=52 payload-bytes-read=4571136/5242880 (87.19%)
+2019-01-31 11:32:29 1548934349.747459 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4574651 total-bytes-write=52 payload-bytes-read=4574622/5242880 (87.25%)
+2019-01-31 11:32:29 1548934349.753327 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4578635 total-bytes-write=52 payload-bytes-read=4578606/5242880 (87.33%)
+2019-01-31 11:32:29 1548934349.780939 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4582683 total-bytes-write=52 payload-bytes-read=4582654/5242880 (87.41%)
+2019-01-31 11:32:29 1548934349.824421 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4588047 total-bytes-write=52 payload-bytes-read=4588018/5242880 (87.51%)
+2019-01-31 11:32:29 1548934349.868404 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4603485 total-bytes-write=52 payload-bytes-read=4603456/5242880 (87.80%)
+2019-01-31 11:32:29 1548934349.912437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4614391 total-bytes-write=52 payload-bytes-read=4614362/5242880 (88.01%)
+2019-01-31 11:32:29 1548934349.913271 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4618375 total-bytes-write=52 payload-bytes-read=4618346/5242880 (88.09%)
+2019-01-31 11:32:29 1548934349.914834 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4619371 total-bytes-write=52 payload-bytes-read=4619342/5242880 (88.11%)
+2019-01-31 11:32:29 1548934349.970584 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4619869 total-bytes-write=52 payload-bytes-read=4619840/5242880 (88.12%)
+2019-01-31 11:32:29 1548934349.977204 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4623305 total-bytes-write=52 payload-bytes-read=4623276/5242880 (88.18%)
+2019-01-31 11:32:30 1548934350.127221 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4624301 total-bytes-write=52 payload-bytes-read=4624272/5242880 (88.20%)
+2019-01-31 11:32:30 1548934350.176788 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4627787 total-bytes-write=52 payload-bytes-read=4627758/5242880 (88.27%)
+2019-01-31 11:32:30 1548934350.207997 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4631273 total-bytes-write=52 payload-bytes-read=4631244/5242880 (88.33%)
+2019-01-31 11:32:30 1548934350.299305 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4634261 total-bytes-write=52 payload-bytes-read=4634232/5242880 (88.39%)
+2019-01-31 11:32:30 1548934350.339436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4637697 total-bytes-write=52 payload-bytes-read=4637668/5242880 (88.46%)
+2019-01-31 11:32:30 1548934350.465020 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4641183 total-bytes-write=52 payload-bytes-read=4641154/5242880 (88.52%)
+2019-01-31 11:32:30 1548934350.508413 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4653583 total-bytes-write=52 payload-bytes-read=4653554/5242880 (88.76%)
+2019-01-31 11:32:30 1548934350.552987 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4657069 total-bytes-write=52 payload-bytes-read=4657040/5242880 (88.83%)
+2019-01-31 11:32:30 1548934350.572412 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4660555 total-bytes-write=52 payload-bytes-read=4660526/5242880 (88.89%)
+2019-01-31 11:32:30 1548934350.616484 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4700295 total-bytes-write=52 payload-bytes-read=4700266/5242880 (89.65%)
+2019-01-31 11:32:30 1548934350.642555 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4766329 total-bytes-write=52 payload-bytes-read=4766300/5242880 (90.91%)
+2019-01-31 11:32:30 1548934350.643699 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4770263 total-bytes-write=52 payload-bytes-read=4770234/5242880 (90.98%)
+2019-01-31 11:32:30 1548934350.651585 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4774247 total-bytes-write=52 payload-bytes-read=4774218/5242880 (91.06%)
+2019-01-31 11:32:30 1548934350.652536 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4778231 total-bytes-write=52 payload-bytes-read=4778202/5242880 (91.14%)
+2019-01-31 11:32:30 1548934350.696425 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4790631 total-bytes-write=52 payload-bytes-read=4790602/5242880 (91.37%)
+2019-01-31 11:32:30 1548934350.740401 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4794117 total-bytes-write=52 payload-bytes-read=4794088/5242880 (91.44%)
+2019-01-31 11:32:30 1548934350.760988 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4797603 total-bytes-write=52 payload-bytes-read=4797574/5242880 (91.51%)
+2019-01-31 11:32:30 1548934350.804452 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4820411 total-bytes-write=52 payload-bytes-read=4820382/5242880 (91.94%)
+2019-01-31 11:32:30 1548934350.848439 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4843767 total-bytes-write=52 payload-bytes-read=4843738/5242880 (92.39%)
+2019-01-31 11:32:30 1548934350.892411 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4851685 total-bytes-write=52 payload-bytes-read=4851656/5242880 (92.54%)
+2019-01-31 11:32:30 1548934350.928018 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4853179 total-bytes-write=52 payload-bytes-read=4853150/5242880 (92.57%)
+2019-01-31 11:32:30 1548934350.977067 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4856665 total-bytes-write=52 payload-bytes-read=4856636/5242880 (92.63%)
+2019-01-31 11:32:31 1548934351.019865 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4857163 total-bytes-write=52 payload-bytes-read=4857134/5242880 (92.64%)
+2019-01-31 11:32:31 1548934351.046159 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4860649 total-bytes-write=52 payload-bytes-read=4860620/5242880 (92.71%)
+2019-01-31 11:32:31 1548934351.087461 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4861147 total-bytes-write=52 payload-bytes-read=4861118/5242880 (92.72%)
+2019-01-31 11:32:31 1548934351.177294 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4865131 total-bytes-write=52 payload-bytes-read=4865102/5242880 (92.79%)
+2019-01-31 11:32:31 1548934351.216175 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4866077 total-bytes-write=52 payload-bytes-read=4866048/5242880 (92.81%)
+2019-01-31 11:32:31 1548934351.364099 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4869563 total-bytes-write=52 payload-bytes-read=4869534/5242880 (92.88%)
+2019-01-31 11:32:31 1548934351.459974 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4873049 total-bytes-write=52 payload-bytes-read=4873020/5242880 (92.95%)
+2019-01-31 11:32:31 1548934351.500388 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4873547 total-bytes-write=52 payload-bytes-read=4873518/5242880 (92.95%)
+2019-01-31 11:32:31 1548934351.517762 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4877033 total-bytes-write=52 payload-bytes-read=4877004/5242880 (93.02%)
+2019-01-31 11:32:31 1548934351.560396 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4877531 total-bytes-write=52 payload-bytes-read=4877502/5242880 (93.03%)
+2019-01-31 11:32:31 1548934351.572945 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4881017 total-bytes-write=52 payload-bytes-read=4880988/5242880 (93.10%)
+2019-01-31 11:32:31 1548934351.616436 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4896903 total-bytes-write=52 payload-bytes-read=4896874/5242880 (93.40%)
+2019-01-31 11:32:31 1548934351.660387 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4900837 total-bytes-write=52 payload-bytes-read=4900808/5242880 (93.48%)
+2019-01-31 11:32:31 1548934351.696097 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4902331 total-bytes-write=52 payload-bytes-read=4902302/5242880 (93.50%)
+2019-01-31 11:32:31 1548934351.696856 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4905817 total-bytes-write=52 payload-bytes-read=4905788/5242880 (93.57%)
+2019-01-31 11:32:31 1548934351.698431 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4912789 total-bytes-write=52 payload-bytes-read=4912760/5242880 (93.70%)
+2019-01-31 11:32:31 1548934351.698494 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4913287 total-bytes-write=52 payload-bytes-read=4913258/5242880 (93.71%)
+2019-01-31 11:32:31 1548934351.700199 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4917221 total-bytes-write=52 payload-bytes-read=4917192/5242880 (93.79%)
+2019-01-31 11:32:31 1548934351.700287 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4921205 total-bytes-write=52 payload-bytes-read=4921176/5242880 (93.86%)
+2019-01-31 11:32:31 1548934351.700335 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4921703 total-bytes-write=52 payload-bytes-read=4921674/5242880 (93.87%)
+2019-01-31 11:32:31 1548934351.710566 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4925189 total-bytes-write=52 payload-bytes-read=4925160/5242880 (93.94%)
+2019-01-31 11:32:31 1548934351.724002 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4928675 total-bytes-write=52 payload-bytes-read=4928646/5242880 (94.01%)
+2019-01-31 11:32:31 1548934351.764390 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4929671 total-bytes-write=52 payload-bytes-read=4929642/5242880 (94.03%)
+2019-01-31 11:32:31 1548934351.766642 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4931165 total-bytes-write=52 payload-bytes-read=4931136/5242880 (94.05%)
+2019-01-31 11:32:31 1548934351.847681 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4934601 total-bytes-write=52 payload-bytes-read=4934572/5242880 (94.12%)
+2019-01-31 11:32:31 1548934351.853927 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4938585 total-bytes-write=52 payload-bytes-read=4938556/5242880 (94.20%)
+2019-01-31 11:32:31 1548934351.896437 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4965377 total-bytes-write=52 payload-bytes-read=4965348/5242880 (94.71%)
+2019-01-31 11:32:31 1548934351.940446 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=4999141 total-bytes-write=52 payload-bytes-read=4999112/5242880 (95.35%)
+2019-01-31 11:32:31 1548934351.984435 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5027477 total-bytes-write=52 payload-bytes-read=5027448/5242880 (95.89%)
+2019-01-31 11:32:32 1548934352.011736 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5034897 total-bytes-write=52 payload-bytes-read=5034868/5242880 (96.03%)
+2019-01-31 11:32:32 1548934352.014638 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5038881 total-bytes-write=52 payload-bytes-read=5038852/5242880 (96.11%)
+2019-01-31 11:32:32 1548934352.014811 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5044857 total-bytes-write=52 payload-bytes-read=5044828/5242880 (96.22%)
+2019-01-31 11:32:32 1548934352.014871 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5048293 total-bytes-write=52 payload-bytes-read=5048264/5242880 (96.29%)
+2019-01-31 11:32:32 1548934352.080359 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5049289 total-bytes-write=52 payload-bytes-read=5049260/5242880 (96.31%)
+2019-01-31 11:32:32 1548934352.080473 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5054269 total-bytes-write=52 payload-bytes-read=5054240/5242880 (96.40%)
+2019-01-31 11:32:32 1548934352.080560 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5058751 total-bytes-write=52 payload-bytes-read=5058722/5242880 (96.49%)
+2019-01-31 11:32:32 1548934352.080614 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5062237 total-bytes-write=52 payload-bytes-read=5062208/5242880 (96.55%)
+2019-01-31 11:32:32 1548934352.096466 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5064677 total-bytes-write=52 payload-bytes-read=5064648/5242880 (96.60%)
+2019-01-31 11:32:32 1548934352.098772 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5068661 total-bytes-write=52 payload-bytes-read=5068632/5242880 (96.68%)
+2019-01-31 11:32:32 1548934352.101698 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5072147 total-bytes-write=52 payload-bytes-read=5072118/5242880 (96.74%)
+2019-01-31 11:32:32 1548934352.120818 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5074637 total-bytes-write=52 payload-bytes-read=5074608/5242880 (96.79%)
+2019-01-31 11:32:32 1548934352.121106 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5076131 total-bytes-write=52 payload-bytes-read=5076102/5242880 (96.82%)
+2019-01-31 11:32:32 1548934352.124897 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5079567 total-bytes-write=52 payload-bytes-read=5079538/5242880 (96.88%)
+2019-01-31 11:32:32 1548934352.126111 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5083551 total-bytes-write=52 payload-bytes-read=5083522/5242880 (96.96%)
+2019-01-31 11:32:32 1548934352.140123 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5087037 total-bytes-write=52 payload-bytes-read=5087008/5242880 (97.03%)
+2019-01-31 11:32:32 1548934352.150223 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5088531 total-bytes-write=52 payload-bytes-read=5088502/5242880 (97.06%)
+2019-01-31 11:32:32 1548934352.205893 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5092017 total-bytes-write=52 payload-bytes-read=5091988/5242880 (97.12%)
+2019-01-31 11:32:32 1548934352.287526 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5095453 total-bytes-write=52 payload-bytes-read=5095424/5242880 (97.19%)
+2019-01-31 11:32:32 1548934352.408693 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5098939 total-bytes-write=52 payload-bytes-read=5098910/5242880 (97.25%)
+2019-01-31 11:32:32 1548934352.457633 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5102425 total-bytes-write=52 payload-bytes-read=5102396/5242880 (97.32%)
+2019-01-31 11:32:32 1548934352.500419 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5114825 total-bytes-write=52 payload-bytes-read=5114796/5242880 (97.56%)
+2019-01-31 11:32:32 1548934352.544467 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5120303 total-bytes-write=52 payload-bytes-read=5120274/5242880 (97.66%)
+2019-01-31 11:32:32 1548934352.551746 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5124287 total-bytes-write=52 payload-bytes-read=5124258/5242880 (97.74%)
+2019-01-31 11:32:32 1548934352.554954 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5127773 total-bytes-write=52 payload-bytes-read=5127744/5242880 (97.80%)
+2019-01-31 11:32:32 1548934352.562407 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5128221 total-bytes-write=52 payload-bytes-read=5128192/5242880 (97.81%)
+2019-01-31 11:32:32 1548934352.567234 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5135193 total-bytes-write=52 payload-bytes-read=5135164/5242880 (97.95%)
+2019-01-31 11:32:32 1548934352.567324 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5139177 total-bytes-write=52 payload-bytes-read=5139148/5242880 (98.02%)
+2019-01-31 11:32:32 1548934352.567391 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5143161 total-bytes-write=52 payload-bytes-read=5143132/5242880 (98.10%)
+2019-01-31 11:32:32 1548934352.608434 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5158549 total-bytes-write=52 payload-bytes-read=5158520/5242880 (98.39%)
+2019-01-31 11:32:32 1548934352.652424 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5173937 total-bytes-write=52 payload-bytes-read=5173908/5242880 (98.68%)
+2019-01-31 11:32:32 1548934352.696402 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5174933 total-bytes-write=52 payload-bytes-read=5174904/5242880 (98.70%)
+2019-01-31 11:32:32 1548934352.724462 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5177871 total-bytes-write=52 payload-bytes-read=5177842/5242880 (98.76%)
+2019-01-31 11:32:32 1548934352.763517 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5180859 total-bytes-write=52 payload-bytes-read=5180830/5242880 (98.82%)
+2019-01-31 11:32:32 1548934352.765367 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5184345 total-bytes-write=52 payload-bytes-read=5184316/5242880 (98.88%)
+2019-01-31 11:32:32 1548934352.770873 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5192313 total-bytes-write=52 payload-bytes-read=5192284/5242880 (99.03%)
+2019-01-31 11:32:32 1548934352.776004 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5195749 total-bytes-write=52 payload-bytes-read=5195720/5242880 (99.10%)
+2019-01-31 11:32:32 1548934352.778242 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5196745 total-bytes-write=52 payload-bytes-read=5196716/5242880 (99.12%)
+2019-01-31 11:32:32 1548934352.779523 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5200231 total-bytes-write=52 payload-bytes-read=5200202/5242880 (99.19%)
+2019-01-31 11:32:32 1548934352.787464 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5204215 total-bytes-write=52 payload-bytes-read=5204186/5242880 (99.26%)
+2019-01-31 11:32:32 1548934352.804174 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5208697 total-bytes-write=52 payload-bytes-read=5208668/5242880 (99.35%)
+2019-01-31 11:32:32 1548934352.814650 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5212133 total-bytes-write=52 payload-bytes-read=5212104/5242880 (99.41%)
+2019-01-31 11:32:32 1548934352.823206 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5215619 total-bytes-write=52 payload-bytes-read=5215590/5242880 (99.48%)
+2019-01-31 11:32:32 1548934352.823853 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5216615 total-bytes-write=52 payload-bytes-read=5216586/5242880 (99.50%)
+2019-01-31 11:32:32 1548934352.847141 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5220599 total-bytes-write=52 payload-bytes-read=5220570/5242880 (99.57%)
+2019-01-31 11:32:32 1548934352.870177 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5224085 total-bytes-write=52 payload-bytes-read=5224056/5242880 (99.64%)
+2019-01-31 11:32:32 1548934352.876184 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5227521 total-bytes-write=52 payload-bytes-read=5227492/5242880 (99.71%)
+2019-01-31 11:32:32 1548934352.888083 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5231007 total-bytes-write=52 payload-bytes-read=5230978/5242880 (99.77%)
+2019-01-31 11:32:32 1548934352.917326 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5232501 total-bytes-write=52 payload-bytes-read=5232472/5242880 (99.80%)
+2019-01-31 11:32:32 1548934352.918273 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5236485 total-bytes-write=52 payload-bytes-read=5236456/5242880 (99.88%)
+2019-01-31 11:32:33 1548934353.042147 [info] [shd-tgen-transfer.c:1534] [_tgentransfer_log] [transfer-status] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE total-bytes-read=5239971 total-bytes-write=52 payload-bytes-read=5239942/5242880 (99.94%)
+2019-01-31 11:32:33 1548934353.210767 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=PAYLOAD,error=NONE moving from state PAYLOAD to state CHECKSUM
+2019-01-31 11:32:33 1548934353.210892 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=CHECKSUM,error=NONE moving from state CHECKSUM to state SUCCESS
+2019-01-31 11:32:33 1548934353.210943 [message] [shd-tgen-transfer.c:782] [_tgentransfer_readChecksum] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=SUCCESS,error=NONE MD5 checksums passed: computed=bd06bf4198f911accd1005ad8fd5556a received=bd06bf4198f911accd1005ad8fd5556a
+2019-01-31 11:32:33 1548934353.211002 [message] [shd-tgen-transfer.c:1519] [_tgentransfer_log] [transfer-complete] transport TCP,14,localhost:127.0.0.1:36448,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=SUCCESS,error=NONE transfer transfer5m,7,phlox,GET,5242880,phlox,7,state=SUCCESS,error=NONE total-bytes-read=5242946 total-bytes-write=52 payload-bytes-read=5242880/5242880 (100.00%) usecs-to-socket-create=11 usecs-to-socket-connect=185 usecs-to-proxy-init=247 usecs-to-proxy-choice=454 usecs-to-proxy-request=566 usecs-to-proxy-response=-1 usecs-to-command=13852315 usecs-to-response=14454470 usecs-to-first-byte=14593205 usecs-to-last-byte=42065552 usecs-to-checksum=42065650
+2019-01-31 11:32:33 1548934353.211128 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:32:33 1548934353.211188 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 14
+2019-01-31 11:32:33 1548934353.211256 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:32:33 1548934353.211336 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:32:33 1548934353.211525 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:32:33 1548934353.211612 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-01-31 11:32:33 1548934353.995663 [warning] [shd-tgen-transport.c:1001] [_tgentransport_receiveSocksResponseA] connection from localhost:127.0.0.1:36468 through socks proxy localhost:127.0.0.1:29280 to 4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080 failed: unsupported status 0x5
+2019-01-31 11:32:33 1548934353.995880 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=RESPONSEA,error=NONE moving from state RESPONSEA to state ERROR
+2019-01-31 11:32:33 1548934353.996029 [info] [shd-tgen-transport.c:211] [_tgentransport_changeError] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=ERROR,error=NONE moving from error NONE to error STATUS
+2019-01-31 11:32:33 1548934353.996158 [critical] [shd-tgen-transfer.c:1546] [_tgentransfer_runTransportEventLoop] proxy connection failed, transfer cannot begin
+2019-01-31 11:32:33 1548934353.996331 [info] [shd-tgen-transfer.c:363] [_tgentransfer_changeState] transfer transfer5m,8,phlox,GET,5242880,(null),0,state=COMMAND,error=NONE moving from state COMMAND to state ERROR
+2019-01-31 11:32:33 1548934353.996483 [info] [shd-tgen-transfer.c:371] [_tgentransfer_changeError] transfer transfer5m,8,phlox,GET,5242880,(null),0,state=ERROR,error=NONE moving from error NONE to error PROXY
+2019-01-31 11:32:33 1548934353.996667 [message] [shd-tgen-transfer.c:1504] [_tgentransfer_log] [transfer-error] transport TCP,12,localhost:127.0.0.1:36468,localhost:127.0.0.1:29280,4ja3p2v3lh5mvmcy.onion:0.0.0.0:8080,state=ERROR,error=STATUS transfer transfer5m,8,phlox,GET,5242880,(null),0,state=ERROR,error=PROXY total-bytes-read=0 total-bytes-write=0 payload-bytes-read=0/5242880 (0.00%) usecs-to-socket-create=12 usecs-to-socket-connect=190 usecs-to-proxy-init=272 usecs-to-proxy-choice=456 usecs-to-proxy-request=532 usecs-to-proxy-response=-1 usecs-to-command=-1 usecs-to-response=-1 usecs-to-first-byte=-1 usecs-to-last-byte=-1 usecs-to-checksum=-1
+2019-01-31 11:32:33 1548934353.997041 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:29280
+2019-01-31 11:32:33 1548934353.997226 [info] [shd-tgen-transport.c:321] [_tgentransport_free] closing transport socket for fd 12
+2019-01-31 11:32:33 1548934353.997452 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36474,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-01-31 11:32:33 1548934353.997638 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36474,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-01-31 11:32:33 1548934353.997798 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36474,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-01-31 11:32:33 1548934353.997966 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:36474,localhost:127.0.0.1:29280,5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
+2019-02-11 14:58:38 1549893518.928599 [message] [shd-tgen-main.c:82] [_tgenmain_run] Initializing traffic generator on host phlox process id 4450
+2019-02-11 14:58:38 1549893518.929068 [message] [shd-tgen-graph.c:757] [tgengraph_new] successfully loaded graphml file '/home/ana/onionperf-data/tgen-client/tgen.graphml.xml' and validated actions: graph is weakly connected with 1 cluster, 2 vertices, and 2 edges
+2019-02-11 14:58:38 1549893518.929145 [info] [shd-tgen-driver.c:737] [_tgendriver_setHeartbeatTimerHelper] set heartbeat timer using descriptor 5
+2019-02-11 14:58:38 1549893518.929211 [message] [shd-tgen-server.c:136] [tgenserver_new] server listening at 0.0.0.0:11134
+2019-02-11 14:58:38 1549893518.929247 [info] [shd-tgen-driver.c:679] [_tgendriver_startServerHelper] started server using descriptor 9
+2019-02-11 14:58:38 1549893518.929285 [info] [shd-tgen-driver.c:707] [_tgendriver_setStartClientTimerHelper] set startClient timer using descriptor 12
+2019-02-11 14:58:38 1549893518.929321 [message] [shd-tgen-main.c:153] [_tgenmain_run] entering main loop to watch descriptors
+2019-02-11 14:58:38 1549893518.929367 [message] [shd-tgen-driver.c:797] [_tgendriver_onStartClientTimerExpired] starting client using action graph '/home/ana/onionperf-data/tgen-client/tgen.graphml.xml'
+2019-02-11 14:58:38 1549893518.929486 [info] [shd-tgen-transport.c:234] [_tgentransport_newHelper] Initiated transport to socks proxy at localhost:127.0.0.1:11482
+2019-02-11 14:58:38 1549893518.929555 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:41710,localhost:127.0.0.1:11482,bufz6kle3gbbcqmft7yiuyqxp4mpd5xj5o3xxa2w2ugglttabnuwsqad.onion:0.0.0.0:8080,state=CONNECT,error=NONE moving from state CONNECT to state INIT
+2019-02-11 14:58:38 1549893518.929619 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:41710,localhost:127.0.0.1:11482,bufz6kle3gbbcqmft7yiuyqxp4mpd5xj5o3xxa2w2ugglttabnuwsqad.onion:0.0.0.0:8080,state=INIT,error=NONE moving from state INIT to state CHOICE
+2019-02-11 14:58:38 1549893518.929811 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:41710,localhost:127.0.0.1:11482,bufz6kle3gbbcqmft7yiuyqxp4mpd5xj5o3xxa2w2ugglttabnuwsqad.onion:0.0.0.0:8080,state=CHOICE,error=NONE moving from state CHOICE to state REQUEST
+2019-02-11 14:58:38 1549893518.929866 [info] [shd-tgen-transport.c:203] [_tgentransport_changeState] transport TCP,14,localhost:127.0.0.1:41710,localhost:127.0.0.1:11482,bufz6kle3gbbcqmft7yiuyqxp4mpd5xj5o3xxa2w2ugglttabnuwsqad.onion:0.0.0.0:8080,state=REQUEST,error=NONE moving from state REQUEST to state RESPONSEA
diff --git a/onionperf/tests/data/logs/onionperf20190101.torctl.log b/onionperf/tests/data/logs/onionperf20190101.torctl.log
new file mode 100644
index 0000000..07bc5dd
--- /dev/null
+++ b/onionperf/tests/data/logs/onionperf20190101.torctl.log
@@ -0,0 +1,976 @@
+2019-01-31 11:29:51 1548934191.14 Starting torctl program on host phlox using Tor version 0.3.5.7 status=recommended
+2019-01-31 11:29:51 1548934191.14 NOTICE BOOTSTRAP PROGRESS=100 TAG=done SUMMARY="Done"
+2019-01-31 11:29:51 1548934191.21 650 HS_DESC REQUESTED 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad NO_AUTH $157106182B9F33663CAEDCD883D302316331DE5E~Vor djVSuq3o5lJnQ5dWb8tBXbnsUZuIyX61S80VsJBi+ao HSDIR_INDEX=E9C2E95F8B783040AE0EDC224CD7D6F39B991AE78FAB8DDE6B9886694CBD419A
+2019-01-31 11:29:51 1548934191.21 650 CIRC 23 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.23 [WARNING] event TB_EMPTY is recognized by stem but not by tor
+2019-01-31 11:29:51 1548934191.28 650 ORCONN $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe CONNECTED ID=67
+2019-01-31 11:29:51 1548934191.29 650 CIRC 23 EXTENDED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.31 650 CIRC 22 EXTENDED $CE946DFEC40A1BFC3665A4727F54354F57297497~Forseti BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:50.803126
+2019-01-31 11:29:51 1548934191.36 650 CIRC 23 EXTENDED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.48 650 CIRC 22 EXTENDED $CE946DFEC40A1BFC3665A4727F54354F57297497~Forseti,$2ABDCC5A2656CDE1DF601092BCA60C7449F7D956~manningisfree BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:50.803126
+2019-01-31 11:29:51 1548934191.51 650 STREAM 16 CLOSED 5 66.206.4.26.$BBD8F4DF8FF5C69A6A989DB8C1EE2CA7ADFE0755.exit:9001 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:29:51 1548934191.51 650 CIRC 23 EXTENDED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.66 650 CIRC 22 EXTENDED $CE946DFEC40A1BFC3665A4727F54354F57297497~Forseti,$2ABDCC5A2656CDE1DF601092BCA60C7449F7D956~manningisfree,$2806D9396FEEF3A2D055B341F9D0D7465104639C~NuernbergTor01 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:50.803126
+2019-01-31 11:29:51 1548934191.66 650 CIRC 22 BUILT $CE946DFEC40A1BFC3665A4727F54354F57297497~Forseti,$2ABDCC5A2656CDE1DF601092BCA60C7449F7D956~manningisfree,$2806D9396FEEF3A2D055B341F9D0D7465104639C~NuernbergTor01 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:50.803126
+2019-01-31 11:29:51 1548934191.80 650 CIRC 23 EXTENDED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed,$157106182B9F33663CAEDCD883D302316331DE5E~Vor BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.80 650 CIRC 23 BUILT $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed,$157106182B9F33663CAEDCD883D302316331DE5E~Vor BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893
+2019-01-31 11:29:51 1548934191.81 650 STREAM 66 SENTCONNECT 23 77.73.64.51.$157106182B9F33663CAEDCD883D302316331DE5E.exit:443
+2019-01-31 11:29:51 1548934191.82 650 BW 29208 5859
+2019-01-31 11:29:51 1548934191.82 650 CIRC_BW ID=5 READ=21887 WRITTEN=509 TIME=2019-01-31T11:29:51.800858 DELIVERED_READ=20642 OVERHEAD_READ=772 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=498
+2019-01-31 11:29:51 1548934191.82 650 CIRC_BW ID=22 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:29:51.800878 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:29:51 1548934191.82 650 CIRC_BW ID=23 READ=1527 WRITTEN=2545 TIME=2019-01-31T11:29:51.800888 DELIVERED_READ=198 OVERHEAD_READ=1296 DELIVERED_WRITTEN=450 OVERHEAD_WRITTEN=2040
+2019-01-31 11:29:51 1548934191.82 650 CIRC 24 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:51 1548934191.82 650 ORCONN $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta LAUNCHED ID=68
+2019-01-31 11:29:51 1548934191.98 650 ORCONN $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta CONNECTED ID=68
+2019-01-31 11:29:52 1548934192.05 650 CIRC 24 EXTENDED $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:52 1548934192.14 650 STREAM 66 SUCCEEDED 23 77.73.64.51.$157106182B9F33663CAEDCD883D302316331DE5E.exit:443
+2019-01-31 11:29:52 1548934192.16 650 CIRC 24 EXTENDED $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta,$AD970E9521E643922AF3811DA9138183795DD76F~humboldt BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:52 1548934192.29 650 CIRC 24 EXTENDED $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta,$AD970E9521E643922AF3811DA9138183795DD76F~humboldt,$2F77315CAE477550E47773BA5B1323F7FFBE3A3E~0x64657573 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:52 1548934192.29 650 CIRC 24 BUILT $BF50E09EED25B82861CF95E1AAA42DCFEF53E5D1~LupusreginaBeta,$AD970E9521E643922AF3811DA9138183795DD76F~humboldt,$2F77315CAE477550E47773BA5B1323F7FFBE3A3E~0x64657573 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:51.801008
+2019-01-31 11:29:52 1548934192.30 650 STREAM 66 CLOSED 23 77.73.64.51.$157106182B9F33663CAEDCD883D302316331DE5E.exit:443 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:29:52 1548934192.33 650 HS_DESC RECEIVED 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad NO_AUTH $157106182B9F33663CAEDCD883D302316331DE5E~Vor djVSuq3o5lJnQ5dWb8tBXbnsUZuIyX61S80VsJBi+ao
+2019-01-31 11:29:52 1548934192.33 650+HS_DESC_CONTENT 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad djVSuq3o5lJnQ5dWb8tBXbnsUZuIyX61S80VsJBi+ao $157106182B9F33663CAEDCD883D302316331DE5E~Vor
+hs-descriptor 3
+descriptor-lifetime 180
+descriptor-signing-key-cert
+-----BEGIN ED25519 CERT-----
+AQgABpDqAYemDLtRNUMrLx3KtNB3ScPRDt95aA8iSRA5Rd3zOMAZAQAgBAB2NVK6
+rejmUmdDl1Zvy0FduexRm4jJfrVLzRWwkGL5qi9LOIW2J+BCG19FGhsPlT4nod0h
+9Or5diqeVtX1Dj16fHoMZ6qcxXh/UbzgpQtvsgywltoyDWQ8xjw+GNk2Tgk=
+-----END ED25519 CERT-----
+revision-counter 4193513130
+superencrypted
+-----BEGIN MESSAGE-----
+vx2EDLu4iO5KnGAqrrkYVxzC/TCgzPS1xuNyjkQ+PllYdqiBfciKTd4XfLmAtG4k
+5FShtKdRTQBpnekjD/kJlg/kUzTjVODb0fxh0v3cnpAcZ8fWK+6GcXjI4sxtKZ0C
+EJuoh/VlrcHAtiAoqOujOsLlRQtugj25B16XFZwQufkbbOxof1F1SYWiFeG4i464
+c5rBF/T3SexMhxxbwInwj2yjhRLYb9I+VcdhtxqfqyESsbKY2Th91nb5VZEPI1Zu
+aiREGLoDSTuXvaZS+C/ihQjeEYtOrLpB4Kae86EVfai5J1MOUx2d6Sfl/y+6CW38
+VIOzPF3aK/8pS15lYeKj4wW1iCJaHG87lZtfQ1oeORIISsKm2U8UronT5eh6P1jf
+zS+cd1Xwnfjn/lNcSV10NLpzqgDUK0eMMC7PxCkATuPwBKGuP4m0gU8huhlZAscr
+z+QUXN9gCprWugIUG8NRTydr1dzf88JawTH3IWsqRIcQSxzScIJBZHfKY0fR44sv
+mdL1ur4XqsnABgf6mz7HQq0mWsgUERGTTE/jevihN+2ICskwu2WHuoexAtqOiy/2
+dxC4kyz1SW5LDSbwmNkdONo193CpGIfArAdQUIo6d62yzKb6Tx7YVt6e6v810H0X
+9Xjg8tj62annXKt9jCCRdnXdRNpDeSGZagNiav0z5Y/k6xERomYuMZMoqI5sgwTz
+oSbXWb1/iqpcDJX8/ivXTHyaYw1vDkWdKS1I8fp+FeAk9QeN2ezUIbW9kClHKtRT
+ZEFQBl6C9BeTbh5eMsoOjjxVO9IVVdjO66nNOb4ErTFozZowChb+lYv7zzXilTjU
+mv7CjUy49m+iKzDXZSEMTdM1U347nWRR148iuv3v0/xnL7wz9PTLFvtnmaDT4JS7
+Au0jMdRqgBoshpum7LERZ2y90tkvCTjc53c/whPD8Q+K3gybaJty3dy6NAz0FVbB
+BjAHVknVSMokBcHk2DT0P0nVlKN26vIpvhvJuwcGrdqK7u9h4ok/mgfSthq2HFxj
+8HKseHJsrGAjovNck1JL219W52cYbo+ATF4OpkBLIstgEdozovQT5zsLb72Ajb7c
+xQ+H+T4gHNGKGCnkBIWvcLFh+PkKO0GlPC0dI163XD83bXRsewvE9sA+q5dCw1Tw
+knX197Z/ON1137ScdTVZjAPdviLNoyPaMGP0oca7eKU+BFmcrY4H2u7aq+AXDMWh
+xKNi9McCeOSam8BaqpqjajVmOk/yN/kwip/P+HgyGGo9LWofvACDZa5vTanLBzYr
+Kzw7kSUeJiL79Y8jtJZ48PHSNp9TOyxYjqBiiZOyAcMDfrv2VViT/ZRWfgf+fZsN
+yCFy4n5xSAKh6ZOejWs0W/GJcu8soHyhJS2D4WDjTvn/bnMRn4fb70Cv+PBbRSHI
+QeOeriAEB2cN/9ppzl2Jd8pQmL3ztLo0fO/UD+MoMd4Lm1rnwsBo3ej+zpfWnpMR
+Yzr+5ypwAVDoVMPw7uzJsy0xh3z0JmIlyO4EKObh0VfSqwwNBBPS4T+kP0kyLuxZ
+lGTs94CWobdbqlcp1n8+4XMtwk5YM3f+9UdvpS+dm5ow9h5IlkKFaHNqfAY/ktKz
+/HfENf3TQb7xv15dpaDCYWWa1Uj0r1lCE+xZDs2DhVdNgCWhPF3iXLEz0lizxWJt
+jVgfAuoyVSk9OO8hz65jNTWYQQak7zpOK5aTU1iFT6kXB4JXWeYC4/zKLptqqbvz
+MfYCFSyYfsuvwR/bXcVmiyjA9ogE2PkA9owaxhV/TDQsbB3zwQVRgN5fMrssVgyC
+CGYdQgqB1Ase9hbQiL0Ad6qWwFTJK4Zbv+Xd/mHj5kZcve670EI3K+agSg5098PZ
+s2dgL4aqCS68UzNC0YGf3vB9M+N0J+Mw4kERgYYAfr6bvCOw+Me4IcBJ5O0+/3QM
+UZKZLOgPXISXhjRVA7bCD+26MMmQgtoHlJF1qhKotoATbJK6zw1o7/xDtQS78VpX
+Iu08DK8pwf2SNGU6MkeoJirgYWMyFX3louM57o0K9bspzmwG8N/NlRGzU3Qpy7aJ
+EDESZpbx6G5eBA3Ts47R7HCMiDbRi94JXLCIigvakfaDrcCMWZMg9EMRv8jc5e1n
+pH/r5uoJP3OepSxJlmxwojYLKcZuKWMy3IZ01no4A6QSw1nn+xRm0slmfLeDdOZ8
+hmk0sIIFWgybgDw/+8+aviadJJnzEEgNezukLu1ajrxKTwg/D/w809e/ODCKTR9j
+juFL7C30xnA81Xmow220b8/MV3ylM/Lbhlrrl3FNkyidIyp9RoA3G0f2Th27nAlM
+RRmy1ojouQ8YEfk15tsH1SyVbjeqBYrrACQ+yp3MPqTaA3nhcWKPMHLSXl1qCyjG
+ux9KKUZQzYsl7Cw+TjAXOrqtpoHVoqlF9aLkdAC829lmA/ebGkrExolLnXJn98r9
+CCk07OyFSaxg5s/pr21dxk1xfnISYfRu0tswZknmtdflvAv3DeEhX3J8vc1RnpB3
+LZ9VUuCBRdBbPFF9IZC9kOxN7TMGYNFMRDpbpGtu2vPy0J5UG+NY6VAY9QFUI5o4
+/d1FDZ7snPfEXkkHV1Y3s+kLxfhXnQrJErpe0cNRfbtQNSFYf9q2PBl/e6hZOG05
+v58BgT/h+7KS9jJrfy2Hn9vGr6u6lMltxDKr445YZQCHRrM5PXiaNy4cnNHsCwrx
+/qO0Uc79wMuaPSOOf9eT+aQN5REcE587JXB5U4TdoXvSE2jbDlYR4Ct1x9qtM80O
+GBSonX5r7RNLnJD6joOxMd7YoFLa3MSfJcOLCzNBI2ev4JuEbdAtkN78nGsCBxGy
+1dyzcMHEdm9wix++VFEZ0Uq11J7cRoNUhEhwJHrwtwxQLqGgcE1fg8id//2FEMCN
+paN2dPS4U4FkMSvdPhM2zSiEr3y2cRsRDJFly4zNbPR/0+aFFkobSHnrKklMCa63
+edCcNjAPVo7SQrOLk6mRy5oqoUF8WCSLEgpt9dj0vYu8we+FugRCU2hE7MSEc6tm
+GLvbGVkjFTDDqoIOqhx4y76YlFuQUezPsNGCexLUfkoMJueCbSQN8XPoUCkrZfQc
+7i0EEMoBe96oom+gF9g7RvEX6JM2/eEi/555/OMpT9psh5HbvU/qhRcXbCC9gmmv
+1WP9cmOrFvsyJlFtsUmidBVUOvn22xB2jWcEuU5MBoZlM2D/GfGuOb1tSlCspurl
+0+FilntQR0Hd5wb58e9KdI4Y7IL2wnd1qpJh5asrOWAZEyC8qO1S0TG9FuTxgPLC
+pMDjMnuGmdqA2RCYobsdUpUSd3V+0S23ACEfSEz7P28NEoBELiWTZwSrwI8XxC37
+jRkBpPTIdLMRKJbm//W8FrHX4cl7Dx9PoF1/oQ+MgaqOkbG7g3THWfTgJif94ipd
+HxPqIWHj3YQy/jN8BW9giUYrIcTN951mkmBuiGFjsXDPjF3Vd4Uu/F3zvavzqp8a
+PEBdPYn7v52wiki5GcZKz9i078qLEfKAbS04mcr6IRO5D5cXw5VL8HXWVCuec07Z
+M0NdsqDIulGZwmNuiZWgzu6LTqtFItYrS+YA6ZuWusmkvAaLMQ30687mof+qRZ5g
+G+rc4U8B8AYbAj+6kQZQRWGC4A8p2SnVJ9gUdAzICmH6n4BabZxqnXq60Z3E2syP
+WGOGMGMRWyd7nDc9U29Pi6ejdpvBoQCVAy16NetZXdsRO6y42Z++bmKTsWULYEbT
+jB2GHKAm4sWC/mEDdqe/pknklD11nRuAc1fnicWe+gdMrYNxqNLPyqvaxsx8Etlv
+iTZQUI0wYt5KJIKsQMGLa6NYu2mELezlfE5HVVrO+3V+zodUAgc7lKjRkbi0L5eb
+vm++cqAjwe9kLussAOVD9fn4XSlELCXC3ot8CWTv6n5xpSMlcpQ9cbTWW9gQzHtO
+ijDsOsnNLhlV565Xsp1rITSZS8Ajm/booP7JRGSq2IFpuL4r+hwbkdpKjzMSJ7LN
+WtrrZLqNLSHw3i9YT016E9Nf5BFXYWUvguuusXP6CjnnkoYKMYfExASIWc0NWV9l
+oGkOy96zGn9hZah6TUqxvXhiLpB6mVvdsqXTjx2iiiMHm/Lb/2SvHCmhtp3k0JEu
+FMdRkkwazPBkKR2pVBAC6rdI8uMakHUA4diWSv47I5lSWq+hKd9P9EUZOEDhlIbm
+ejsBZexzF6Nfn34ah0FitySLD7Xl2+GrYkD4aWtOVMsN0M8WF7sjM63exxBoghjm
+dlHlWwjXTbknQdz8nYpvT81OisRtPmk4rfUxi9VgBFC5+ovTLbZJYj6KWWsw3hrK
+t58f5lrtD+i7Gd9ElgR7EQaxvONAJiwkboaQ4Q5FyIltssIdbLrZvOX16cQnUoel
+GJpv8Iu564wFH9rkQUQx1tRYkivzjXGZcocxhrS0TvoPgUnSgtvw5j8TlouBx6A2
+GghuCAo6NR+tMvT4Y1F+C/24JIMlcVowRXBEOku+Goa8qZDXPxPkhK+vjmRXGbgQ
+mgoaP4vzpyCkI3cn25r8Gii1SMsGTHmNSQKiDpng2sHPY5ZU9RJ2jlcNpowMHU8r
+Fbt/xLPW8MyJFgdhRAOX5yc0F78kgJV4k9Q3+G2LMZpWTtXK/U1BPqoqE7CwC4qS
+prOucZ6nER4q6JspgnVXhyrD7zdwFB+ckYFjfOftrAoWkdNQIxxjX1rCqgRYfFUm
+mWnIcAUdNRxFP67SflhkMbeqz5fGF1cPffyU1Wl9TQW9neaq3hB22fcVttu5Dh5r
++PdGzIyyESAyEQouKt48C1PZnalo9YFbDIm15Hv+hC8s8QL2RxLPnZag3zW4Shzc
+aRMe/zj4V2JAXHGmHtCbT8SXonzBW4hW2GIxF0zAhII4K5eJmXxR+Drf/lrgHufR
+wqHrq6c6az90X7lRN6IGsjOOlFb8+ZeG8rDAcxud9HDcYbrxqozK4vDAKMqmbKzC
++9H8n8YSVHn8kPVqReJkRLa3laHo1HCVX4KhgFYch90lOZtUfsyCcI6nYgCTdcjb
+jfjZwESaQU0ILXfgWkrRG+rJfVSnSWFq6ePZpOTK56dd5gBESGNjIZDod9A43dFn
+rsTbfS/7fRLNCks89YBKmB2w5bweLHtQZr7HfsUj3AweDF8Odzz8wpAeqq8CIuqo
+APEwAF8M9NV3sZskiRrPpaBbYu9fn0VJMv2k72sxTtt+BZBMyMJPnieCc9lKp9aw
+VbM82VLh9TTSs9fxZFxwlc+a82VYVmXzxVP+brpcRUKJw7GLAjVi/G/vmFGbXV0B
+FygkdR6J+hnQGrGWi4zHiSeSD/YNcNTSXGb7mH9ALOr+fNYn2L4hHqe9RflpsI3V
+iid0yRl94fowKtaKLVLX/EenLNmMgtY1SbFbluQfP7+PUwYzwLHXwudJQl5aKEGs
+4Oyk543EAKV/y+gS8vqu8+AZarxB+7sn+t4p2X6PKSoHx0NzilyRcpTaB3tq4Sae
+OHEYv/ejMUdXSYHB6iYcGM1xrUX8MDkeVpqjNzwuDo5T/zHnamsjiypxr09auqRI
+vvPXiggE06Cxx+hbGlHPICPi7UVEYLNH/ioIRv45LifsRGc9CAdPc5JDmT2JTKEa
+rPRCZVETkyHX4e2ujtKuProjmSVO+JJlnbWnQlWiorGKNXpc7+oZrNp4qQGDdeKM
+2bWv0gAcVJImZ7imTHs7hCWAN572KJ7DqFUQgtLipib+OUJ38BgNwCmIkMJXQX7u
+wIVjdvF+vRvQYsgatG5c25l+d2Qlgb1PoESVpzuHCLy66nc0MtC1vmxZKSnDfN3X
+iRMKXwYWf0H0KnWkTPKHWzm0T1G1cSFRAgd0nU6qe337q7jrf54sRgka+F93juXQ
+9ZnKGmJyaJXTD1doNdISl2jC+nEh1upf1wprdxihdGbkEzPvpHoNaGBTaAIKK3ZE
+S/f9zU6LVlXP9qU0MYDd5+p5gdgd0OvlZdFipLKifjv6Rgv4F872nSq1tyJd8KQq
+1JHqUYOyyZhsmmckhEKubjCjtzf+pvqU+FDe3yOzi07AmjG7iQ0icQ7aWMuTHXBK
+ycjiTrynmOF10W599qTR/YKpm5UbfuYCEDV6gq/dRj5NRp50EjhiLLkHPE6F+xD2
+hgFDWKMYqmuhqF6DwBYXONHPx4+LE0UuU+rDxLRTJ4H4r9CykdmDq8mSyn3Xgj2W
+9U3zxJa0/+e0tU0VmzbzQBbfa+nG51t7j+hFue3elzwzCRsocli7yfCAxQrJOS7h
+uJv+TFGrjTUmghmln1jXgK5hMjZM38JS70aQeAPAJALMJgyQd2bFgBwSei0IR3cR
+P/Z0oarUMzhOEzUHwnxHT/6rBCkgW2cSzPqRJmwi6K5GhUaGXKzDFjpoRyup+hp1
+lE6gWlb0s2I9vAs3wEEJ23gLzl9FclcITqcGMMP/rSs8MJ/PrfwSQ8ZZLumFrME6
+r2N0NvtkSOfODGf0peV28SKdngc+s0FmRADBIrr+7D5ywe+gl2NSMCBFmKEyqRVw
+XNpZbxLX0dhiWRgst46e0Gk6W0wbPzF2w8RrsD/r2Sw2ZcPGThDykqUNxYA9C5S1
+Ijc6qSpNhPHcsKeXe5Vg1wSdYnqtBc+/pwJoMMwvdgQymo+gHe3Vi3Om5lnTVUKW
+fpRs80ADJFePX7IBf3wqas/Rct9liNy+ZiDUBHSOrAVW8eJK0o1ymQtqp6XgCqu/
+T7kLbY8plGKJbUfima3jm6pAGn87ByAoiTn0ivWFXtP0dz5FWh9N9cpK/UhhjoAe
+kvLhEbEFiMR8Ee5J/vO7ybbqA8cFvYhgnqKd9+y894dLdCx8hXCMKfblTkI1AV9x
+t7mJigPXoE89jMCgoTfWf+/Eq7eObR+tyzWQDPmP2FIf/+DxpA2Wy2mIcjvw9JG5
+BF+zdqnaShp8f7gOQy2g0Mn22NsbC175sb4fxe1/bNGSuvzWdks17Z8GcfgwrW8M
+YBc6cn3VPXKSVptybcnbvU95xOWFX/adi/j126XgQWD3KgNfxDsxlPbI6zbeV0Uu
+Fme2+Dinkkg11AWJOuWVnJQVF3fnxJHzKHVU9T35LYUmocq5JYiDuLjMBOGxDScb
+i2vd1x4uBMDAU5wpnPDEtWh09sYr//h9ma77Gw+ebGOrkRLGYkU1KwTjTtYOqrQi
+qbKDQtQayeCs4yyDZMuifSJhaH6DwvpsrOVUl9srpuThS8UTer89fz0VXYzJCLWT
+nlXBLUm4sjn23T3kLBaTuCTAhakyxjEMMkTXghgiP4sGxx/4ZovHkbFue3MuX2WT
+l3nNYao1ihxZvk7vCCokX9HYmtGZeAlQwBMch39CuyDxphqz9rKj6yLgtalnuxct
+2VfIEPR0gc8rrt7z/eIfwpNc+qiV4BPfBJw1T3QAbd4dsTm1IBPnGRsbU8blyzQG
+WeR8hUXDw5A7tvddBpXBafNz7Z9EB6Ka/n1nkgbo0noakuy6WRMgEuQqpFgjEYGT
+vtEe4gPgzhI4Sc4s6gDVdeBM7RqOGmBCd1oG1Le1ByECJh0Iq1Gafia54e2VjVRR
+zT1ovGBlTKsJC0ZG5689d39q6HcSVt37mSg7oq1xPvuRQcYDl0T+uPHgrRQ7/uYg
+rSqXLJh5MGWYetQK9o8n7/6IQIgJhY1ZA2dxZsUtYx6qu+yBFdfHb3SjjjNGbPTP
+6SkbJhee4CuyRaxR3OY+7yStQXbmzwgBi4DgJyDQAVj5jGF0dxj6qggS7DUyO1po
+ZPaNoqDHMQctXj/OkLP3Aon8hYZQLchB1jvvOjAGGtbCh0veXqXn2Uf2Qh25LZl/
+XTVphjiH2eTn8kAuxNeOxNjTKRTPxeDO3hSPmT36htHaAOJzkaj9GTYBOCobqwUc
+5Xt+so6f39Y2jBSEzbp7AL0xUj3PQcdGs7triqsVbKw60gMDeOEK4rOLlgmZGqf1
+LcpgpJv2Rd5w+lBqgjageZmNH6IwO82CJPtHUFveyTWyF3xl3gTZY5jO8UV1XAA8
+GpWdGLl0CRnIVAPW9//PQOAdKj5zdhCOR8FVXpnASKzqWWqqzzEf3QLa6vaE9rAg
+/lcvcMwbc6FQUMCjgB7Eue7mlcpeInGrRwTWCcJd4zH+VfxfY37JUZzpAab4Zpt6
+SreGotS7LzeM9bu2FYMK8CcdNKry0MUN0NeNnfaXMxvYMqNrnyzm6mLm6YlZ1IVU
+6YK3bfbaeAuGW7eRbmOsiol0CNBr/JoDL/P6/3r8lY1Cyc+jP9MG715YpDNnPjgc
+SU1U8kaQszZ7ps/afyOWb3x9mUezTAb9n8B7xU445Akr9/7lXC3K7EDbhnGd9irQ
+lJ3QBVbKT0ScXC5ITn0ugmHrXH6J3e2rKLtB75+S6HfS2Wdi2hTAtUkWQn6Kbq5p
+LOhkKjhK4fSnZ0PaYEapGKMd9ihVX/+Jn6MDxIuSoAgiXiqj6DpgiOR/12G/nhIo
+jC57Hui6hANMPTHvKwGCgmCLNFoE2kQTHoc/I0uD9g1jDXWumWvZmN9xCe/UV7sT
+aX2xqvTqcs3P37Swu6MHC6yI123WPoosUeEJRT36O0GeBZNuRKr0SW7Qy7HUXxAb
+683/PkWV1GTqmBhH0AH8BpAWy5sHe1heNHWG46gE4tXdZjmPYwCYMkWYIiZvDWNL
+R0whx5grlzpbhC08Yy03goR48Tw+lQFyzdePAzqP4O20YFBd+XZ/7URg43zFX1E6
+u2T0Lu9MJSWcMu/rK0R0VzdbP1nr1FVph8AEjMYhlef7NbKCOeSgjyxVEbV21zBA
+DwoKs/oukEoUoVYBeRZrO3W5VOI4Fda7BtfjwbbpJcDY02w7US1G6UaFaswdiDJr
+rQWXI+EcRMJ2GfI/TUnu+0MLSLXaUWOqKKPM7dGhwr9bA+fvoRZC7IfvSJsynWfL
+MiBSSvw3QJWc4T4dm7fTtlcKfywkJYLVJ/IvDumWa6FbUWUw/VckJOgbkJ9AiczK
+9znNFCtYQaHfD0RSkrkbe60EaZ6W8om34QjqlSFK+PUgRSUa7MLvZdFYeqw7z8T7
+3+YINMJLjYjZqG9lKllVhGHjQrvIAPUbJ0pz1bVeJYIrtKCJHrnUDrcBhkxKqU//
+Wz/U9J7+IWs9H/VGPFey6DIRWFXN3LnBmoVkS5tN3wjZgpkVXx2Nrzsjhmyb18zh
+2XKPkhoKeynHqpR9+WEdkujv7tDY6Wbq+pP5hkPva69JUe3ud+iYLTySLrOKK/Qp
+hB1T11XpEyINGU+zLS2XaN02wOQS77M2j5o+spVo6wPGPDtlH6zg+dUmkmXr/48Y
+zygXWH2epKtyiqtfOJl5eTqniG5sftCvqE5GoDk1hXIeQ2tv6ZfyD2fsjU5BSPHh
+CWpJIo7TnKNLidlYIkoX207Pyf+uLl5DaqLW46ag8F7Vvwvw0pAoJqho0jzQheQL
+0Q4iFtRitRdkxLRzZogJSHkxnH6QvxpA2EvtsEohI3Rc/Hyk0Sof2tpSVQWvBncJ
+qwF6LigzJ2MdLwI5Ld6hAfdFQyBtQ9Q/EuU0smApwVCM2lWoeavgYfKKFU7tZcwp
+SJrBd7TNQuCt54GOTCNkNSlV01U+uPzpkgbIhVOVr9UtazzpJ1+8OgyRKnsrzucf
+VZPBpUSCeMgMFGozrKCxffcHrl+wd8hSHGJLt5Jm1SlQmZ4ei3bioqFgoQ1czDI5
+xFTZyC27N1gNw0nAf6HEPirM0pTJIhfRjUu5Dqqw1xN0FFSEk70T+NNpW3fA6VDy
+6sZh2UIuYwmlLvXn3+e7VlEs8UrOF4eanCrR842L1a7S45rvPOsFvj14rXkiPHrl
+xAEO21B7ThD/fM9aCepXL08HccSfyVlniRzVQd6odPyU96YXgAiKsCsSJaui3HRT
++Rgq02BEnweTuWeAvkuekWKhnqUqQyja4Ux7z0QJkA2Oz/T02371GiGaW7d9uo57
+lojUd8FuB48RATlbBf9BjxM4S1qaJSH7Y1cnsrPy4PavndhiN1Av7kIM2PHX/6vN
+CpeL7/Lfn7zDzeiit3GdnnGfSZiWwqQGmb5heOcBitxHq4QJNPOPwdGOhAmu7GCW
+2+UN4+cDNcn2EguszKhS6qZxmP+MmxVeeJhbIKmyK3sS4Yl2dtPE2Ya3LjlJcBHO
+5SjHoO3mUIYoxCniPD9qceKVdeMIC6xfXkfhH/E0aJl58X+RnmtWb3UxIKcrXF7A
+epex7kLRDC7APMSQgLl0W0+iKfmVnKLjbanQxh8dFKOTRENkTEP5TOniDge8WDz6
+ZYZ9if0EGzrMs3Pfbupbw5mFWA3RiCXkq7kHuyCOfBTKCAz8tEwKxxiUOhv3GsX5
+Ch8oryxmZKmRUqtpYRbh3xkjTjynSrEW30E8LC/f9KHO/Y43xPXLxPpsXZkzsXkD
+AYw2cZX1bh5ErUHCxhug3VH4oB4ZU8jTcOPojIaRfXbI+13v7x6r562T7yuaSKlR
+b3qUL1w16cT0SVmWZQLyAao/lXFqJHAX0q6LajEWc5n/tQKMZrhiIbE/0vhJH1fx
+A6KWBC6wdEpRZYi9dC/EkWELS8ACSg7qx0nCY51jue+n9cEthiG/ZF8cB7diLKeN
+VZAwBLMes/AAr2jcNnYZ+kf2aONvTsFgEr+o9UlRh8IM6mbPpJkYXeK/mvjY4awW
+vbMLHZe1HUJUPZmXbdQFK7eLyxoWNt6grA2kLbx8MdFEdoqK2stCZKIHX+E37NkX
+adCM12VXqEjiejbzheu7nYZW6n9IA2526AX3UWeNqWdyHUiLrM4obKJsmPU6RyT0
+Z16ALMfMdq30x+D1eUTt2qXrwC3bipsSvVXe5a1PiOWeJgm8J0V0KT12ajoPu0H7
+9N8qdVIeaOZYOkBpClfPrHXZfHtOfDUpGtEMWvuOx7sy75B6oLRLaeArTZASh9Ut
+FTTpu1wn/YAlMHJiRrgcZie3D/L+w3PrYvfxjklTII5yp15hPTdDwwYT+OrqB5l0
+ltEjr4b93w9Vk/0mIUl4LFugmRh6L44HSaLIXPZ710yG2+D+7Y0e71mGmtDWE+eW
+jMbVE5s+pO6i8URGrHuwOyn8Oh6MCBHjbEN9kXK28pZ+X3CFlZxqkhoHGMsO+y63
+VkbujJWUR7WOxxxvWmGB6se6KbkwV/4fJmn3sQz1jU0pUqJia6qenxb412IQ2C5/
+dODzCJDByXX4PvedF0dyeAxusI1eHjpyT5/ZxEUAvDR4d1E5Ejb/l/pFWj5ZxkEk
+MjCZKduWBS2o427BtN+ZXWet7LMCa6fq8I7EAxGK4/siSiTubjUS2c7L9PsQwli1
+/rPlP7xiUY/bkuP0OTgbPJwY74ymRfpSGX+VtyBiHj54DuYQMD66gTQjKg+EN0rd
+9EfSxHmkZy0FcWs+L6RWUm/vS5fPGb9XDLwD+BGIGxeTCPDu4FiNU3ct5G4cqxLV
+xC1QKUKw9STd52NWvSl7w6HfPXFg6oYrrCsBp4nzRFh/wLw/KVS3R/HqhDhwvDQQ
+jK6BD2Huj4gQ20NL1wNll/rmp/cxTtXwigflgO1Dh+N2Q8GePi3Blpz3Po+ANK4S
+ksNNP4F/XzWbQ/kIDQJ8zrKIw2kzRE7S7bx7PPcXYmnldOH5jMzr7BqWYnZj/W7P
+hGf3bWjqnD/oZIaWzurdhhhYrl4smI52m8BphszoCW4WClO9wjimZC8QvspoFVSe
+ZaZaKT9Ev4kRAagnZDBrlESpFJKx3mJo5sCsw0XoKXFzZCU9TkwiUg6pIXSNUP2K
+Vhbf+BeMLW5YYbVR1mKqOkQ7OKBAJ3gkts2Ww8fdlOsQmz3xgxeqD5ypmILdiF+U
+ESs2DRTwRYnjdZXjOeVbsrA5eyxklt2R6shnpOdgvL1s3HzHj8ZwkF37LQqJn8gj
+s3HaYvZ8+HpiAll4oKODcg19hrNlTFj/LUkUkZjxypMGHZGPRXTxIIR2CwbpUAcn
+10tYzX4RctB+5EaK3sGxoU8ZajZh/C6nH2dWBkTgFv+YC1vAPqLFdm/4UtX034yX
++3qEgPpRTHzITUfaiLD4oJH/CmPhjLi/h93eo4lFGjgmmzibiT+Z4v1hRS8uspkE
+U0bNYevWmKmgMmXcoZOpPgJEkX4i5z+yFhJ5Z44MlaoD42nMposUHQ/tygiuIyJO
+5vEJ4Nd/u5/g1rb++KqZV16avaIi8DZDANhuIbV0yVZXsOXLLprEb63Gy4Q5PHue
+FiPHOwq6yrkPeWkZW1n+sxvEtAFmvg/tax3TPT9978nR9sGhTwVGIDSWA+nztqWC
+spkLyU9uTy0qu5N9kl3lGRnA0h2cLJZcTEuHk5w0L+sg8qHL4UjJe/xL2GUyYAtu
+0wQlJAfr8tIOkpGAl0CfId8DD/x+sWY93WnAFt505c2mhekv0FVWEnFWfOwIYpdx
+foVLO2jXhCK4i4/lfGXlEb9GNS0afLjCZvgxWPYMkHitHgKqItVLVrDr3FVngMzg
+2pHYEUNkzamFDI+GCDf7QRqROUcvfaJ9Zhd/upjZRJwPcL+OC75+/2cxZvTuYpCt
+NlEMUC5nHIjuthUmp+3q6eyI2+/waZ/j57M288DxmiJwO89leoR4ltpyVuHYsBGl
+RlEt5qOwRtN1fnTHWir/Mq0+AD9wO0gueRfwYeJ+IGfkeCdH8ZZcmvJMnk5VqewX
+CAjYL0u9SW/Y9UuBCp5JvAeSMY78uRe1osqq5ZsStI5/Fqrcn/D/QIjB6dxS/DEb
+wYsMC6njCqPGEv3fyOEGEf4w5vqNRnKTj2A457DpY1Vo4Xc5uObzamO1u15DbNTg
+R407lhUA8tOw12NB2dVcGMjtYz3GuPir4jnqMg5Z2xeCsllYioe1p5g2E+43S6Cu
+ziaQIPkhTROKAmIfokARIRMTrAcGgPsnMllWdReZI3ySi3Yy/7QxrNmu3v0Ehto2
+g7Kru2C74CAgqivPjfsfjTm77AxgavccqaeCCokjLy4MzJPHsnaj4/gVXqSHQL/r
+O7wqDWPmoSli2uorgKsnzOMssq77FeQbnk0pa1Gb9kpuSJWIT1Qd8ZCsJT3y6ieW
+cW07/2GqT/3p4HX35Tx6Va6HmkjIL24EnEI78JYTCFj+vv6vNaATcOuPsHRBrh7V
+sRyqAQWUOp+Um+Js23qGu+sWy6BtjGrdWDPPZT+BQejBLnDIqXjijsYtGNkK+Piq
+IYV4Ltmz+9KycZrw9MKe26JuBx1vN5NEqmBEaABTth9A3CbLZMu1LKim7B3sgr5t
+Ei/zbEbVdSOZMxxV1i18Qqs4L8NSex68G0IeZRMR8wdRm6CO023+DJJ7hLVdgi8O
+wDEmLEK6wM6G+pFYnaYGZDY3ldVWrUPI6NB8N6nDFhknBQ2K4Pei2DhacsR/hFlo
+Bl/IP4VbzLBRcBgdz0gwE3goUnuwxYkvp8WuiNNwJd3n30M0fsIAl+tqrGeX4ZjX
+1BWV2Em2OQLMIyC6Z/zSKTE9EaDwDz7lJ566jNzIp6AYuI8mYpiqdr4yyKqTvCJD
+sKmi+oJ0nN3KVjJiLxIiZQ==
+-----END MESSAGE-----
+signature FxGDllo1WfV+JVzWCs7zxSHL3Wd/geZXhWlERAbcEiNkABSHxVtBBXsqvwczquMQrun7DIhcPhhnYom4Vw6GDQ
+.
+650 OK
+2019-01-31 11:29:52 1548934192.33 650 CIRC 25 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:52 1548934192.33 650 ORCONN $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0 LAUNCHED ID=69
+2019-01-31 11:29:52 1548934192.33 650 CIRC 26 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:52 1548934192.33 650 ORCONN $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub LAUNCHED ID=70
+2019-01-31 11:29:52 1548934192.40 650 ORCONN $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub CONNECTED ID=70
+2019-01-31 11:29:52 1548934192.41 650 CIRC 26 EXTENDED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:52 1548934192.44 650 CIRC 26 EXTENDED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:52 1548934192.57 650 CIRC 26 EXTENDED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:52 1548934192.65 650 ORCONN $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0 CONNECTED ID=69
+2019-01-31 11:29:52 1548934192.74 650 CIRC 25 EXTENDED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:52 1548934192.80 650 BW 28468 7888
+2019-01-31 11:29:52 1548934192.80 650 CIRC_BW ID=23 READ=15779 WRITTEN=0 TIME=2019-01-31T11:29:52.802162 DELIVERED_READ=14295 OVERHEAD_READ=1143 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=0
+2019-01-31 11:29:52 1548934192.80 650 CIRC_BW ID=24 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:29:52.802168 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:29:52 1548934192.80 650 CIRC_BW ID=25 READ=0 WRITTEN=509 TIME=2019-01-31T11:29:52.802170 DELIVERED_READ=0 OVERHEAD_READ=0 DELIVERED_WRITTEN=119 OVERHEAD_WRITTEN=379
+2019-01-31 11:29:52 1548934192.80 650 CIRC_BW ID=26 READ=1018 WRITTEN=1527 TIME=2019-01-31T11:29:52.802172 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=357 OVERHEAD_WRITTEN=1137
+2019-01-31 11:29:52 1548934192.95 650 CIRC 25 EXTENDED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:53 1548934193.05 650 CIRC 26 EXTENDED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:53 1548934193.05 650 CIRC 26 BUILT $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516
+2019-01-31 11:29:53 1548934193.21 650 CIRC 25 EXTENDED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:53 1548934193.21 650 CIRC 25 BUILT $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275
+2019-01-31 11:29:53 1548934193.48 650 CIRC_MINOR 25 PURPOSE_CHANGED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_IDLE REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_CONNECTING
+2019-01-31 11:29:53 1548934193.48 650 CIRC_MINOR 26 PURPOSE_CHANGED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_INTRO_SENT REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_CONNECTING
+2019-01-31 11:29:53 1548934193.80 650 BW 2172 1629
+2019-01-31 11:29:53 1548934193.80 650 CIRC_BW ID=25 READ=1527 WRITTEN=1018 TIME=2019-01-31T11:29:53.802398 DELIVERED_READ=132 OVERHEAD_READ=1362 DELIVERED_WRITTEN=139 OVERHEAD_WRITTEN=857
+2019-01-31 11:29:53 1548934193.80 650 CIRC_BW ID=26 READ=509 WRITTEN=509 TIME=2019-01-31T11:29:53.802406 DELIVERED_READ=66 OVERHEAD_READ=432 DELIVERED_WRITTEN=310 OVERHEAD_WRITTEN=188
+2019-01-31 11:29:53 1548934193.85 650 CIRC_MINOR 25 PURPOSE_CHANGED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_WAITING REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_IDLE
+2019-01-31 11:29:53 1548934193.85 650 CIRC_MINOR 26 PURPOSE_CHANGED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_INTRO_SENT
+2019-01-31 11:29:53 1548934193.85 650 CIRC 26 CLOSED $C92F69EE5756200F160CCFAFE9C3C984D3E6D561~netzhub,$7185B69E3267E71D0E4CBE30209677205DEA5E67~FalkensteinTor03,$C1B8C6887867CED2564454058F9082311FAF1AC7~MapleCrew,$3A8557B067FBE53F168BBEAA7D14D1298AE52A52~colon BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.314516 REASON=FINISHED
+2019-01-31 11:29:54 1548934194.80 650 BW 543 1086
+2019-01-31 11:29:54 1548934194.86 650 CIRC_MINOR 25 PURPOSE_CHANGED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_WAITING
+2019-01-31 11:29:54 1548934194.86 650 STREAM 64 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:29:55 1548934195.29 650 STREAM 26 CLOSED 10 68.148.246.91.$B4B900AD50134E9528D7CDF665ABDADABF53A9B7.exit:44444 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:29:55 1548934195.61 650 STREAM 64 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:29:55 1548934195.80 650 BW 34272 1629
+2019-01-31 11:29:55 1548934195.80 650 STREAM_BW 64 52 10 2019-01-31T11:29:55.802762
+2019-01-31 11:29:55 1548934195.80 650 CIRC_BW ID=10 READ=32576 WRITTEN=509 TIME=2019-01-31T11:29:55.802771 DELIVERED_READ=30884 OVERHEAD_READ=988 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=498
+2019-01-31 11:29:55 1548934195.80 650 CIRC_BW ID=25 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:29:55.802775 DELIVERED_READ=148 OVERHEAD_READ=848 DELIVERED_WRITTEN=58 OVERHEAD_WRITTEN=938
+2019-01-31 11:29:56 1548934196.80 650 BW 68747 1600
+2019-01-31 11:29:56 1548934196.80 650 STREAM_BW 64 0 64619 2019-01-31T11:29:56.801383
+2019-01-31 11:29:56 1548934196.80 650 CIRC_BW ID=25 READ=66679 WRITTEN=1527 TIME=2019-01-31T11:29:56.801394 DELIVERED_READ=64619 OVERHEAD_READ=619 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=1494
+2019-01-31 11:29:57 1548934197.81 650 BW 340275 10143
+2019-01-31 11:29:57 1548934197.81 650 STREAM_BW 64 0 325190 2019-01-31T11:29:57.804024
+2019-01-31 11:29:57 1548934197.81 650 CIRC_BW ID=25 READ=333395 WRITTEN=9671 TIME=2019-01-31T11:29:57.804034 DELIVERED_READ=325190 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:29:58 1548934198.80 650 BW 295915 9600
+2019-01-31 11:29:58 1548934198.80 650 STREAM_BW 64 0 282462 2019-01-31T11:29:58.802221
+2019-01-31 11:29:58 1548934198.80 650 CIRC_BW ID=25 READ=289621 WRITTEN=9162 TIME=2019-01-31T11:29:58.802229 DELIVERED_READ=282462 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:29:59 1548934199.80 650 BW 356264 10657
+2019-01-31 11:29:59 1548934199.80 650 STREAM_BW 64 0 339632 2019-01-31T11:29:59.802349
+2019-01-31 11:29:59 1548934199.80 650 CIRC_BW ID=25 READ=348156 WRITTEN=10180 TIME=2019-01-31T11:29:59.802357 DELIVERED_READ=339632 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:00 1548934200.80 650 BW 357481 11743
+2019-01-31 11:30:00 1548934200.80 650 STREAM_BW 64 0 342072 2019-01-31T11:30:00.801038
+2019-01-31 11:30:00 1548934200.80 650 CIRC_BW ID=25 READ=350701 WRITTEN=10689 TIME=2019-01-31T11:30:00.801045 DELIVERED_READ=342072 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:01 1548934201.80 650 BW 338884 10143
+2019-01-31 11:30:01 1548934201.81 650 STREAM_BW 64 0 323696 2019-01-31T11:30:01.803612
+2019-01-31 11:30:01 1548934201.81 650 CIRC_BW ID=25 READ=331868 WRITTEN=9671 TIME=2019-01-31T11:30:01.803620 DELIVERED_READ=323696 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:02 1548934202.80 650 BW 371170 11200
+2019-01-31 11:30:02 1548934202.80 650 STREAM_BW 64 0 355468 2019-01-31T11:30:02.802139
+2019-01-31 11:30:02 1548934202.80 650 CIRC_BW ID=25 READ=364444 WRITTEN=10689 TIME=2019-01-31T11:30:02.802147 DELIVERED_READ=355468 OVERHEAD_READ=1100 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:03 1548934203.81 650 BW 309816 9600
+2019-01-31 11:30:03 1548934203.81 650 STREAM_BW 64 0 296406 2019-01-31T11:30:03.801083
+2019-01-31 11:30:03 1548934203.81 650 CIRC_BW ID=25 READ=303873 WRITTEN=9162 TIME=2019-01-31T11:30:03.801090 DELIVERED_READ=296406 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:03 1548934203.81 650 CIRC 27 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:03 1548934203.81 650 ORCONN $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70 LAUNCHED ID=71
+2019-01-31 11:30:03 1548934203.88 650 ORCONN $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70 CONNECTED ID=71
+2019-01-31 11:30:03 1548934203.91 650 CIRC 27 EXTENDED $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:03 1548934203.95 650 CIRC 27 EXTENDED $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70,$5CFC486780CBD4446B764E51608D6574003B350D~helena BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:04 1548934204.04 650 CIRC 27 EXTENDED $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70,$5CFC486780CBD4446B764E51608D6574003B350D~helena,$8CF987FF43FB7F3D9AA4C4F3D96FFDF247A9A6C2~zucchini BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:04 1548934204.04 650 CIRC 27 BUILT $3C3A6134E4B5B7D1C18AD4E86EE23FAC63866554~traffic70,$5CFC486780CBD4446B764E51608D6574003B350D~helena,$8CF987FF43FB7F3D9AA4C4F3D96FFDF247A9A6C2~zucchini BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:03.801140
+2019-01-31 11:30:04 1548934204.81 650 BW 395271 14892
+2019-01-31 11:30:04 1548934204.81 650 STREAM_BW 64 0 372898 2019-01-31T11:30:04.803861
+2019-01-31 11:30:04 1548934204.81 650 CIRC_BW ID=25 READ=382259 WRITTEN=11707 TIME=2019-01-31T11:30:04.803869 DELIVERED_READ=372898 OVERHEAD_READ=1100 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=11454
+2019-01-31 11:30:04 1548934204.81 650 CIRC_BW ID=27 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:04.803873 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:30:05 1548934205.80 650 BW 309209 9600
+2019-01-31 11:30:05 1548934205.81 650 STREAM_BW 64 0 294912 2019-01-31T11:30:05.803762
+2019-01-31 11:30:05 1548934205.81 650 CIRC_BW ID=25 READ=302346 WRITTEN=9162 TIME=2019-01-31T11:30:05.803771 DELIVERED_READ=294912 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:06 1548934206.80 650 BW 382507 11743
+2019-01-31 11:30:06 1548934206.80 650 STREAM_BW 64 0 365876 2019-01-31T11:30:06.801173
+2019-01-31 11:30:06 1548934206.80 650 CIRC_BW ID=25 READ=375133 WRITTEN=11198 TIME=2019-01-31T11:30:06.801181 DELIVERED_READ=365876 OVERHEAD_READ=1150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10956
+2019-01-31 11:30:07 1548934207.80 650 BW 344358 10657
+2019-01-31 11:30:07 1548934207.81 650 STREAM_BW 64 0 329174 2019-01-31T11:30:07.803795
+2019-01-31 11:30:07 1548934207.81 650 CIRC_BW ID=25 READ=337467 WRITTEN=10180 TIME=2019-01-31T11:30:07.803803 DELIVERED_READ=329174 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:08 1548934208.80 650 BW 185816 6429
+2019-01-31 11:30:08 1548934208.80 650 STREAM_BW 64 0 177734 2019-01-31T11:30:08.800895
+2019-01-31 11:30:08 1548934208.80 650 CIRC_BW ID=25 READ=182222 WRITTEN=5090 TIME=2019-01-31T11:30:08.800904 DELIVERED_READ=177734 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:30:09 1548934209.80 650 BW 325938 10657
+2019-01-31 11:30:09 1548934209.80 650 STREAM_BW 64 0 312292 2019-01-31T11:30:09.800587
+2019-01-31 11:30:09 1548934209.80 650 CIRC_BW ID=25 READ=320161 WRITTEN=10180 TIME=2019-01-31T11:30:09.800596 DELIVERED_READ=312292 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:10 1548934210.80 650 BW 343543 10143
+2019-01-31 11:30:10 1548934210.80 650 STREAM_BW 64 0 328178 2019-01-31T11:30:10.802505
+2019-01-31 11:30:10 1548934210.80 650 CIRC_BW ID=25 READ=336449 WRITTEN=9671 TIME=2019-01-31T11:30:10.802514 DELIVERED_READ=328178 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:11 1548934211.81 650 BW 300933 10143
+2019-01-31 11:30:11 1548934211.81 650 STREAM_BW 64 0 287492 2019-01-31T11:30:11.804133
+2019-01-31 11:30:11 1548934211.81 650 CIRC_BW ID=25 READ=294711 WRITTEN=9162 TIME=2019-01-31T11:30:11.804142 DELIVERED_READ=287492 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:12 1548934212.80 650 BW 289509 9057
+2019-01-31 11:30:12 1548934212.80 650 STREAM_BW 64 0 277034 2019-01-31T11:30:12.803082
+2019-01-31 11:30:12 1548934212.80 650 CIRC_BW ID=25 READ=284022 WRITTEN=8653 TIME=2019-01-31T11:30:12.803091 DELIVERED_READ=277034 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:13 1548934213.64 650 STREAM_BW 64 0 167774 2019-01-31T11:30:13.639233
+2019-01-31 11:30:13 1548934213.64 650 STREAM 64 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:30:13 1548934213.65 650 STREAM 72 NEW 0 4ja3p2v3lh5mvmcy.onion:8080 SOURCE_ADDR=127.0.0.1:36402 PURPOSE=USER
+2019-01-31 11:30:13 1548934213.65 650 STREAM 74 NEW 0 37.187.96.78.$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171.exit:9001 PURPOSE=DIR_FETCH
+2019-01-31 11:30:13 1548934213.65 650 HS_DESC REQUESTED 4ja3p2v3lh5mvmcy NO_AUTH $BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 xnuo26pqht4gqapdpxepd67aaywpyzub
+2019-01-31 11:30:13 1548934213.65 650 CIRC 28 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:13 1548934213.65 650 ORCONN $0D7C69551F9186DB589BDF00858314AC136A33DA~lara LAUNCHED ID=75
+2019-01-31 11:30:13 1548934213.74 650 ORCONN $0D7C69551F9186DB589BDF00858314AC136A33DA~lara CONNECTED ID=75
+2019-01-31 11:30:13 1548934213.76 650 CIRC 28 EXTENDED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:13 1548934213.80 650 BW 181722 7422
+2019-01-31 11:30:13 1548934213.80 650 STREAM_BW 72 32 2 2019-01-31T11:30:13.801881
+2019-01-31 11:30:13 1548934213.80 650 STREAM_BW 74 91 0 2019-01-31T11:30:13.801887
+2019-01-31 11:30:13 1548934213.80 650 CIRC_BW ID=25 READ=173060 WRITTEN=5090 TIME=2019-01-31T11:30:13.801890 DELIVERED_READ=167812 OVERHEAD_READ=1508 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:30:13 1548934213.80 650 CIRC_BW ID=28 READ=0 WRITTEN=509 TIME=2019-01-31T11:30:13.801893 DELIVERED_READ=0 OVERHEAD_READ=0 DELIVERED_WRITTEN=119 OVERHEAD_WRITTEN=379
+2019-01-31 11:30:13 1548934213.92 650 CIRC 28 EXTENDED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:14 1548934214.28 650 CIRC 28 EXTENDED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3,$C5924D853D180819F4A4D9F1CF9505F4D5083DCC~torniquet BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:14 1548934214.48 650 CIRC 28 EXTENDED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3,$C5924D853D180819F4A4D9F1CF9505F4D5083DCC~torniquet,$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:14 1548934214.48 650 CIRC 28 BUILT $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3,$C5924D853D180819F4A4D9F1CF9505F4D5083DCC~torniquet,$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317
+2019-01-31 11:30:14 1548934214.48 650 STREAM 74 SENTCONNECT 28 37.187.96.78.$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171.exit:9001
+2019-01-31 11:30:14 1548934214.67 650 STREAM 74 SUCCEEDED 28 37.187.96.78.$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171.exit:9001
+2019-01-31 11:30:14 1548934214.69 650 STREAM 74 CLOSED 28 37.187.96.78.$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171.exit:9001 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:30:14 1548934214.71 650 HS_DESC RECEIVED 4ja3p2v3lh5mvmcy NO_AUTH $BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 xnuo26pqht4gqapdpxepd67aaywpyzub
+2019-01-31 11:30:14 1548934214.71 650+HS_DESC_CONTENT 4ja3p2v3lh5mvmcy xnuo26pqht4gqapdpxepd67aaywpyzub $BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2
+rendezvous-service-descriptor xnuo26pqht4gqapdpxepd67aaywpyzub
+version 2
+permanent-key
+-----BEGIN RSA PUBLIC KEY-----
+MIGJAoGBAMevriVbH9cHqfUsxZ/x+uq+yHjeVB5HsA8yMsixJEC9SB6bhU8L9z/7
+xLCQfLgvZhCjQBDbtjGc857ck7cqWhj+E2Q08Eb7ZMI2V9TuUlwzV6HsAZ5hZoWl
+qFmxibbrt+SJOYJcl7UWv8tMz8UxhSkQjyoB2eoCdbAgVpghD2qbAgMBAAE=
+-----END RSA PUBLIC KEY-----
+secret-id-part kdb3qb4s32yonv2lom2i4te7nntfz4kc
+publication-time 2019-01-31 11:00:00
+protocol-versions 2,3
+introduction-points
+-----BEGIN MESSAGE-----
+aW50cm9kdWN0aW9uLXBvaW50IG9qamg0bXNjem1rMnZ4cmlnNWZvYnUyeWdwNmFx
+cDNhCmlwLWFkZHJlc3MgMjEyLjQ3LjI0MC4xMApvbmlvbi1wb3J0IDk5Mwpvbmlv
+bi1rZXkKLS0tLS1CRUdJTiBSU0EgUFVCTElDIEtFWS0tLS0tCk1JR0pBb0dCQUxv
+TWsxQ0hhc3UxTkY5YXJhaW9jdThubGxNbGlpRkI0U2k0WFZpcjBocXgyOEpJN3BC
+Vlg0d3AKWDhqcmNXRWdGSVBPNHhBWlJxV1FHRzY2M3BtWFhSU1VmdHJKSzRnTTJW
+SzlrVEcyZlZPU2JoQWJ1RThMN2cvLwpzN3o4bnBXSEVhRzlCTGFNVGpMMURrQ1I0
+Z25DOUQrNFdIdlB5cjRZV3VyZ2g2RkNhVDh6QWdNQkFBRT0KLS0tLS1FTkQgUlNB
+IFBVQkxJQyBLRVktLS0tLQpzZXJ2aWNlLWtleQotLS0tLUJFR0lOIFJTQSBQVUJM
+SUMgS0VZLS0tLS0KTUlHSkFvR0JBSmVnZ0NRNzZ2Z3ZZVmRER3BLZ2J0SjAwTmNG
+ak1DV1VJSGRKcENBUiszUTQyM0FHclRmT2t2aQpKTGNiTTU1aVZhMCtjZDlnWEp1
+WVFHZ3VCVVltL3krNzZBdVRpM01TS0UzTGUxekpFaGdyc2R6NWUySjNOT2xkCjU1
+OGoyYi9la0Q2M1M3OFgrVXltVnNJSVNCbElNTVpsTi9KODFKZzB3Z0MxaEJnbzU0
+MmxBZ01CQUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0tLS0tCmludHJvZHVj
+dGlvbi1wb2ludCBuNGV2bW90bjMycndremZ4enM2ZWphbXl2eHM3Y295eQppcC1h
+ZGRyZXNzIDk2LjIyNS4yMS4xMjMKb25pb24tcG9ydCAzNjk5Nwpvbmlvbi1rZXkK
+LS0tLS1CRUdJTiBSU0EgUFVCTElDIEtFWS0tLS0tCk1JR0pBb0dCQUxNWk53M2Rq
+UFNYQ2NVcEx2SjJIVlM1VW94eFRabldZSVpjSkR5a1pNNnlTdDlkVUxsV3ROYlUK
+RWJydWt3OG10SURVVldvMmhRRVNrUGQyY1V4UEdoZXlhSG5tYmJ5cnZTYUhJMVFX
+d0NVRXgrVXFkYlJTeUcvKwpETTJrMEIzbGR3NERLc2JrSTlWRHZOaXM3dEdLVS8x
+VHFFYmpweDF3bnFCOTJOVm1yRkNiQWdNQkFBRT0KLS0tLS1FTkQgUlNBIFBVQkxJ
+QyBLRVktLS0tLQpzZXJ2aWNlLWtleQotLS0tLUJFR0lOIFJTQSBQVUJMSUMgS0VZ
+LS0tLS0KTUlHSkFvR0JBSldDSDF6anBSNDY2QWVMMjFmaDNkdzRnR2cxNGs4U1J2
+Y3UwZDh5OHNRYjhEWUN0ZHlFUDV4MQpaRU84TWZpNHp2dVJHSGhWU3VrRVdLZmZI
+RXZ3Z25qTzlxM2ZTTWM3MzBxeHZCcTJNUFA4OURrZU1memNVRjJ2CmlXY0VmaXQy
+WjArVFIvdmNvN3VSQmRla09ucHVMcmUxNUQ3eXNDSWJjeWkyZEdpMnk0d1RBZ01C
+QUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0tLS0tCmludHJvZHVjdGlvbi1w
+b2ludCBvNjJmbWtsdTZ4bHJreXRvdzZjZ2JyNDJmdWo3dzRhZwppcC1hZGRyZXNz
+IDE4OC42OC4zMy4yMjQKb25pb24tcG9ydCA5MDAxCm9uaW9uLWtleQotLS0tLUJF
+R0lOIFJTQSBQVUJMSUMgS0VZLS0tLS0KTUlHSkFvR0JBSzZhdzZTM1ExZGhiQWNw
+bmZmY2trcjZjYzBmQWpkNlpjMDhUU1l6eEZMWUg2VGVHbSttUkZmdAo5ZSt1TFlW
+STFuR0lDOTdCQXFVYTVLOU1rd2I2SG92RHo1d2ZwVnZCdzZxSnJsWVNMa1ZjWU1G
+Q1kzVk1DakZUCnhRRVVtUU5uWjlxampKSEhQUXBhVGdVYUNOQWtJdXdvUFlPSUp1
+cmFoaCtTT3pOaktwMHJBZ01CQUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0t
+LS0tCnNlcnZpY2Uta2V5Ci0tLS0tQkVHSU4gUlNBIFBVQkxJQyBLRVktLS0tLQpN
+SUdKQW9HQkFMUkd0RGFlbDlMYWQwdkN4c1p1TURqbXN1ak9jd1cwb0REMFVzaWI4
+RHA1UnFaR3FCcXFxWS9uClJoMnlTUGNNMHM3elIvVmNKcWszSzhnRStrYlJwajJ3
+QzBSNlZ3VXpiZ1M5ekIyWGt6b0Q0Rm5tMVBRMjUwcFYKa2NQdytpeTY1Q2xtMEFo
+dkUvNThhcXJrODZwRmUva3plZGdJd1FIRTNlSk1oZHFmNDJSNUFnTUJBQUU9Ci0t
+LS0tRU5EIFJTQSBQVUJMSUMgS0VZLS0tLS0KCg==
+-----END MESSAGE-----
+signature
+-----BEGIN SIGNATURE-----
+RQlaLA/aY16niMWvpu+TFqHRO5tC+r9Z9wKWD9G13z201ty3jM49xjUqL0vpvy1K
+PonXYlBmxSmw4QpDg5TGqokEMlizIZbsCi3bB/yWLkHq1XFxqec5FQfKvjqcBNG6
+PDHnyrD/dxzMg8Z/6kujz15l1dGp6qWEBsZmnzcCssY=
+-----END SIGNATURE-----
+.
+650 OK
+2019-01-31 11:30:14 1548934214.71 650 CIRC 29 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:14 1548934214.71 650 ORCONN $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1 LAUNCHED ID=76
+2019-01-31 11:30:14 1548934214.71 650 CIRC 30 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:14 1548934214.71 650 ORCONN $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1 LAUNCHED ID=77
+2019-01-31 11:30:14 1548934214.79 650 ORCONN $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1 CONNECTED ID=77
+2019-01-31 11:30:14 1548934214.80 650 BW 9422 3678
+2019-01-31 11:30:14 1548934214.80 650 CIRC_BW ID=28 READ=6108 WRITTEN=2036 TIME=2019-01-31T11:30:14.801024 DELIVERED_READ=3640 OVERHEAD_READ=2336 DELIVERED_WRITTEN=329 OVERHEAD_WRITTEN=1663
+2019-01-31 11:30:14 1548934214.83 650 CIRC 30 EXTENDED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:14 1548934214.88 650 CIRC 30 EXTENDED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:14 1548934214.94 650 ORCONN $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1 CONNECTED ID=76
+2019-01-31 11:30:14 1548934214.99 650 CIRC 29 EXTENDED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:15 1548934215.04 650 CIRC 30 EXTENDED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:15 1548934215.12 650 CIRC 29 EXTENDED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:15 1548934215.21 650 CIRC 30 EXTENDED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:15 1548934215.21 650 CIRC 30 BUILT $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671
+2019-01-31 11:30:15 1548934215.27 650 CIRC 29 EXTENDED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:15 1548934215.27 650 CIRC 29 BUILT $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178
+2019-01-31 11:30:15 1548934215.47 650 CIRC_MINOR 29 PURPOSE_CHANGED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_IDLE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_CONNECTING
+2019-01-31 11:30:15 1548934215.47 650 CIRC_MINOR 30 PURPOSE_CHANGED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_INTRO_SENT REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_CONNECTING
+2019-01-31 11:30:15 1548934215.61 650 CIRC_MINOR 29 PURPOSE_CHANGED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_WAITING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_IDLE
+2019-01-31 11:30:15 1548934215.61 650 CIRC_MINOR 30 PURPOSE_CHANGED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_INTRO_SENT
+2019-01-31 11:30:15 1548934215.61 650 CIRC 30 CLOSED $BC7D55036A058E4EB5550800A90EFC00EB04D566~TheEpTic1,$EE8FAAE892D365F194B6C0A008F78DC28D2FC764~Unnamed,$B44FBE5366AD98B46D829754FA4AC599BAE41A6A~jaures3,$72527E3242CB15AADE28374AE0D35833FC083F60~janschejbalScaleWy3 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.695671 REASON=FINISHED
+2019-01-31 11:30:15 1548934215.80 650 BW 8008 5879
+2019-01-31 11:30:15 1548934215.81 650 CIRC_BW ID=29 READ=1527 WRITTEN=1527 TIME=2019-01-31T11:30:15.803619 DELIVERED_READ=132 OVERHEAD_READ=1362 DELIVERED_WRITTEN=258 OVERHEAD_WRITTEN=1236
+2019-01-31 11:30:16 1548934216.47 650 CIRC_MINOR 29 PURPOSE_CHANGED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_WAITING
+2019-01-31 11:30:16 1548934216.47 650 STREAM 72 SENTCONNECT 29 4ja3p2v3lh5mvmcy.onion:8080
+2019-01-31 11:30:16 1548934216.80 650 BW 543 1086
+2019-01-31 11:30:16 1548934216.80 650 CIRC_BW ID=29 READ=509 WRITTEN=509 TIME=2019-01-31T11:30:16.801039 DELIVERED_READ=148 OVERHEAD_READ=350 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=492
+2019-01-31 11:30:16 1548934216.86 650 STREAM 72 SUCCEEDED 29 4ja3p2v3lh5mvmcy.onion:8080
+2019-01-31 11:30:17 1548934217.80 650 BW 259950 8543
+2019-01-31 11:30:17 1548934217.80 650 STREAM_BW 72 52 247791 2019-01-31T11:30:17.801402
+2019-01-31 11:30:17 1548934217.80 650 CIRC_BW ID=29 READ=255009 WRITTEN=8144 TIME=2019-01-31T11:30:17.801412 DELIVERED_READ=247781 OVERHEAD_READ=1717 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=7916
+2019-01-31 11:30:18 1548934218.80 650 BW 360681 10143
+2019-01-31 11:30:18 1548934218.80 650 STREAM_BW 72 0 344064 2019-01-31T11:30:18.803032
+2019-01-31 11:30:18 1548934218.80 650 CIRC_BW ID=29 READ=352737 WRITTEN=9671 TIME=2019-01-31T11:30:18.803042 DELIVERED_READ=344064 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:19 1548934219.80 650 BW 346173 12286
+2019-01-31 11:30:19 1548934219.80 650 STREAM_BW 72 0 330668 2019-01-31T11:30:19.803189
+2019-01-31 11:30:19 1548934219.80 650 CIRC_BW ID=29 READ=338994 WRITTEN=10689 TIME=2019-01-31T11:30:19.803197 DELIVERED_READ=330668 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:20 1548934220.81 650 BW 151082 4800
+2019-01-31 11:30:20 1548934220.81 650 STREAM_BW 72 0 143970 2019-01-31T11:30:20.807059
+2019-01-31 11:30:20 1548934220.81 650 CIRC_BW ID=29 READ=147610 WRITTEN=4072 TIME=2019-01-31T11:30:20.807068 DELIVERED_READ=143970 OVERHEAD_READ=450 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=3984
+2019-01-31 11:30:21 1548934221.81 650 BW 295137 10143
+2019-01-31 11:30:21 1548934221.81 650 STREAM_BW 72 0 279026 2019-01-31T11:30:21.806326
+2019-01-31 11:30:21 1548934221.81 650 CIRC_BW ID=29 READ=286058 WRITTEN=9162 TIME=2019-01-31T11:30:21.806335 DELIVERED_READ=279026 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:22 1548934222.81 650 BW 372500 11200
+2019-01-31 11:30:22 1548934222.81 650 STREAM_BW 72 0 358954 2019-01-31T11:30:22.807501
+2019-01-31 11:30:22 1548934222.81 650 CIRC_BW ID=29 READ=368007 WRITTEN=10689 TIME=2019-01-31T11:30:22.807510 DELIVERED_READ=358954 OVERHEAD_READ=1100 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:23 1548934223.81 650 BW 357966 12286
+2019-01-31 11:30:23 1548934223.81 650 STREAM_BW 72 0 342122 2019-01-31T11:30:23.805934
+2019-01-31 11:30:23 1548934223.81 650 CIRC_BW ID=29 READ=350701 WRITTEN=10689 TIME=2019-01-31T11:30:23.805943 DELIVERED_READ=342122 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:24 1548934224.81 650 BW 299876 9600
+2019-01-31 11:30:24 1548934224.81 650 STREAM_BW 72 0 286446 2019-01-31T11:30:24.804395
+2019-01-31 11:30:24 1548934224.81 650 CIRC_BW ID=29 READ=293693 WRITTEN=9162 TIME=2019-01-31T11:30:24.804403 DELIVERED_READ=286446 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:25 1548934225.82 650 BW 283559 8543
+2019-01-31 11:30:25 1548934225.82 650 STREAM_BW 72 0 271108 2019-01-31T11:30:25.806627
+2019-01-31 11:30:25 1548934225.82 650 CIRC_BW ID=29 READ=277914 WRITTEN=7635 TIME=2019-01-31T11:30:25.806636 DELIVERED_READ=271108 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:30:25 1548934225.82 650 CIRC 31 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:25 1548934225.82 650 ORCONN $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01 LAUNCHED ID=78
+2019-01-31 11:30:25 1548934225.93 650 ORCONN $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01 CONNECTED ID=78
+2019-01-31 11:30:25 1548934225.97 650 CIRC 31 EXTENDED $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:26 1548934226.15 650 CIRC 31 EXTENDED $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01,$B149064611DC466405E1825956F36B202DCE6E4A~t0pch33s3 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:26 1548934226.36 650 CIRC 31 EXTENDED $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01,$B149064611DC466405E1825956F36B202DCE6E4A~t0pch33s3,$FDD700C791CC6BB0AC1C2099A82CBC367AD4B764~QuintexAirVPN24 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:26 1548934226.36 650 CIRC 31 BUILT $E0EAA536856FBD3C3AB46C2BAA398E7CDFDAFF5D~as44194a36s01,$B149064611DC466405E1825956F36B202DCE6E4A~t0pch33s3,$FDD700C791CC6BB0AC1C2099A82CBC367AD4B764~QuintexAirVPN24 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:25.806690
+2019-01-31 11:30:26 1548934226.81 650 BW 353877 14886
+2019-01-31 11:30:26 1548934226.81 650 STREAM_BW 72 0 334104 2019-01-31T11:30:26.804756
+2019-01-31 11:30:26 1548934226.81 650 CIRC_BW ID=29 READ=343066 WRITTEN=10689 TIME=2019-01-31T11:30:26.804765 DELIVERED_READ=334602 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:26 1548934226.81 650 CIRC_BW ID=31 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:26.804768 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:30:27 1548934227.81 650 BW 404641 12286
+2019-01-31 11:30:27 1548934227.81 650 STREAM_BW 72 0 386294 2019-01-31T11:30:27.805938
+2019-01-31 11:30:27 1548934227.81 650 CIRC_BW ID=29 READ=395493 WRITTEN=11198 TIME=2019-01-31T11:30:27.805947 DELIVERED_READ=385796 OVERHEAD_READ=1150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10956
+2019-01-31 11:30:28 1548934228.81 650 BW 274536 9600
+2019-01-31 11:30:28 1548934228.81 650 STREAM_BW 72 0 263588 2019-01-31T11:30:28.806353
+2019-01-31 11:30:28 1548934228.81 650 CIRC_BW ID=29 READ=270279 WRITTEN=8653 TIME=2019-01-31T11:30:28.806364 DELIVERED_READ=263588 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:29 1548934229.81 650 BW 208223 7486
+2019-01-31 11:30:29 1548934229.81 650 STREAM_BW 72 0 195662 2019-01-31T11:30:29.805080
+2019-01-31 11:30:29 1548934229.81 650 CIRC_BW ID=29 READ=200546 WRITTEN=6108 TIME=2019-01-31T11:30:29.805089 DELIVERED_READ=195662 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:30:30 1548934230.81 650 BW 259095 8543
+2019-01-31 11:30:30 1548934230.81 650 STREAM_BW 72 0 249694 2019-01-31T11:30:30.805168
+2019-01-31 11:30:30 1548934230.81 650 CIRC_BW ID=29 READ=256027 WRITTEN=7635 TIME=2019-01-31T11:30:30.805178 DELIVERED_READ=249694 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:30:31 1548934231.81 650 BW 276336 8543
+2019-01-31 11:30:31 1548934231.81 650 STREAM_BW 72 0 262642 2019-01-31T11:30:31.805083
+2019-01-31 11:30:31 1548934231.81 650 CIRC_BW ID=29 READ=269261 WRITTEN=8144 TIME=2019-01-31T11:30:31.805092 DELIVERED_READ=262642 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:30:32 1548934232.81 650 BW 279615 8000
+2019-01-31 11:30:32 1548934232.81 650 STREAM_BW 72 0 267622 2019-01-31T11:30:32.806222
+2019-01-31 11:30:32 1548934232.81 650 CIRC_BW ID=29 READ=274351 WRITTEN=7635 TIME=2019-01-31T11:30:32.806232 DELIVERED_READ=267622 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:30:33 1548934233.81 650 BW 357535 11743
+2019-01-31 11:30:33 1548934233.81 650 STREAM_BW 72 0 341076 2019-01-31T11:30:33.804424
+2019-01-31 11:30:33 1548934233.81 650 CIRC_BW ID=29 READ=352228 WRITTEN=10689 TIME=2019-01-31T11:30:33.804434 DELIVERED_READ=343566 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:34 1548934234.81 650 BW 339224 11200
+2019-01-31 11:30:34 1548934234.81 650 STREAM_BW 72 0 326186 2019-01-31T11:30:34.805499
+2019-01-31 11:30:34 1548934234.81 650 CIRC_BW ID=29 READ=331868 WRITTEN=10180 TIME=2019-01-31T11:30:34.805508 DELIVERED_READ=323696 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:35 1548934235.39 650 STREAM_BW 72 0 9960 2019-01-31T11:30:35.393974
+2019-01-31 11:30:35 1548934235.40 650 STREAM 72 CLOSED 29 4ja3p2v3lh5mvmcy.onion:8080 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:30:35 1548934235.40 650 STREAM 79 NEW 0 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 SOURCE_ADDR=127.0.0.1:36418 PURPOSE=USER
+2019-01-31 11:30:35 1548934235.40 650 STREAM 79 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:30:35 1548934235.81 650 BW 13602 1629
+2019-01-31 11:30:35 1548934235.81 650 STREAM_BW 79 72 2 2019-01-31T11:30:35.804285
+2019-01-31 11:30:35 1548934235.81 650 CIRC_BW ID=25 READ=0 WRITTEN=509 TIME=2019-01-31T11:30:35.804295 DELIVERED_READ=0 OVERHEAD_READ=0 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=492
+2019-01-31 11:30:35 1548934235.81 650 CIRC_BW ID=29 READ=13234 WRITTEN=509 TIME=2019-01-31T11:30:35.804299 DELIVERED_READ=11940 OVERHEAD_READ=1008 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=498
+2019-01-31 11:30:35 1548934235.97 650 STREAM 79 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:30:36 1548934236.81 650 BW 27558 1629
+2019-01-31 11:30:36 1548934236.81 650 STREAM_BW 79 52 22399 2019-01-31T11:30:36.805386
+2019-01-31 11:30:36 1548934236.82 650 CIRC_BW ID=25 READ=23923 WRITTEN=1018 TIME=2019-01-31T11:30:36.805395 DELIVERED_READ=22389 OVERHEAD_READ=1017 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=944
+2019-01-31 11:30:36 1548934236.82 650 CIRC 32 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:36 1548934236.82 650 ORCONN $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay LAUNCHED ID=80
+2019-01-31 11:30:37 1548934237.00 650 ORCONN $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay CONNECTED ID=80
+2019-01-31 11:30:37 1548934237.05 650 CIRC 32 EXTENDED $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:37 1548934237.17 650 CIRC 32 EXTENDED $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay,$88C3708A9D71ECEC1910B63C3FAA5BF60CD7E199~Freya BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:37 1548934237.30 650 CIRC 32 EXTENDED $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay,$88C3708A9D71ECEC1910B63C3FAA5BF60CD7E199~Freya,$5CECC5C30ACC4B3DE462792323967087CC53D947~PrivacyRepublic0001 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:37 1548934237.31 650 CIRC 32 BUILT $210001EE8A8E086983A3BD48F0D936996451C9CB~MrRelay,$88C3708A9D71ECEC1910B63C3FAA5BF60CD7E199~Freya,$5CECC5C30ACC4B3DE462792323967087CC53D947~PrivacyRepublic0001 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:36.805446
+2019-01-31 11:30:37 1548934237.81 650 BW 237155 10721
+2019-01-31 11:30:37 1548934237.81 650 STREAM_BW 79 0 225392 2019-01-31T11:30:37.807485
+2019-01-31 11:30:37 1548934237.81 650 CIRC_BW ID=25 READ=231086 WRITTEN=7126 TIME=2019-01-31T11:30:37.807495 DELIVERED_READ=225392 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:30:37 1548934237.81 650 CIRC_BW ID=32 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:37.807499 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:30:38 1548934238.81 650 BW 306471 9658
+2019-01-31 11:30:38 1548934238.81 650 STREAM_BW 79 0 293418 2019-01-31T11:30:38.805912
+2019-01-31 11:30:38 1548934238.81 650 CIRC_BW ID=25 READ=300819 WRITTEN=8653 TIME=2019-01-31T11:30:38.805921 DELIVERED_READ=293418 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:39 1548934239.81 650 BW 420856 14089
+2019-01-31 11:30:39 1548934239.81 650 STREAM_BW 79 0 401682 2019-01-31T11:30:39.807281
+2019-01-31 11:30:39 1548934239.81 650 CIRC_BW ID=25 READ=411781 WRITTEN=12725 TIME=2019-01-31T11:30:39.807291 DELIVERED_READ=401682 OVERHEAD_READ=1200 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=12450
+2019-01-31 11:30:39 1548934239.81 650 CIRC 1 CLOSED $ADB2C26629643DBB9F8FE0096E7D16F9414B4F8D~Digitalcourage3ip2 BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:37.960246 REASON=FINISHED
+2019-01-31 11:30:40 1548934240.81 650 BW 288417 10288
+2019-01-31 11:30:40 1548934240.81 650 STREAM_BW 79 0 275042 2019-01-31T11:30:40.805256
+2019-01-31 11:30:40 1548934240.81 650 CIRC_BW ID=25 READ=281986 WRITTEN=8653 TIME=2019-01-31T11:30:40.805266 DELIVERED_READ=275042 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:41 1548934241.81 650 BW 371989 11374
+2019-01-31 11:30:41 1548934241.81 650 STREAM_BW 79 0 355966 2019-01-31T11:30:41.806136
+2019-01-31 11:30:41 1548934241.81 650 CIRC_BW ID=25 READ=364953 WRITTEN=10689 TIME=2019-01-31T11:30:41.806145 DELIVERED_READ=355966 OVERHEAD_READ=1100 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:30:42 1548934242.81 650 BW 289689 10831
+2019-01-31 11:30:42 1548934242.81 650 STREAM_BW 79 0 277532 2019-01-31T11:30:42.806493
+2019-01-31 11:30:42 1548934242.81 650 CIRC_BW ID=25 READ=284531 WRITTEN=8144 TIME=2019-01-31T11:30:42.806504 DELIVERED_READ=277532 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:30:43 1548934243.81 650 BW 309987 9745
+2019-01-31 11:30:43 1548934243.81 650 STREAM_BW 79 0 296406 2019-01-31T11:30:43.806444
+2019-01-31 11:30:43 1548934243.81 650 CIRC_BW ID=25 READ=303873 WRITTEN=9162 TIME=2019-01-31T11:30:43.806453 DELIVERED_READ=296406 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:44 1548934244.81 650 BW 371083 13575
+2019-01-31 11:30:44 1548934244.81 650 STREAM_BW 79 0 354522 2019-01-31T11:30:44.804736
+2019-01-31 11:30:44 1548934244.81 650 CIRC_BW ID=25 READ=363426 WRITTEN=11198 TIME=2019-01-31T11:30:44.804746 DELIVERED_READ=354522 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10956
+2019-01-31 11:30:45 1548934245.07 650 CIRC 8 CLOSED $13B2354C74CCE29815B4E1F692F2F0E86C7F13DD~TORtitan BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517131 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:45 1548934245.70 650 CIRC 12 CLOSED $489D94333DF66D57FFE34D9D59CC2D97E2CB0053~txtfileTorNode65536 BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517371 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:45 1548934245.81 650 BW 296002 9774
+2019-01-31 11:30:45 1548934245.81 650 STREAM_BW 79 0 280520 2019-01-31T11:30:45.806530
+2019-01-31 11:30:45 1548934245.81 650 CIRC_BW ID=25 READ=287585 WRITTEN=8653 TIME=2019-01-31T11:30:45.806539 DELIVERED_READ=280520 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:45 1548934245.97 650 CIRC 16 CLOSED $58F3E2956EABB81F673E2FB90E16E001DB4AC3AE~torrelaymirror BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:44.031825 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:46 1548934246.77 650 CIRC 2 CLOSED $4EB55679FA91363B97372554F8DC7C63F4E5B101~torpidsDEisppro BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.012177 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:46 1548934246.81 650 BW 330222 11374
+2019-01-31 11:30:46 1548934246.81 650 STREAM_BW 79 0 315230 2019-01-31T11:30:46.807125
+2019-01-31 11:30:46 1548934246.81 650 CIRC_BW ID=25 READ=323215 WRITTEN=9671 TIME=2019-01-31T11:30:46.807134 DELIVERED_READ=315230 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:47 1548934247.81 650 BW 223317 7030
+2019-01-31 11:30:47 1548934247.81 650 STREAM_BW 79 0 211996 2019-01-31T11:30:47.806631
+2019-01-31 11:30:47 1548934247.82 650 CIRC_BW ID=25 READ=217343 WRITTEN=6617 TIME=2019-01-31T11:30:47.806641 DELIVERED_READ=211996 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:30:47 1548934247.82 650 CIRC 33 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:47 1548934247.82 650 ORCONN $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01 LAUNCHED ID=81
+2019-01-31 11:30:47 1548934247.94 650 ORCONN $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01 CONNECTED ID=81
+2019-01-31 11:30:47 1548934247.97 650 CIRC 33 EXTENDED $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:48 1548934248.12 650 CIRC 13 CLOSED $77A56CB237740E24AEA2D61C8C8936232AFC1BD8~TheEpTicZeus BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517431 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:48 1548934248.14 650 CIRC 33 EXTENDED $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01,$D9DE3C9ED311A5FE050076060E3EA1F7F17FDCE1~FastR42 BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:48 1548934248.31 650 CIRC 33 EXTENDED $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01,$D9DE3C9ED311A5FE050076060E3EA1F7F17FDCE1~FastR42,$952AA35B675392156D71868D17E0CC288E0E0562~pingi BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:48 1548934248.31 650 CIRC 33 BUILT $BCC9FA5994200032E9CD04866B823B6D929F22A8~DuesseldorfTor01,$D9DE3C9ED311A5FE050076060E3EA1F7F17FDCE1~FastR42,$952AA35B675392156D71868D17E0CC288E0E0562~pingi BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:47.806693
+2019-01-31 11:30:48 1548934248.81 650 BW 339862 12897
+2019-01-31 11:30:48 1548934248.81 650 STREAM_BW 79 0 321256 2019-01-31T11:30:48.807189
+2019-01-31 11:30:48 1548934248.81 650 CIRC_BW ID=33 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:48.807199 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:30:48 1548934248.81 650 CIRC_BW ID=25 READ=329323 WRITTEN=9671 TIME=2019-01-31T11:30:48.807204 DELIVERED_READ=321256 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:30:48 1548934248.93 650 CIRC 3 CLOSED $51826F7C88BD7BFF3B31E0C01C44F7821DF673D3~ArguteTor BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.516773 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:49 1548934249.63 650 CIRC 17 CLOSED $3BEE3F1C81191F82BED91480FFD6261CF7FC366D~Arrakis BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:45.169742 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:49 1548934249.78 650 CIRC 6 CLOSED $C49A177510CAA653DA6727BF0E07FB7F56A0F09D~Unnamed BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517009 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:49 1548934249.81 650 BW 244174 7573
+2019-01-31 11:30:49 1548934249.81 650 STREAM_BW 79 0 231866 2019-01-31T11:30:49.805807
+2019-01-31 11:30:49 1548934249.81 650 CIRC_BW ID=25 READ=237703 WRITTEN=7126 TIME=2019-01-31T11:30:49.805816 DELIVERED_READ=231866 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:30:49 1548934249.97 650 CIRC 15 CLOSED $5247C1EE183E5E68560D7377B36245E0FB3BB215~LouYesDoll BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517548 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:50 1548934250.81 650 BW 318810 10860
+2019-01-31 11:30:50 1548934250.81 650 STREAM_BW 79 0 304324 2019-01-31T11:30:50.806644
+2019-01-31 11:30:50 1548934250.81 650 CIRC_BW ID=25 READ=312017 WRITTEN=9162 TIME=2019-01-31T11:30:50.806654 DELIVERED_READ=304324 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:30:51 1548934251.15 650 STREAM_BW 79 0 62548 2019-01-31T11:30:51.145363
+2019-01-31 11:30:51 1548934251.15 650 STREAM 79 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=DONE
+2019-01-31 11:30:51 1548934251.15 650 STREAM 82 NEW 0 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 SOURCE_ADDR=127.0.0.1:36428 PURPOSE=USER
+2019-01-31 11:30:51 1548934251.15 650 STREAM 82 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:30:51 1548934251.38 650 CIRC 18 CLOSED $A98ADD972045D3CCAEE65C788C3F175BAEA3E324~2Contribute BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:46.665374 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:51 1548934251.43 650 CIRC 14 CLOSED $5B1F0DAF378A1FAFCFD5FA9CDC66D1023DC0276E~fastlane BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517490 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:51 1548934251.81 650 BW 310937 6516
+2019-01-31 11:30:51 1548934251.81 650 STREAM_BW 82 72 2 2019-01-31T11:30:51.805008
+2019-01-31 11:30:51 1548934251.81 650 CIRC_BW ID=25 READ=303873 WRITTEN=5599 TIME=2019-01-31T11:30:51.805016 DELIVERED_READ=296406 OVERHEAD_READ=900 DELIVERED_WRITTEN=7 OVERHEAD_WRITTEN=5471
+2019-01-31 11:30:51 1548934251.83 650 CIRC 11 CLOSED $5AD4E3F36B803500AE5A724ACD4A3BCCE3BEFA14~EvilMoe BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517312 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:51 1548934251.92 650 STREAM 82 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:30:52 1548934252.81 650 BW 24097 1629
+2019-01-31 11:30:52 1548934252.81 650 STREAM_BW 82 52 15975 2019-01-31T11:30:52.807209
+2019-01-31 11:30:52 1548934252.81 650 CIRC_BW ID=25 READ=21378 WRITTEN=509 TIME=2019-01-31T11:30:52.807219 DELIVERED_READ=19949 OVERHEAD_READ=967 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=446
+2019-01-31 11:30:53 1548934253.49 650 CIRC 4 CLOSED $D1E706B9021A0BF8E9663DB207D9D9EC03A70DAC~bradpit BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.516891 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:53 1548934253.59 650 CIRC 7 CLOSED $12CF6DB4DAE106206D6C6B09988E865C0509843B~ATZv5 BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517065 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:53 1548934253.81 650 BW 279856 9716
+2019-01-31 11:30:53 1548934253.81 650 STREAM_BW 82 0 263588 2019-01-31T11:30:53.805682
+2019-01-31 11:30:53 1548934253.81 650 CIRC_BW ID=25 READ=273842 WRITTEN=8653 TIME=2019-01-31T11:30:53.805689 DELIVERED_READ=267074 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:30:54 1548934254.81 650 BW 470380 15059
+2019-01-31 11:30:54 1548934254.81 650 STREAM_BW 82 0 453822 2019-01-31T11:30:54.807166
+2019-01-31 11:30:54 1548934254.81 650 CIRC_BW ID=25 READ=461663 WRITTEN=13743 TIME=2019-01-31T11:30:54.807175 DELIVERED_READ=450336 OVERHEAD_READ=1350 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=13446
+2019-01-31 11:30:55 1548934255.81 650 BW 147789 5973
+2019-01-31 11:30:55 1548934255.81 650 STREAM_BW 82 0 136998 2019-01-31T11:30:55.806056
+2019-01-31 11:30:55 1548934255.81 650 CIRC_BW ID=25 READ=144047 WRITTEN=4581 TIME=2019-01-31T11:30:55.806064 DELIVERED_READ=140484 OVERHEAD_READ=450 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4482
+2019-01-31 11:30:56 1548934256.55 650 CIRC 10 CLOSED $B4B900AD50134E9528D7CDF665ABDADABF53A9B7~RenderLab BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517252 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:56 1548934256.69 650 CIRC 9 CLOSED $4B68D0E5392ED6F3469A37880631353A96558631~TORion BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.517194 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:56 1548934256.81 650 BW 147848 4887
+2019-01-31 11:30:56 1548934256.81 650 STREAM_BW 82 0 140534 2019-01-31T11:30:56.806869
+2019-01-31 11:30:56 1548934256.81 650 CIRC_BW ID=25 READ=140484 WRITTEN=3563 TIME=2019-01-31T11:30:56.806878 DELIVERED_READ=137048 OVERHEAD_READ=400 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=3486
+2019-01-31 11:30:57 1548934257.30 650 CIRC 5 CLOSED $BBD8F4DF8FF5C69A6A989DB8C1EE2CA7ADFE0755~sprucegoose BUILD_FLAGS=ONEHOP_TUNNEL,IS_INTERNAL,NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:29:43.516951 REASON=DESTROYED REMOTE_REASON=FINISHED
+2019-01-31 11:30:57 1548934257.81 650 BW 330224 10744
+2019-01-31 11:30:57 1548934257.81 650 STREAM_BW 82 0 318218 2019-01-31T11:30:57.804332
+2019-01-31 11:30:57 1548934257.81 650 CIRC_BW ID=25 READ=326269 WRITTEN=10180 TIME=2019-01-31T11:30:57.804342 DELIVERED_READ=318218 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:30:58 1548934258.82 650 BW 186281 5944
+2019-01-31 11:30:58 1548934258.82 650 STREAM_BW 82 0 175792 2019-01-31T11:30:58.805173
+2019-01-31 11:30:58 1548934258.82 650 CIRC_BW ID=25 READ=180186 WRITTEN=5090 TIME=2019-01-31T11:30:58.805181 DELIVERED_READ=175792 OVERHEAD_READ=500 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:30:58 1548934258.82 650 CIRC 34 LAUNCHED BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:58 1548934258.82 650 ORCONN $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust LAUNCHED ID=83
+2019-01-31 11:30:58 1548934258.88 650 ORCONN $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust CONNECTED ID=83
+2019-01-31 11:30:58 1548934258.90 650 CIRC 34 EXTENDED $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:58 1548934258.96 650 CIRC 34 EXTENDED $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust,$169535CC4C75FF79C6D548D41720064EE4FE61D2~bradburn BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:59 1548934259.32 650 CIRC 34 EXTENDED $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust,$169535CC4C75FF79C6D548D41720064EE4FE61D2~bradburn,$5974B3F4C66D83BBC9622E0F0F023FE48428DB9B~amazonas BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:59 1548934259.33 650 CIRC 34 BUILT $C1B6AFE18C6F65631A4EF67E1A1918B59316F59F~KagamineLenStardust,$169535CC4C75FF79C6D548D41720064EE4FE61D2~bradburn,$5974B3F4C66D83BBC9622E0F0F023FE48428DB9B~amazonas BUILD_FLAGS=NEED_CAPACITY PURPOSE=GENERAL TIME_CREATED=2019-01-31T11:30:58.805251
+2019-01-31 11:30:59 1548934259.81 650 BW 250227 11163
+2019-01-31 11:30:59 1548934259.81 650 STREAM_BW 82 0 235800 2019-01-31T11:30:59.804635
+2019-01-31 11:30:59 1548934259.81 650 CIRC_BW ID=25 READ=241775 WRITTEN=7635 TIME=2019-01-31T11:30:59.804644 DELIVERED_READ=235800 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:30:59 1548934259.81 650 CIRC_BW ID=34 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:30:59.804649 DELIVERED_READ=132 OVERHEAD_READ=864 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:31:00 1548934260.81 650 BW 298342 9144
+2019-01-31 11:31:00 1548934260.81 650 STREAM_BW 82 0 284504 2019-01-31T11:31:00.804583
+2019-01-31 11:31:00 1548934260.81 650 CIRC_BW ID=25 READ=291657 WRITTEN=8653 TIME=2019-01-31T11:31:00.804592 DELIVERED_READ=284504 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:01 1548934261.81 650 BW 357354 11374
+2019-01-31 11:31:01 1548934261.81 650 STREAM_BW 82 0 338088 2019-01-31T11:31:01.806199
+2019-01-31 11:31:01 1548934261.81 650 CIRC_BW ID=25 READ=346629 WRITTEN=10689 TIME=2019-01-31T11:31:01.806208 DELIVERED_READ=338088 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10458
+2019-01-31 11:31:02 1548934262.81 650 BW 324277 10317
+2019-01-31 11:31:02 1548934262.81 650 STREAM_BW 82 0 312790 2019-01-31T11:31:02.805801
+2019-01-31 11:31:02 1548934262.81 650 CIRC_BW ID=25 READ=320670 WRITTEN=9162 TIME=2019-01-31T11:31:02.805810 DELIVERED_READ=312790 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:03 1548934263.81 650 BW 288365 10317
+2019-01-31 11:31:03 1548934263.81 650 STREAM_BW 82 0 276038 2019-01-31T11:31:03.804414
+2019-01-31 11:31:03 1548934263.81 650 CIRC_BW ID=25 READ=283004 WRITTEN=8653 TIME=2019-01-31T11:31:03.804423 DELIVERED_READ=276038 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:04 1548934264.81 650 BW 110012 4315
+2019-01-31 11:31:04 1548934264.81 650 STREAM_BW 82 0 104280 2019-01-31T11:31:04.804494
+2019-01-31 11:31:04 1548934264.81 650 CIRC_BW ID=25 READ=106890 WRITTEN=3563 TIME=2019-01-31T11:31:04.804503 DELIVERED_READ=104280 OVERHEAD_READ=300 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=3486
+2019-01-31 11:31:05 1548934265.81 650 BW 402091 11888
+2019-01-31 11:31:05 1548934265.81 650 STREAM_BW 82 0 383804 2019-01-31T11:31:05.805826
+2019-01-31 11:31:05 1548934265.81 650 CIRC_BW ID=25 READ=393457 WRITTEN=11198 TIME=2019-01-31T11:31:05.805835 DELIVERED_READ=383804 OVERHEAD_READ=1150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=10956
+2019-01-31 11:31:06 1548934266.81 650 BW 307159 10860
+2019-01-31 11:31:06 1548934266.81 650 STREAM_BW 82 0 293916 2019-01-31T11:31:06.804631
+2019-01-31 11:31:06 1548934266.81 650 CIRC_BW ID=25 READ=301328 WRITTEN=9162 TIME=2019-01-31T11:31:06.804640 DELIVERED_READ=293916 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:07 1548934267.81 650 BW 397401 13003
+2019-01-31 11:31:07 1548934267.81 650 STREAM_BW 82 0 379272 2019-01-31T11:31:07.804803
+2019-01-31 11:31:07 1548934267.81 650 CIRC_BW ID=25 READ=388876 WRITTEN=11707 TIME=2019-01-31T11:31:07.804813 DELIVERED_READ=379272 OVERHEAD_READ=1200 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=11454
+2019-01-31 11:31:08 1548934268.81 650 BW 264329 8688
+2019-01-31 11:31:08 1548934268.81 650 STREAM_BW 82 0 252234 2019-01-31T11:31:08.804521
+2019-01-31 11:31:08 1548934268.81 650 CIRC_BW ID=25 READ=258572 WRITTEN=7635 TIME=2019-01-31T11:31:08.804532 DELIVERED_READ=252234 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:09 1548934269.81 650 BW 310266 9716
+2019-01-31 11:31:09 1548934269.81 650 STREAM_BW 82 0 294912 2019-01-31T11:31:09.806098
+2019-01-31 11:31:09 1548934269.81 650 CIRC_BW ID=25 READ=302346 WRITTEN=9162 TIME=2019-01-31T11:31:09.806109 DELIVERED_READ=294912 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:10 1548934270.81 650 BW 203952 7573
+2019-01-31 11:31:10 1548934270.81 650 STREAM_BW 82 0 191628 2019-01-31T11:31:10.805870
+2019-01-31 11:31:10 1548934270.81 650 CIRC_BW ID=25 READ=196474 WRITTEN=6108 TIME=2019-01-31T11:31:10.805879 DELIVERED_READ=191628 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:31:10 1548934270.81 650 CIRC 23 CLOSED $3CE90527D5712296B58E7EB7CD57F7D388D25FBB~modupe,$1B9FACF25E17D26E307EA7CFA7D455B144B032E5~CalyxInstitute07,$87C08DDFD32C62F3C56D371F9774D27BFDBB807B~Unnamed,$157106182B9F33663CAEDCD883D302316331DE5E~Vor BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:29:51.154893 REASON=FINISHED
+2019-01-31 11:31:11 1548934271.81 650 BW 313992 10860
+2019-01-31 11:31:11 1548934271.81 650 STREAM_BW 82 0 300390 2019-01-31T11:31:11.804286
+2019-01-31 11:31:11 1548934271.81 650 CIRC_BW ID=25 READ=307945 WRITTEN=9162 TIME=2019-01-31T11:31:11.804295 DELIVERED_READ=300390 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:12 1548934272.19 650 STREAM_BW 82 0 88892 2019-01-31T11:31:12.192706
+2019-01-31 11:31:12 1548934272.19 650 STREAM 82 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:31:12 1548934272.19 650 STREAM 84 NEW 0 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 SOURCE_ADDR=127.0.0.1:36436 PURPOSE=USER
+2019-01-31 11:31:12 1548934272.20 650 STREAM 84 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:31:12 1548934272.81 650 BW 91530 4344
+2019-01-31 11:31:12 1548934272.81 650 STREAM_BW 84 72 2 2019-01-31T11:31:12.804721
+2019-01-31 11:31:12 1548934272.81 650 CIRC_BW ID=25 READ=93656 WRITTEN=3563 TIME=2019-01-31T11:31:12.804731 DELIVERED_READ=90374 OVERHEAD_READ=1258 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=3480
+2019-01-31 11:31:12 1548934272.94 650 STREAM 84 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:31:13 1548934273.81 650 BW 24805 1086
+2019-01-31 11:31:13 1548934273.81 650 STREAM_BW 84 52 18415 2019-01-31T11:31:13.804663
+2019-01-31 11:31:13 1548934273.81 650 CIRC_BW ID=25 READ=23923 WRITTEN=509 TIME=2019-01-31T11:31:13.804670 DELIVERED_READ=22389 OVERHEAD_READ=1017 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=446
+2019-01-31 11:31:14 1548934274.81 650 BW 306963 12489
+2019-01-31 11:31:14 1548934274.81 650 STREAM_BW 84 0 296406 2019-01-31T11:31:14.805530
+2019-01-31 11:31:14 1548934274.81 650 CIRC_BW ID=25 READ=299801 WRITTEN=9162 TIME=2019-01-31T11:31:14.805540 DELIVERED_READ=292422 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:15 1548934275.81 650 BW 327598 10317
+2019-01-31 11:31:15 1548934275.81 650 STREAM_BW 84 0 314284 2019-01-31T11:31:15.805519
+2019-01-31 11:31:15 1548934275.81 650 CIRC_BW ID=25 READ=322197 WRITTEN=9671 TIME=2019-01-31T11:31:15.805529 DELIVERED_READ=314284 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:31:16 1548934276.81 650 BW 348212 11946
+2019-01-31 11:31:16 1548934276.81 650 STREAM_BW 84 0 332660 2019-01-31T11:31:16.804613
+2019-01-31 11:31:16 1548934276.81 650 CIRC_BW ID=25 READ=341030 WRITTEN=10180 TIME=2019-01-31T11:31:16.804622 DELIVERED_READ=332660 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:17 1548934277.81 650 BW 319762 11403
+2019-01-31 11:31:17 1548934277.81 650 STREAM_BW 84 0 306316 2019-01-31T11:31:17.805072
+2019-01-31 11:31:17 1548934277.81 650 CIRC_BW ID=25 READ=314053 WRITTEN=9671 TIME=2019-01-31T11:31:17.805081 DELIVERED_READ=306316 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:31:18 1548934278.81 650 BW 348287 12489
+2019-01-31 11:31:18 1548934278.81 650 STREAM_BW 84 0 332660 2019-01-31T11:31:18.805374
+2019-01-31 11:31:18 1548934278.81 650 CIRC_BW ID=25 READ=341030 WRITTEN=10180 TIME=2019-01-31T11:31:18.805384 DELIVERED_READ=332660 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:19 1548934279.81 650 BW 315014 9774
+2019-01-31 11:31:19 1548934279.81 650 STREAM_BW 84 0 301336 2019-01-31T11:31:19.805787
+2019-01-31 11:31:19 1548934279.81 650 CIRC_BW ID=25 READ=308963 WRITTEN=9162 TIME=2019-01-31T11:31:19.805797 DELIVERED_READ=301336 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:20 1548934280.81 650 BW 292520 10288
+2019-01-31 11:31:20 1548934280.81 650 STREAM_BW 84 0 278528 2019-01-31T11:31:20.806243
+2019-01-31 11:31:20 1548934280.81 650 CIRC_BW ID=25 READ=285549 WRITTEN=8653 TIME=2019-01-31T11:31:20.806251 DELIVERED_READ=278528 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:21 1548934281.81 650 BW 349080 11946
+2019-01-31 11:31:21 1548934281.81 650 STREAM_BW 84 0 329672 2019-01-31T11:31:21.806059
+2019-01-31 11:31:21 1548934281.81 650 CIRC_BW ID=25 READ=337976 WRITTEN=10180 TIME=2019-01-31T11:31:21.806067 DELIVERED_READ=329672 OVERHEAD_READ=1000 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:22 1548934282.81 650 BW 324309 10860
+2019-01-31 11:31:22 1548934282.81 650 STREAM_BW 84 0 312790 2019-01-31T11:31:22.805224
+2019-01-31 11:31:22 1548934282.81 650 CIRC_BW ID=25 READ=320670 WRITTEN=9671 TIME=2019-01-31T11:31:22.805233 DELIVERED_READ=312790 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:31:23 1548934283.81 650 BW 301105 10317
+2019-01-31 11:31:23 1548934283.81 650 STREAM_BW 84 0 285500 2019-01-31T11:31:23.804343
+2019-01-31 11:31:23 1548934283.81 650 CIRC_BW ID=25 READ=292675 WRITTEN=8653 TIME=2019-01-31T11:31:23.804351 DELIVERED_READ=285500 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:24 1548934284.81 650 BW 308471 10860
+2019-01-31 11:31:24 1548934284.81 650 STREAM_BW 84 0 297900 2019-01-31T11:31:24.806065
+2019-01-31 11:31:24 1548934284.81 650 CIRC_BW ID=25 READ=305400 WRITTEN=9162 TIME=2019-01-31T11:31:24.806075 DELIVERED_READ=297900 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:25 1548934285.81 650 BW 301604 9202
+2019-01-31 11:31:25 1548934285.81 650 STREAM_BW 84 0 288936 2019-01-31T11:31:25.805254
+2019-01-31 11:31:25 1548934285.81 650 CIRC_BW ID=25 READ=296238 WRITTEN=8653 TIME=2019-01-31T11:31:25.805264 DELIVERED_READ=288936 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:26 1548934286.81 650 BW 219072 7059
+2019-01-31 11:31:26 1548934286.81 650 STREAM_BW 84 0 206020 2019-01-31T11:31:26.804554
+2019-01-31 11:31:26 1548934286.81 650 CIRC_BW ID=25 READ=211235 WRITTEN=6617 TIME=2019-01-31T11:31:26.804561 DELIVERED_READ=206020 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:31:27 1548934287.81 650 BW 333663 12460
+2019-01-31 11:31:27 1548934287.81 650 STREAM_BW 84 0 321754 2019-01-31T11:31:27.805105
+2019-01-31 11:31:27 1548934287.81 650 CIRC_BW ID=25 READ=329832 WRITTEN=10180 TIME=2019-01-31T11:31:27.805115 DELIVERED_READ=321754 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:28 1548934288.37 650 CIRC 29 CLOSED $30C7D940114FF2C5FAA34C02CDEF2A0C26ACC4C7~nortor1,$4A99D15855E0781771780961C367B4F83D2F17B7~VivaLuxx,$34DF8443F6ACD1A543AAA10A7621A389E31A4422~livia BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:30:14.685178 REASON=DESTROYED REMOTE_REASON=NONE
+2019-01-31 11:31:28 1548934288.81 650 BW 170640 6487
+2019-01-31 11:31:28 1548934288.81 650 STREAM_BW 84 0 162346 2019-01-31T11:31:28.804486
+2019-01-31 11:31:28 1548934288.81 650 CIRC_BW ID=25 READ=166443 WRITTEN=4581 TIME=2019-01-31T11:31:28.804496 DELIVERED_READ=162346 OVERHEAD_READ=500 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4482
+2019-01-31 11:31:29 1548934289.81 650 BW 226583 8145
+2019-01-31 11:31:29 1548934289.81 650 STREAM_BW 84 0 212494 2019-01-31T11:31:29.804818
+2019-01-31 11:31:29 1548934289.81 650 CIRC_BW ID=25 READ=217852 WRITTEN=6617 TIME=2019-01-31T11:31:29.804827 DELIVERED_READ=212494 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:31:30 1548934290.81 650 BW 348055 11403
+2019-01-31 11:31:30 1548934290.81 650 STREAM_BW 84 0 335598 2019-01-31T11:31:30.804289
+2019-01-31 11:31:30 1548934290.81 650 CIRC_BW ID=25 READ=344084 WRITTEN=10180 TIME=2019-01-31T11:31:30.804299 DELIVERED_READ=335598 OVERHEAD_READ=1050 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9960
+2019-01-31 11:31:31 1548934291.81 650 BW 316036 9774
+2019-01-31 11:31:31 1548934291.81 650 STREAM_BW 84 0 301386 2019-01-31T11:31:31.804896
+2019-01-31 11:31:31 1548934291.81 650 CIRC_BW ID=25 READ=308963 WRITTEN=9162 TIME=2019-01-31T11:31:31.804905 DELIVERED_READ=301386 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8964
+2019-01-31 11:31:32 1548934292.15 650 STREAM_BW 84 0 5976 2019-01-31T11:31:32.144510
+2019-01-31 11:31:32 1548934292.15 650 STREAM 84 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=END REMOTE_REASON=DONE
+2019-01-31 11:31:32 1548934292.15 650 STREAM 85 NEW 0 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 SOURCE_ADDR=127.0.0.1:36440 PURPOSE=USER
+2019-01-31 11:31:32 1548934292.15 650 STREAM 85 SENTCONNECT 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:31:32 1548934292.81 650 BW 8918 1086
+2019-01-31 11:31:32 1548934292.81 650 STREAM_BW 85 72 2 2019-01-31T11:31:32.804754
+2019-01-31 11:31:32 1548934292.81 650 CIRC_BW ID=25 READ=9162 WRITTEN=1018 TIME=2019-01-31T11:31:32.804763 DELIVERED_READ=7956 OVERHEAD_READ=1008 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=990
+2019-01-31 11:31:32 1548934292.88 650 STREAM 85 SUCCEEDED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080
+2019-01-31 11:31:33 1548934293.81 650 BW 65643 3801
+2019-01-31 11:31:33 1548934293.81 650 STREAM_BW 85 52 59649 2019-01-31T11:31:33.805075
+2019-01-31 11:31:33 1548934293.81 650 CIRC_BW ID=25 READ=62098 WRITTEN=2545 TIME=2019-01-31T11:31:33.805084 DELIVERED_READ=59639 OVERHEAD_READ=1117 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=2438
+2019-01-31 11:31:34 1548934294.81 650 BW 305707 9774
+2019-01-31 11:31:34 1548934294.81 650 STREAM_BW 85 0 292920 2019-01-31T11:31:34.805274
+2019-01-31 11:31:34 1548934294.81 650 CIRC_BW ID=25 READ=300310 WRITTEN=8653 TIME=2019-01-31T11:31:34.805283 DELIVERED_READ=292920 OVERHEAD_READ=900 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:31:35 1548934295.81 650 BW 329923 11403
+2019-01-31 11:31:35 1548934295.81 650 STREAM_BW 85 0 314284 2019-01-31T11:31:35.804880
+2019-01-31 11:31:35 1548934295.81 650 CIRC_BW ID=25 READ=322197 WRITTEN=9671 TIME=2019-01-31T11:31:35.804889 DELIVERED_READ=314284 OVERHEAD_READ=950 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=9462
+2019-01-31 11:31:36 1548934296.81 650 BW 274545 10317
+2019-01-31 11:31:36 1548934296.81 650 STREAM_BW 85 0 262642 2019-01-31T11:31:36.804647
+2019-01-31 11:31:36 1548934296.81 650 CIRC_BW ID=25 READ=269261 WRITTEN=8144 TIME=2019-01-31T11:31:36.804658 DELIVERED_READ=262642 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:31:37 1548934297.81 650 BW 220742 6516
+2019-01-31 11:31:37 1548934297.81 650 STREAM_BW 85 0 210004 2019-01-31T11:31:37.804318
+2019-01-31 11:31:37 1548934297.81 650 CIRC_BW ID=25 READ=215307 WRITTEN=6108 TIME=2019-01-31T11:31:37.804327 DELIVERED_READ=210004 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:31:38 1548934298.81 650 BW 231192 7602
+2019-01-31 11:31:38 1548934298.81 650 STREAM_BW 85 0 222404 2019-01-31T11:31:38.804656
+2019-01-31 11:31:38 1548934298.81 650 CIRC_BW ID=25 READ=228032 WRITTEN=7126 TIME=2019-01-31T11:31:38.804666 DELIVERED_READ=222404 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:31:39 1548934299.81 650 BW 229542 7602
+2019-01-31 11:31:39 1548934299.81 650 STREAM_BW 85 0 216976 2019-01-31T11:31:39.804368
+2019-01-31 11:31:39 1548934299.81 650 CIRC_BW ID=25 READ=222433 WRITTEN=6617 TIME=2019-01-31T11:31:39.804377 DELIVERED_READ=216976 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:31:40 1548934300.81 650 BW 266948 9231
+2019-01-31 11:31:40 1548934300.81 650 STREAM_BW 85 0 254724 2019-01-31T11:31:40.804276
+2019-01-31 11:31:40 1548934300.81 650 CIRC_BW ID=25 READ=261117 WRITTEN=7635 TIME=2019-01-31T11:31:40.804284 DELIVERED_READ=254724 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:41 1548934301.81 650 BW 216575 9231
+2019-01-31 11:31:41 1548934301.81 650 STREAM_BW 85 0 208510 2019-01-31T11:31:41.804940
+2019-01-31 11:31:41 1548934301.81 650 CIRC_BW ID=25 READ=213780 WRITTEN=7126 TIME=2019-01-31T11:31:41.804949 DELIVERED_READ=208510 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:31:41 1548934301.81 650 CIRC 28 CLOSED $0D7C69551F9186DB589BDF00858314AC136A33DA~lara,$84ABA08AE6BEA7431ADF52ADA8A94FCB18209E11~tux3,$C5924D853D180819F4A4D9F1CF9505F4D5083DCC~torniquet,$BB833DEB882AF8AC80C2C67DB2AC4F7012CB1171~eddie4nl2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:30:13.640317 REASON=FINISHED
+2019-01-31 11:31:42 1548934302.81 650 BW 287631 10317
+2019-01-31 11:31:42 1548934302.81 650 STREAM_BW 85 0 274544 2019-01-31T11:31:42.804949
+2019-01-31 11:31:42 1548934302.81 650 CIRC_BW ID=25 READ=281477 WRITTEN=8144 TIME=2019-01-31T11:31:42.804957 DELIVERED_READ=274544 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:31:43 1548934303.81 650 BW 254446 8145
+2019-01-31 11:31:43 1548934303.81 650 STREAM_BW 85 0 245262 2019-01-31T11:31:43.804612
+2019-01-31 11:31:43 1548934303.81 650 CIRC_BW ID=25 READ=251446 WRITTEN=7635 TIME=2019-01-31T11:31:43.804622 DELIVERED_READ=245262 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:44 1548934304.81 650 BW 258980 9774
+2019-01-31 11:31:44 1548934304.81 650 STREAM_BW 85 0 246756 2019-01-31T11:31:44.804752
+2019-01-31 11:31:44 1548934304.81 650 CIRC_BW ID=25 READ=252973 WRITTEN=7635 TIME=2019-01-31T11:31:44.804762 DELIVERED_READ=246756 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:45 1548934305.81 650 BW 225974 8116
+2019-01-31 11:31:45 1548934305.81 650 STREAM_BW 85 0 216478 2019-01-31T11:31:45.805258
+2019-01-31 11:31:45 1548934305.81 650 CIRC_BW ID=25 READ=221924 WRITTEN=6108 TIME=2019-01-31T11:31:45.805268 DELIVERED_READ=216478 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:31:46 1548934306.81 650 BW 53348 2715
+2019-01-31 11:31:46 1548934306.81 650 STREAM_BW 85 0 49650 2019-01-31T11:31:46.804838
+2019-01-31 11:31:46 1548934306.81 650 CIRC_BW ID=25 READ=50900 WRITTEN=1527 TIME=2019-01-31T11:31:46.804848 DELIVERED_READ=49650 OVERHEAD_READ=150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=1494
+2019-01-31 11:31:47 1548934307.81 650 BW 241059 8630
+2019-01-31 11:31:47 1548934307.81 650 STREAM_BW 85 0 229874 2019-01-31T11:31:47.804349
+2019-01-31 11:31:47 1548934307.81 650 CIRC_BW ID=25 READ=235667 WRITTEN=7635 TIME=2019-01-31T11:31:47.804359 DELIVERED_READ=229874 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:31:48 1548934308.81 650 BW 182684 5430
+2019-01-31 11:31:48 1548934308.81 650 STREAM_BW 85 0 174746 2019-01-31T11:31:48.805153
+2019-01-31 11:31:48 1548934308.81 650 CIRC_BW ID=25 READ=179168 WRITTEN=5090 TIME=2019-01-31T11:31:48.805163 DELIVERED_READ=174746 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:31:49 1548934309.80 650 BW 197445 7059
+2019-01-31 11:31:49 1548934309.80 650 STREAM_BW 85 0 185204 2019-01-31T11:31:49.802976
+2019-01-31 11:31:49 1548934309.80 650 CIRC_BW ID=25 READ=189857 WRITTEN=5599 TIME=2019-01-31T11:31:49.802986 DELIVERED_READ=185204 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5478
+2019-01-31 11:31:50 1548934310.80 650 BW 196874 8145
+2019-01-31 11:31:50 1548934310.80 650 STREAM_BW 85 0 191130 2019-01-31T11:31:50.803015
+2019-01-31 11:31:50 1548934310.80 650 CIRC_BW ID=25 READ=195965 WRITTEN=6108 TIME=2019-01-31T11:31:50.803025 DELIVERED_READ=191130 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:31:51 1548934311.15 650 STREAM_BW 85 0 43226 2019-01-31T11:31:51.145419
+2019-01-31 11:31:51 1548934311.15 650 STREAM 85 CLOSED 25 5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad.onion:8080 REASON=DONE
+2019-01-31 11:31:51 1548934311.18 650 STREAM 86 NEW 0 4ja3p2v3lh5mvmcy.onion:8080 SOURCE_ADDR=127.0.0.1:36448 PURPOSE=USER
+2019-01-31 11:31:51 1548934311.18 650 CIRC 35 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:51 1548934311.18 650 ORCONN $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick LAUNCHED ID=87
+2019-01-31 11:31:51 1548934311.18 650 CIRC 36 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:31:51 1548934311.18 650 ORCONN $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB LAUNCHED ID=88
+2019-01-31 11:31:51 1548934311.24 650 ORCONN $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB CONNECTED ID=88
+2019-01-31 11:31:51 1548934311.27 650 CIRC 36 EXTENDED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:31:51 1548934311.32 650 ORCONN $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick CONNECTED ID=87
+2019-01-31 11:31:51 1548934311.37 650 CIRC 35 EXTENDED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:51 1548934311.44 650 CIRC 36 EXTENDED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:31:51 1548934311.63 650 CIRC 35 EXTENDED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:51 1548934311.80 650 BW 261885 10155
+2019-01-31 11:31:51 1548934311.80 650 STREAM_BW 86 32 2 2019-01-31T11:31:51.802355
+2019-01-31 11:31:51 1548934311.80 650 CIRC_BW ID=25 READ=249919 WRITTEN=4072 TIME=2019-01-31T11:31:51.802365 DELIVERED_READ=243768 OVERHEAD_READ=750 DELIVERED_WRITTEN=1 OVERHEAD_WRITTEN=3983
+2019-01-31 11:31:51 1548934311.80 650 CIRC_BW ID=35 READ=509 WRITTEN=1018 TIME=2019-01-31T11:31:51.802369 DELIVERED_READ=66 OVERHEAD_READ=432 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:31:51 1548934311.81 650 CIRC_BW ID=36 READ=509 WRITTEN=1018 TIME=2019-01-31T11:31:51.802372 DELIVERED_READ=66 OVERHEAD_READ=432 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-01-31 11:31:52 1548934312.01 650 CIRC 35 EXTENDED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:52 1548934312.01 650 CIRC 35 BUILT $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846
+2019-01-31 11:31:52 1548934312.37 650 CIRC_MINOR 35 PURPOSE_CHANGED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_IDLE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_CONNECTING
+2019-01-31 11:31:52 1548934312.80 650 BW 49410 1629
+2019-01-31 11:31:52 1548934312.80 650 CIRC_BW ID=25 READ=46828 WRITTEN=509 TIME=2019-01-31T11:31:52.801172 DELIVERED_READ=45666 OVERHEAD_READ=150 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=498
+2019-01-31 11:31:52 1548934312.80 650 CIRC_BW ID=35 READ=1018 WRITTEN=509 TIME=2019-01-31T11:31:52.801184 DELIVERED_READ=66 OVERHEAD_READ=930 DELIVERED_WRITTEN=20 OVERHEAD_WRITTEN=478
+2019-01-31 11:31:53 1548934313.80 650 BW 1086 1629
+2019-01-31 11:31:54 1548934314.80 650 BW 0 0
+2019-01-31 11:31:55 1548934315.80 650 BW 1629 0
+2019-01-31 11:31:56 1548934316.80 650 BW 1086 1629
+2019-01-31 11:31:57 1548934317.80 650 BW 0 543
+2019-01-31 11:31:58 1548934318.80 650 BW 543 1086
+2019-01-31 11:31:59 1548934319.33 650 CIRC 25 CLOSED $A7A9F4B9D4157F0F4AB96AF83F3F188B7E685539~NewYorkInternet0,$ABC959E5E081E1D615500B756439287D506DE5EE~cqdx88,$BD4C647508162F59CB44E4DFC1C2B2B8A9387CCA~regar42 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=5g73myzr5vf5uqajbs6vzo4bqkapzvpbavod5zdhf5g5fgz75dwe7gad TIME_CREATED=2019-01-31T11:29:52.303275 REASON=DESTROYED REMOTE_REASON=NONE
+2019-01-31 11:31:59 1548934319.80 650 BW 2172 1629
+2019-01-31 11:32:00 1548934320.81 650 BW 0 0
+2019-01-31 11:32:01 1548934321.80 650 BW 543 1086
+2019-01-31 11:32:02 1548934322.38 650 CIRC 36 EXTENDED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:32:02 1548934322.64 650 CIRC 36 EXTENDED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:32:02 1548934322.64 650 CIRC 36 BUILT $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_CONNECTING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417
+2019-01-31 11:32:02 1548934322.64 650 CIRC_MINOR 36 PURPOSE_CHANGED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_INTRO_SENT REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_CONNECTING
+2019-01-31 11:32:02 1548934322.80 650 BW 1086 1086
+2019-01-31 11:32:02 1548934322.80 650 CIRC_BW ID=36 READ=1018 WRITTEN=1018 TIME=2019-01-31T11:32:02.801928 DELIVERED_READ=214 OVERHEAD_READ=782 DELIVERED_WRITTEN=612 OVERHEAD_WRITTEN=384
+2019-01-31 11:32:02 1548934322.90 650 CIRC_MINOR 35 PURPOSE_CHANGED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_ESTABLISHED_WAITING REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_IDLE
+2019-01-31 11:32:02 1548934322.90 650 CIRC_MINOR 36 PURPOSE_CHANGED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417 OLD_PURPOSE=HS_CLIENT_INTRO OLD_HS_STATE=HSCI_INTRO_SENT
+2019-01-31 11:32:02 1548934322.90 650 CIRC 36 CLOSED $0ED0EA324C931CF41CB5272BFB1D015B3D5772A9~TOR2DFNrelB,$55580D71B317A072F4A4DCF6EA4EDB015734AEE7~VeilsOfTheOnion,$9781B0EE81E95941073AFA37542B36ED71018D49~Unnamed,$6F09563A6DDEA36564B7CCBC448198ADE5F13B18~snap269 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_INTRO HS_STATE=HSCI_DONE REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.161417 REASON=FINISHED
+2019-01-31 11:32:03 1548934323.80 650 BW 2715 1629
+2019-01-31 11:32:04 1548934324.38 650 CIRC_MINOR 35 PURPOSE_CHANGED $5EF0AAAEEE7B1282DA0DBAB94669B73E39DD51B6~MyCoolNick,$42DC4E66C7F883622A4E95A6151D9387A5B9F240~TrypticNode4,$5A6451D4E4B4FFDE0B2682D8D8DAA0D10A500066~loki BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_REND HS_STATE=HSCR_JOINED REND_QUERY=4ja3p2v3lh5mvmcy TIME_CREATED=2019-01-31T11:31:51.145846 OLD_PURPOSE=HS_CLIENT_REND OLD_HS_STATE=HSCR_ESTABLISHED_WAITING
+2019-01-31 11:32:04 1548934324.38 650 STREAM 86 SENTCONNECT 35 4ja3p2v3lh5mvmcy.onion:8080
+2019-01-31 11:32:04 1548934324.80 650 BW 543 543
+2019-01-31 11:32:04 1548934324.80 650 CIRC_BW ID=35 READ=509 WRITTEN=509 TIME=2019-01-31T11:32:04.802492 DELIVERED_READ=148 OVERHEAD_READ=350 DELIVERED_WRITTEN=6 OVERHEAD_WRITTEN=492
+2019-01-31 11:32:04 1548934325.00 650 STREAM 86 SUCCEEDED 35 4ja3p2v3lh5mvmcy.onion:8080
+2019-01-31 11:32:05 1548934325.80 650 BW 5799 543
+2019-01-31 11:32:05 1548934325.80 650 STREAM_BW 86 52 3525 2019-01-31T11:32:05.802539
+2019-01-31 11:32:05 1548934325.80 650 CIRC_BW ID=35 READ=4581 WRITTEN=509 TIME=2019-01-31T11:32:05.802549 DELIVERED_READ=3515 OVERHEAD_READ=967 DELIVERED_WRITTEN=52 OVERHEAD_WRITTEN=446
+2019-01-31 11:32:06 1548934326.80 650 BW 178108 5343
+2019-01-31 11:32:06 1548934326.80 650 STREAM_BW 86 0 169318 2019-01-31T11:32:06.802266
+2019-01-31 11:32:06 1548934326.80 650 CIRC_BW ID=35 READ=173569 WRITTEN=4581 TIME=2019-01-31T11:32:06.802276 DELIVERED_READ=169318 OVERHEAD_READ=500 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4482
+2019-01-31 11:32:07 1548934327.80 650 BW 252538 9086
+2019-01-31 11:32:07 1548934327.80 650 STREAM_BW 86 0 238788 2019-01-31T11:32:07.801689
+2019-01-31 11:32:07 1548934327.80 650 CIRC_BW ID=35 READ=245847 WRITTEN=7635 TIME=2019-01-31T11:32:07.801698 DELIVERED_READ=239784 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:08 1548934328.80 650 BW 263690 8000
+2019-01-31 11:32:08 1548934328.80 650 STREAM_BW 86 0 248250 2019-01-31T11:32:08.800615
+2019-01-31 11:32:08 1548934328.80 650 CIRC_BW ID=35 READ=253482 WRITTEN=7635 TIME=2019-01-31T11:32:08.800624 DELIVERED_READ=247254 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:09 1548934329.81 650 BW 237469 7486
+2019-01-31 11:32:09 1548934329.81 650 STREAM_BW 86 0 224894 2019-01-31T11:32:09.806203
+2019-01-31 11:32:09 1548934329.81 650 CIRC_BW ID=35 READ=234140 WRITTEN=6617 TIME=2019-01-31T11:32:09.806212 DELIVERED_READ=228380 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:32:10 1548934330.81 650 BW 285502 9057
+2019-01-31 11:32:10 1548934330.81 650 STREAM_BW 86 0 272602 2019-01-31T11:32:10.805637
+2019-01-31 11:32:10 1548934330.81 650 CIRC_BW ID=35 READ=275878 WRITTEN=8653 TIME=2019-01-31T11:32:10.805646 DELIVERED_READ=269116 OVERHEAD_READ=800 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=8466
+2019-01-31 11:32:11 1548934331.81 650 BW 238534 6943
+2019-01-31 11:32:11 1548934331.81 650 STREAM_BW 86 0 229874 2019-01-31T11:32:11.804892
+2019-01-31 11:32:11 1548934331.81 650 CIRC_BW ID=35 READ=235667 WRITTEN=6617 TIME=2019-01-31T11:32:11.804900 DELIVERED_READ=229874 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:32:12 1548934332.81 650 BW 253268 8543
+2019-01-31 11:32:12 1548934332.81 650 STREAM_BW 86 0 239784 2019-01-31T11:32:12.805706
+2019-01-31 11:32:12 1548934332.81 650 CIRC_BW ID=35 READ=245847 WRITTEN=7635 TIME=2019-01-31T11:32:12.805719 DELIVERED_READ=239784 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:13 1548934333.81 650 BW 226382 8543
+2019-01-31 11:32:13 1548934333.81 650 STREAM_BW 86 0 216478 2019-01-31T11:32:13.806889
+2019-01-31 11:32:13 1548934333.81 650 CIRC_BW ID=35 READ=221924 WRITTEN=7126 TIME=2019-01-31T11:32:13.806898 DELIVERED_READ=216478 OVERHEAD_READ=650 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:32:14 1548934334.81 650 BW 265714 8543
+2019-01-31 11:32:14 1548934334.81 650 STREAM_BW 86 0 251238 2019-01-31T11:32:14.806813
+2019-01-31 11:32:14 1548934334.81 650 CIRC_BW ID=35 READ=257554 WRITTEN=7635 TIME=2019-01-31T11:32:14.806822 DELIVERED_READ=251238 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:15 1548934335.81 650 BW 230555 9115
+2019-01-31 11:32:15 1548934335.81 650 STREAM_BW 86 0 220910 2019-01-31T11:32:15.805202
+2019-01-31 11:32:15 1548934335.81 650 CIRC_BW ID=35 READ=226505 WRITTEN=6617 TIME=2019-01-31T11:32:15.805212 DELIVERED_READ=220910 OVERHEAD_READ=700 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6474
+2019-01-31 11:32:16 1548934336.81 650 BW 212122 6400
+2019-01-31 11:32:16 1548934336.81 650 STREAM_BW 86 0 200592 2019-01-31T11:32:16.807360
+2019-01-31 11:32:16 1548934336.81 650 CIRC_BW ID=35 READ=205636 WRITTEN=6108 TIME=2019-01-31T11:32:16.807369 DELIVERED_READ=200592 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:17 1548934337.81 650 BW 116259 3200
+2019-01-31 11:32:17 1548934337.81 650 STREAM_BW 86 0 108712 2019-01-31T11:32:17.804699
+2019-01-31 11:32:17 1548934337.81 650 CIRC_BW ID=35 READ=111471 WRITTEN=3054 TIME=2019-01-31T11:32:17.804708 DELIVERED_READ=108712 OVERHEAD_READ=350 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:18 1548934338.81 650 BW 197026 6943
+2019-01-31 11:32:18 1548934338.81 650 STREAM_BW 86 0 190184 2019-01-31T11:32:18.804610
+2019-01-31 11:32:18 1548934338.81 650 CIRC_BW ID=35 READ=194947 WRITTEN=6108 TIME=2019-01-31T11:32:18.804619 DELIVERED_READ=190184 OVERHEAD_READ=550 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:19 1548934339.81 650 BW 260248 8543
+2019-01-31 11:32:19 1548934339.81 650 STREAM_BW 86 0 246756 2019-01-31T11:32:19.807316
+2019-01-31 11:32:19 1548934339.81 650 CIRC_BW ID=35 READ=252973 WRITTEN=7635 TIME=2019-01-31T11:32:19.807326 DELIVERED_READ=246756 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:20 1548934340.81 650 BW 200210 6943
+2019-01-31 11:32:20 1548934340.81 650 STREAM_BW 86 0 189636 2019-01-31T11:32:20.805500
+2019-01-31 11:32:20 1548934340.81 650 CIRC_BW ID=35 READ=194438 WRITTEN=6108 TIME=2019-01-31T11:32:20.805510 DELIVERED_READ=189636 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:21 1548934341.81 650 BW 256183 8000
+2019-01-31 11:32:21 1548934341.81 650 STREAM_BW 86 0 241278 2019-01-31T11:32:21.805994
+2019-01-31 11:32:21 1548934341.81 650 CIRC_BW ID=35 READ=247374 WRITTEN=7126 TIME=2019-01-31T11:32:21.806003 DELIVERED_READ=241278 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=6972
+2019-01-31 11:32:22 1548934342.81 650 BW 161149 6972
+2019-01-31 11:32:22 1548934342.81 650 STREAM_BW 86 0 155922 2019-01-31T11:32:22.804379
+2019-01-31 11:32:22 1548934342.81 650 CIRC_BW ID=35 READ=159826 WRITTEN=5090 TIME=2019-01-31T11:32:22.804389 DELIVERED_READ=155922 OVERHEAD_READ=450 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4980
+2019-01-31 11:32:23 1548934343.81 650 BW 121241 3743
+2019-01-31 11:32:23 1548934343.81 650 STREAM_BW 86 0 114688 2019-01-31T11:32:23.807234
+2019-01-31 11:32:23 1548934343.81 650 CIRC_BW ID=35 READ=117579 WRITTEN=3054 TIME=2019-01-31T11:32:23.807243 DELIVERED_READ=114688 OVERHEAD_READ=350 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:24 1548934344.81 650 BW 107218 3743
+2019-01-31 11:32:24 1548934344.81 650 STREAM_BW 86 0 98304 2019-01-31T11:32:24.804442
+2019-01-31 11:32:24 1548934344.81 650 CIRC_BW ID=35 READ=104345 WRITTEN=3054 TIME=2019-01-31T11:32:24.804451 DELIVERED_READ=101790 OVERHEAD_READ=300 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:25 1548934345.81 650 BW 210155 6400
+2019-01-31 11:32:25 1548934345.81 650 STREAM_BW 86 0 200094 2019-01-31T11:32:25.805560
+2019-01-31 11:32:25 1548934345.81 650 CIRC_BW ID=35 READ=201564 WRITTEN=6108 TIME=2019-01-31T11:32:25.805568 DELIVERED_READ=196608 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:26 1548934346.81 650 BW 79710 2657
+2019-01-31 11:32:26 1548934346.81 650 STREAM_BW 86 0 78434 2019-01-31T11:32:26.807097
+2019-01-31 11:32:26 1548934346.81 650 CIRC_BW ID=35 READ=80422 WRITTEN=2545 TIME=2019-01-31T11:32:26.807106 DELIVERED_READ=78434 OVERHEAD_READ=250 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2490
+2019-01-31 11:32:27 1548934347.81 650 BW 161678 5343
+2019-01-31 11:32:27 1548934347.81 650 STREAM_BW 86 0 151938 2019-01-31T11:32:27.804433
+2019-01-31 11:32:27 1548934347.81 650 CIRC_BW ID=35 READ=155754 WRITTEN=4581 TIME=2019-01-31T11:32:27.804442 DELIVERED_READ=151938 OVERHEAD_READ=450 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=4482
+2019-01-31 11:32:28 1548934348.81 650 BW 195157 6943
+2019-01-31 11:32:28 1548934348.81 650 STREAM_BW 86 0 183162 2019-01-31T11:32:28.806764
+2019-01-31 11:32:28 1548934348.81 650 CIRC_BW ID=35 READ=187821 WRITTEN=6108 TIME=2019-01-31T11:32:28.806772 DELIVERED_READ=183162 OVERHEAD_READ=600 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=5976
+2019-01-31 11:32:29 1548934349.81 650 BW 111061 4829
+2019-01-31 11:32:29 1548934349.81 650 STREAM_BW 86 0 107766 2019-01-31T11:32:29.806990
+2019-01-31 11:32:29 1548934349.81 650 CIRC_BW ID=35 READ=110453 WRITTEN=3054 TIME=2019-01-31T11:32:29.807001 DELIVERED_READ=107766 OVERHEAD_READ=300 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:30 1548934350.81 650 BW 252338 8000
+2019-01-31 11:32:30 1548934350.81 650 STREAM_BW 86 0 237294 2019-01-31T11:32:30.805056
+2019-01-31 11:32:30 1548934350.81 650 CIRC_BW ID=35 READ=243302 WRITTEN=7635 TIME=2019-01-31T11:32:30.805067 DELIVERED_READ=237294 OVERHEAD_READ=750 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7470
+2019-01-31 11:32:31 1548934351.81 650 BW 113460 4286
+2019-01-31 11:32:31 1548934351.81 650 STREAM_BW 86 0 110754 2019-01-31T11:32:31.805664
+2019-01-31 11:32:31 1548934351.81 650 CIRC_BW ID=35 READ=113507 WRITTEN=3054 TIME=2019-01-31T11:32:31.805674 DELIVERED_READ=110754 OVERHEAD_READ=300 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=2988
+2019-01-31 11:32:32 1548934352.81 650 BW 294190 9629
+2019-01-31 11:32:32 1548934352.81 650 STREAM_BW 86 0 277532 2019-01-31T11:32:32.807132
+2019-01-31 11:32:32 1548934352.81 650 CIRC_BW ID=35 READ=284531 WRITTEN=8144 TIME=2019-01-31T11:32:32.807140 DELIVERED_READ=277532 OVERHEAD_READ=850 DELIVERED_WRITTEN=0 OVERHEAD_WRITTEN=7968
+2019-01-31 11:32:33 1548934353.21 650 STREAM_BW 86 0 34249 2019-01-31T11:32:33.211323
+2019-01-31 11:32:33 1548934353.21 650 STREAM 86 CLOSED 35 4ja3p2v3lh5mvmcy.onion:8080 REASON=DONE
+2019-01-31 11:32:33 1548934353.21 650 STREAM 89 NEW 0 4ja3p2v3lh5mvmcy.onion:8080 SOURCE_ADDR=127.0.0.1:36468 PURPOSE=USER
+2019-01-31 11:32:33 1548934353.21 650 STREAM 89 SENTCONNECT 35 4ja3p2v3lh5mvmcy.onion:8080
+2019-02-11 14:58:38 1549893518.92 Starting torctl program on host phlox using Tor version 0.3.5.7 status=recommended
+2019-02-11 14:58:38 1549893518.93 NOTICE BOOTSTRAP PROGRESS=100 TAG=done SUMMARY="Done"
+2019-02-11 14:58:38 1549893518.95 650 CIRC 15 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-02-11T13:58:38.936729
+2019-02-11 14:58:38 1549893518.96 [WARNING] event TB_EMPTY is recognized by stem but not by tor
+2019-02-11 14:58:39 1549893519.19 650 ORCONN $A9F7185499C5784E35B5C25744ED4AB75437CE5D~damita CONNECTED ID=41
+2019-02-11 14:58:39 1549893519.26 650 CIRC 15 EXTENDED $A9F7185499C5784E35B5C25744ED4AB75437CE5D~damita BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-02-11T13:58:38.936729
+2019-02-11 14:58:39 1549893519.39 650 CIRC 15 EXTENDED $A9F7185499C5784E35B5C25744ED4AB75437CE5D~damita,$EE556626236B477A40770AACDE5BB140006EFB4D~sqrrm BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-02-11T13:58:38.936729
+2019-02-11 14:58:39 1549893519.48 650 BW 5311 2634
+2019-02-11 14:58:39 1549893519.48 650 CIRC_BW ID=15 READ=509 WRITTEN=1018 TIME=2019-02-11T13:58:39.465271 DELIVERED_READ=66 OVERHEAD_READ=432 DELIVERED_WRITTEN=238 OVERHEAD_WRITTEN=758
+2019-02-11 14:58:39 1549893519.48 650 CIRC 16 LAUNCHED BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
+2019-02-11 14:58:39 1549893519.49 650 ORCONN $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang LAUNCHED ID=42
+2019-02-11 14:58:39 1549893519.59 650 ORCONN $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang CONNECTED ID=42
+2019-02-11 14:58:39 1549893519.62 650 CIRC 16 EXTENDED $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
+2019-02-11 14:58:39 1549893519.65 650 CIRC 15 EXTENDED $A9F7185499C5784E35B5C25744ED4AB75437CE5D~damita,$EE556626236B477A40770AACDE5BB140006EFB4D~sqrrm,$51826F7C88BD7BFF3B31E0C01C44F7821DF673D3~ArguteTor BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY PURPOSE=HS_CLIENT_HSDIR HS_STATE=HSCI_CONNECTING TIME_CREATED=2019-02-11T13:58:38.936729
+2019-02-11 14:58:39 1549893519.69 650 CIRC 16 EXTENDED $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang,$87D73471FDC64BD9CEDF84435D20CA4EB5C36FE8~niftyphoberomys BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
+2019-02-11 14:58:39 1549893519.78 650 CIRC 16 EXTENDED $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang,$87D73471FDC64BD9CEDF84435D20CA4EB5C36FE8~niftyphoberomys,$C3636ECA4B40900056590AA7DBFC6ED09379852F~jmarshall2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
+2019-02-11 14:58:39 1549893519.78 650 CIRC 16 BUILT $4C72ED559790B754A6D8AF3D00AA313862C3CD81~JohnNiang,$87D73471FDC64BD9CEDF84435D20CA4EB5C36FE8~niftyphoberomys,$C3636ECA4B40900056590AA7DBFC6ED09379852F~jmarshall2 BUILD_FLAGS=IS_INTERNAL,NEED_CAPACITY,NEED_UPTIME PURPOSE=GENERAL TIME_CREATED=2019-02-11T13:58:39.465474
diff --git a/onionperf/tests/data/simplefile b/onionperf/tests/data/simplefile
new file mode 100644
index 0000000..861a5b4
--- /dev/null
+++ b/onionperf/tests/data/simplefile
@@ -0,0 +1 @@
+onionperf
\ No newline at end of file
diff --git a/onionperf/tests/data/simplefile.xz b/onionperf/tests/data/simplefile.xz
new file mode 100644
index 0000000..7553e3e
Binary files /dev/null and b/onionperf/tests/data/simplefile.xz differ
diff --git a/onionperf/tests/test_utils.py b/onionperf/tests/test_utils.py
new file mode 100644
index 0000000..5024bb5
--- /dev/null
+++ b/onionperf/tests/test_utils.py
@@ -0,0 +1,289 @@
+import os
+import sys
+import shutil
+import tempfile
+import datetime
+import hashlib
+from onionperf import util
+from nose.tools import assert_equals
+
+def test_make_dir():
+ """
+ Creates a temporary working directory, and then a directory within it.
+ The second directory is created using util.make_dir_path.
+ Ensures that the path exists, is a directory and is not a symbolic link.
+ Removes the temporary working directory only if successful.
+ """
+ work_dir = tempfile.mkdtemp()
+ test_path = os.path.join(work_dir, "test")
+ util.make_dir_path(test_path)
+ assert(os.path.exists(test_path))
+ assert(os.path.isdir(test_path))
+ assert(not os.path.islink(test_path))
+ shutil.rmtree(work_dir)
+
+def test_find_file_paths():
+ """
+ Uses util.find_file_paths to find an existing file in the test data directory, given a pattern.
+ The function returns the full path to the file.
+ """
+ data_dir = "data"
+ pattern = ["abcdef"]
+ paths = util.find_file_paths(data_dir, pattern)
+ print(paths)
+ assert_equals(paths, ["data/dirs/abcdefg.txt"])
+
+def test_find_file_paths_with_dash():
+ """
+ Uses util.find_file_paths to find an existing file in the test data directory, given a
+ pattern. Ensures the path returned by the function defaults to stdin if there
+ is a dash detected at the end of the given directory.
+ """
+ data_dir = "data"
+ pattern = ["abcdef"]
+ paths = util.find_file_paths(data_dir + "/-", pattern)
+ assert_equals(paths, ['-'])
+
+def test_find_file_paths_pairs():
+ """
+ Uses util.find_file_paths_pairs to find existing files in the test data
+ directory matching either of two given patterns.
+ it returns tuples consisting of a list containing matching file and an empty list.
+ The position of the empty lists is dependent on which pattern was matched.
+ If a file matches the first pattern, the second item in the tuple will be empty.
+ If a file matches the second pattern, the first item in the tuple will be empty.
+ """
+ data_dir = "data"
+ first_pattern = ['.*tgen\.log']
+ second_pattern = ['.*torctl\.log']
+ paths = util.find_file_paths_pairs(data_dir, first_pattern, second_pattern)
+ assert_equals(paths, [([], ['data/logs/onionperf20190101.torctl.log']), ([], ['data/logs/onionperf.torctl.log']), (['data/logs/onionperf.tgen.log'], []), (['data/logs/onionperf20190101.tgen.log'], [])])
+
+def test_find_path_with_binpath():
+ """
+ Creates a temporary named file, uses util.find_path with a filename to find its
+ full path and then compares is to that returned by the tempfile function.
+ Removes the created named temporary file only if successful.
+ """
+ temp_file = tempfile.NamedTemporaryFile()
+ work_path = util.find_path(temp_file.name, temp_file.name)
+ assert_equals(work_path, temp_file.name)
+ temp_file.close()
+
+
+def test_find_path_with_which():
+ """
+ Creates a temporary named file, and makes it executable.
+ Uses util.find_path with a name and search path to find its full
+ path, and then compares is to that returned by the tempfile function. Removes
+ the created named temporary file only if successful.
+ """
+
+ temp_file = tempfile.NamedTemporaryFile()
+ os.chmod(temp_file.name, 0775)
+ work_path = util.find_path(None, temp_file.name, tempfile.tempdir)
+ assert_equals(work_path, temp_file.name)
+ temp_file.close()
+
+def test_is_exe():
+ """
+ Uses util.is_exe to test if paths point to executable files.
+ Checks an executable file path is accepted
+ Checks a non-executable file path is not accepted
+ Checks a directory path is not accepted
+ """
+ assert(util.is_exe("data/bin/script"))
+ assert(not util.is_exe("data/bin/script_no_exe"))
+ assert(not util.is_exe("data/bin/"))
+
+def test_which():
+ """
+ Uses util.which with an executable file and a search path in the test data
+ directory. Checks the full path of the file is identified.
+ """
+ test_binary = util.which("script", search_path="data/bin/")
+ assert_equals(test_binary, "data/bin/script")
+
+def test_which_not_executable():
+ """
+ Uses util.which to test an non-executable file
+ in the test data directory. Checks the non-executable file is not
+ identified as a program to run.
+ """
+ test_binary = util.which("script_non_exe", search_path="data/bin/")
+ assert_equals(test_binary, None)
+
+def test_which_full_path():
+ """
+ Uses util.which with the full path of an executable file and a
+ search path.
+ Checks the full path of the file is identified.
+ """
+ test_binary = util.which("data/bin/script", search_path="data/bin/")
+ assert_equals(test_binary, "data/bin/script")
+
+
+def test_date_to_string():
+ """
+ Uses util.date_to_string with a datetime object.
+ Returns a correctly formatted string.
+ """
+ date_object = datetime.datetime(2018, 11, 27, 11)
+ date_string = util.date_to_string(date_object)
+ assert_equals(date_string, "2018-11-27")
+
+def test_date_to_string_is_none():
+ """
+ Uses util.date_to_string with a None object.
+ Returns an empty string.
+ """
+ date_string = util.date_to_string(None)
+ assert_equals(date_string, "")
+
+def test_dates_match():
+ """
+ Uses util.dates_match with two matching datetime objects.
+ """
+ first_date = datetime.datetime(2018, 11, 27, 10)
+ second_date = datetime.datetime(2018, 11, 27, 11)
+ assert(util.do_dates_match(first_date, second_date))
+
+def test_dates_match_false():
+ """
+ Uses util.dates_match with two non-matching datetime objects.
+ """
+ first_date = datetime.datetime(2018, 11, 27, 10)
+ second_date = datetime.datetime(2016, 11, 27, 11)
+ assert_equals(util.do_dates_match(first_date, second_date), False)
+
+def test_find_ip_address_url():
+ """
+ Uses util.find_ip_address_url with a string containing an IPv4 address.
+ The ip address is returned as a string.
+ """
+ ip_address = util.find_ip_address_url("Your IP address appears to be: 70.70.70.70")
+ assert_equals(ip_address, "70.70.70.70")
+
+def test_find_ip_address_url_none():
+ """
+ Uses util.find_ip_address_url with a string containing no IPv4 address.
+ This should return None.
+ """
+ ip_address = util.find_ip_address_url("Your IP address appears to be")
+ assert_equals(ip_address, None)
+
+def test_get_random_free_port():
+ """
+ Uses util.get_random_free_port to get a port number.
+ Asserts the port exists, and it is a high-numbered port
+ between 10000 and 60000.
+ """
+ port = util.get_random_free_port()
+ assert(port is not None)
+ assert(port < 60000)
+ assert(port >= 10000)
+
+def test_data_source_stdin():
+ """
+ Creates a new util.DataSource object with stdin input. When calling
+ util.DataSource.open(), this should set stdin as the DataSource.source
+ for this object.
+ """
+ test_data_source = util.DataSource("-")
+ test_data_source.open()
+ assert_equals(test_data_source.source, sys.stdin)
+
+def test_data_source_file():
+ """
+ Creates a new util.DataSource object with an uncompressed input file. When calling
+ util.DataSource.open(), this should set the file handle as the DataSource.source
+ for this object.
+ DataSouce.source is verified against the contents of the input file.
+ """
+ test_data_source = util.DataSource("data/simplefile")
+ test_data_source.open()
+ data_source_file_handle = test_data_source.source
+ data_source_contents = data_source_file_handle.read()
+ assert_equals(data_source_contents, "onionperf")
+
+def test_data_source_compressed_file():
+ """
+ Creates a new util.DataSource object with a compressed input file. When
+ calling util.DataSource.open(), this should set the output of an xzprocess (an
+ uncompressed file handle) as the DataSource.source for this object, and set
+ DataSource.compress to True.
+ Verifies DataSource.compress is set to True.
+ DataSouce.source is verified against the contents of the input file.
+ """
+ test_data_source = util.DataSource("data/simplefile.xz")
+ test_data_source.open()
+ data_source_file_handle = test_data_source.source
+ data_source_contents = data_source_file_handle.read()
+ assert_equals(data_source_contents, "onionperf")
+ assert(test_data_source.compress)
+
+def test_file_writable():
+ """
+ Creates a new util.FileWritable object using a temporary filename.
+ Writes a string to it using util.FileWritable.write().
+ The checksum of this file is compared to a good known checksum.
+ The temporary file is only removed if the test is successful.
+ """
+ temp_file = tempfile.NamedTemporaryFile()
+ test_writable = util.FileWritable(temp_file.name)
+ test_writable.write("onionperf")
+ test_writable.close()
+ expected_checksum = "5001ed4ab25b52543946fa63da829d4eeab1bd254c89ffdad0877186e074b385"
+ with open(temp_file.name) as f:
+ file_bytes = f.read()
+ file_checksum = hashlib.sha256(file_bytes).hexdigest()
+ assert_equals(file_checksum, expected_checksum)
+ temp_file.close()
+
+def test_file_writable_compressed():
+ """
+ Creates a new util.FileWritable object using a temporary filename and
+ compression. Writes a string to it using util.FileWritable.write().
+ The checksum of this file is compared to a good known checksum.
+ The temporary file is only removed if the test is successful.
+ """
+
+ temp_file = tempfile.NamedTemporaryFile(suffix=".xz")
+ test_writable = util.FileWritable(temp_file.name, True)
+ test_writable.write("onionperf")
+ test_writable.close()
+ expected_checksum = "66a6256bc4b04529c7123fa9573d30de659ffaa0cce1cc9b189817c8bf30e813"
+ with open(temp_file.name) as f:
+ file_bytes = f.read()
+ file_checksum = hashlib.sha256(file_bytes).hexdigest()
+ assert_equals(file_checksum, expected_checksum)
+ temp_file.close()
+
+def test_file_writable_with_stout():
+ """
+ Creates a new util.FileWritable object using stdout.
+ Checks the util.FileWritable.file attribute is set to stdout.
+ """
+ test_writable = util.FileWritable("-")
+ assert_equals(test_writable.file, sys.stdout)
+
+def test_file_writable_rotate_file():
+ """
+ Creates a temporary working directory.
+ Creates a new util.FileWritable object in the working directory.
+ Rotates file using util.FileWritable.rotate_file with a fixed date and time.
+ Checks path log_archive has been created in the working directory.
+ Checks path log_archive is a directory.
+ Checks file with the appropiate name has been rotated in the log_archive directory.
+ Removes working directory only if successful.
+ """
+ work_dir = tempfile.mkdtemp()
+ test_writable = util.FileWritable(os.path.join(work_dir, "logfile"))
+ test_writable.write("onionperf")
+ test_writable.rotate_file(datetime.datetime(2018, 11, 27, 0, 0, 0))
+ created_dir = os.path.join(work_dir, "log_archive")
+ rotated_file = os.path.join(created_dir, "logfile_2018-11-27_00:00:00")
+ assert(os.path.exists(created_dir))
+ assert(os.path.isdir(created_dir))
+ assert(os.path.exists(rotated_file))
+ shutil.rmtree(work_dir)
1
0

[meek/webextension] Refactor: handle all roundtrip errors in onMessage listener.
by dcf@torproject.org 19 Feb '19
by dcf@torproject.org 19 Feb '19
19 Feb '19
commit c9bd9bb0b2d34f44c59a6f4b85266df33f7fd405
Author: David Fifield <david(a)bamsoftware.com>
Date: Mon Feb 18 15:55:33 2019 -0700
Refactor: handle all roundtrip errors in onMessage listener.
---
webextension/background.js | 55 +++++++++++++++++++++-------------------------
1 file changed, 25 insertions(+), 30 deletions(-)
diff --git a/webextension/background.js b/webextension/background.js
index 664e758..da3d118 100644
--- a/webextension/background.js
+++ b/webextension/background.js
@@ -107,39 +107,35 @@ async function roundtrip(request) {
// https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/…
let url;
let init = {};
- try {
- if (request.url == null) {
- throw new Error("missing \"url\"");
- }
- if (!(request.url.startsWith("http://") || request.url.startsWith("https://"))) {
- throw new Error("only http and https URLs are allowed");
- }
- url = request.url;
- if (request.method !== "POST") {
- throw new Error("only POST is allowed");
- }
- init.method = request.method;
-
- // Don't set init.headers; that handled in the onBeforeSendHeaders
- // listener.
+ if (request.url == null) {
+ throw new Error("request spec failed validation: missing \"url\"");
+ }
+ if (!(request.url.startsWith("http://") || request.url.startsWith("https://"))) {
+ throw new Error("request spec failed validation: only http and https URLs are allowed");
+ }
+ url = request.url;
- if (request.body != null && request.body !== "") {
- init.body = base64_decode(request.body);
- }
+ if (request.method !== "POST") {
+ throw new Error("request spec failed validation: only POST is allowed");
+ }
+ init.method = request.method;
- // Do not read nor write from the browser's HTTP cache.
- init.cache = "no-store";
- // Don't send cookies.
- init.credentials = "omit";
- // Don't follow redirects (we'll get resp.status:0 if there is one).
- init.redirect = "manual";
+ // Don't set init.headers; that is handled in the onBeforeSendHeaders listener.
- // TODO: proxy
- } catch (error) {
- return {error: `request spec failed valiation: ${error.message}`};
+ if (request.body != null && request.body !== "") {
+ init.body = base64_decode(request.body);
}
+ // Do not read nor write from the browser's HTTP cache.
+ init.cache = "no-store";
+ // Don't send cookies.
+ init.credentials = "omit";
+ // Don't follow redirects (we'll get resp.status:0 if there is one).
+ init.redirect = "manual";
+
+ // TODO: proxy
+
// We need to use an onBeforeSendHeaders to override certain header fields,
// including Host (passing them to fetch in init.headers does not work). But
// onBeforeSendHeaders is a global setting (applies to all requests) and we
@@ -191,9 +187,6 @@ async function roundtrip(request) {
let resp = await fetch(url, init);
let body = await resp.arrayBuffer();
return {status: resp.status, body: base64_encode(body)};
- } catch (error) {
- // Convert any errors into an error response.
- return {error: error.message};
} finally {
// With certain errors (e.g. an invalid URL), the onBeforeSendHeaders
// listener may never get called, and therefore never release its lock.
@@ -209,6 +202,8 @@ port.onMessage.addListener((message) => {
case "roundtrip":
// Do a roundtrip and send the result back to the native process.
roundtrip(message.request)
+ // Convert any error into an "error" response.
+ .catch(error => ({error: error.message}))
.then(response => port.postMessage({id: message.id, response}));
break;
case "report-address":
1
0

19 Feb '19
commit 2fab214a751c34516af7bb55bd98aa6074be5f34
Author: David Fifield <david(a)bamsoftware.com>
Date: Mon Feb 18 16:25:01 2019 -0700
Factor out roundTrip separate from handleConn.
In handleConn, take any error that roundTrip produces, and wrap it in a
responseSpec that has an Error member set. This allows us to return an
error object back to meek-client in cases like this:
$ printf '\x00\x00\x00\x44{"method":"POST","url":"https://meek.bamsoftware.com/","body":"abc"}' | ncat 127.0.0.1 1234
→ \x00\x00\x00\x2f{"error":"illegal base64 data at input byte 0"}
In this way, we separate errors that occur during the roundtrip from
errors that occur while writing the response back to the socker.
---
webextension/native/main.go | 64 ++++++++++++++++++++++++++-------------------
1 file changed, 37 insertions(+), 27 deletions(-)
diff --git a/webextension/native/main.go b/webextension/native/main.go
index 4c66993..3b71da7 100644
--- a/webextension/native/main.go
+++ b/webextension/native/main.go
@@ -46,7 +46,7 @@ const (
// We receive multiple (possibly concurrent) connections over our listening
// socket, and we must multiplex all their requests/responses to/from the
-// browser over the single shared stdio stream. When handleConn sends a
+// browser over the single shared stdio stream. When roundTrip sends a
// webExtensionRoundTripRequest to the browser, creates a channel to receive the
// response, and stores the ID–channel mapping in requestResponseMap. When
// inFromBrowserLoop receives a webExtensionRoundTripResponse from the browser,
@@ -189,30 +189,27 @@ func sendWebExtensionMessage(w io.Writer, message []byte) error {
return err
}
-// Handle a socket connection, which is used for one request–response roundtrip
-// through the browser. We read a responseSpec from the socket and wrap it in a
-// webExtensionRoundTripRequest, tagging it with a random ID. We register the ID
-// in requestResponseMap and forward the webExtensionRoundTripRequest to the
-// browser. Then we wait for the browser to send back a
-// webExtensionRoundTripResponse, which actually happens in inFromBrowserLoop.
-// inFromBrowserLoop uses the ID to find this goroutine again.
-func handleConn(conn net.Conn, outToBrowserChan chan<- []byte) error {
- defer conn.Close()
-
+// Read a responseSpec from the socket and wrap it in a
+// webExtensionRoundTripRequest, tagging it with a random ID. Register the ID in
+// requestResponseMap and forward the webExtensionRoundTripRequest to the
+// browser. Wait for the browser to send back a webExtensionRoundTripResponse
+// (which actually happens in inFromBrowserLoop--that function uses the ID to
+// find this goroutine again). Return a responseSpec object or an error.
+func roundTrip(conn net.Conn, outToBrowserChan chan<- []byte) (*responseSpec, error) {
err := conn.SetReadDeadline(time.Now().Add(localReadTimeout))
if err != nil {
- return err
+ return nil, err
}
req, err := readRequestSpec(conn)
if err != nil {
- return err
+ return nil, err
}
// Generate an ID that will allow us to match a response to this request.
idRaw := make([]byte, 8)
_, err = rand.Read(idRaw)
if err != nil {
- return err
+ return nil, err
}
id := hex.EncodeToString(idRaw)
@@ -238,28 +235,41 @@ func handleConn(conn net.Conn, outToBrowserChan chan<- []byte) error {
// Now wait for the browser to send the response back to us.
// inFromBrowserLoop will find the proper channel by looking up the ID
// in requestResponseMap.
+ var resp *responseSpec
timeout := time.NewTimer(roundTripTimeout)
select {
- case resp := <-responseSpecChan:
+ case resp = <-responseSpecChan:
timeout.Stop()
- // Encode the response send it back out over the socket.
- err = conn.SetWriteDeadline(time.Now().Add(localWriteTimeout))
- if err != nil {
- return err
- }
- err = writeResponseSpec(conn, resp)
- if err != nil {
- return err
- }
case <-timeout.C:
// But don't wait forever, so as to allow reclaiming memory in
// case of a malfunction elsewhere.
requestResponseMapLock.Lock()
delete(requestResponseMap, id)
requestResponseMapLock.Unlock()
+ err = fmt.Errorf("timed out")
}
+ return resp, err
+}
- return nil
+// Handle a socket connection, which is used for one request–response roundtrip
+// through the browser. Delegates the real work to roundTrip, which reads the
+// requestSpec from the socket and sends it through the browser. Here, we wrap
+// any error from roundTrip in an "error" response and send the response back on
+// the socket.
+func handleConn(conn net.Conn, outToBrowserChan chan<- []byte) error {
+ defer conn.Close()
+
+ resp, err := roundTrip(conn, outToBrowserChan)
+ if err != nil {
+ resp = &responseSpec{Error: err.Error()}
+ }
+
+ // Encode the response send it back out over the socket.
+ err = conn.SetWriteDeadline(time.Now().Add(localWriteTimeout))
+ if err != nil {
+ return err
+ }
+ return writeResponseSpec(conn, resp)
}
// Receive socket connections and dispatch them to handleConn.
@@ -297,7 +307,7 @@ func inFromBrowserLoop() error {
}
// Look up what channel (previously registered in
- // requestResponseMap by handleConn) should receive the
+ // requestResponseMap by roundTrip) should receive the
// response.
requestResponseMapLock.Lock()
responseSpecChan, ok := requestResponseMap[resp.ID]
@@ -306,7 +316,7 @@ func inFromBrowserLoop() error {
if !ok {
// Either the browser made up an ID that we never sent
- // it, or (more likely) it took too long and handleConn
+ // it, or (more likely) it took too long and roundTrip
// stopped waiting. Just drop the response on the floor.
continue
}
1
0
commit f9c9f5aed26d3e01f766668da40bbed97984f0f7
Author: David Fifield <david(a)bamsoftware.com>
Date: Tue Feb 19 00:44:15 2019 -0700
Allow specifying a proxy.
Just like with headers, we can only control the proxy through a global
event listener, namely proxy.onRequest. We use the same scheme of
locking modifications to the events so that only one request at a time
is affected.
---
webextension/background.js | 68 ++++++++++++++++++++++++++++++++++++++++-----
webextension/manifest.json | 1 +
webextension/native/main.go | 2 +-
3 files changed, 63 insertions(+), 8 deletions(-)
diff --git a/webextension/background.js b/webextension/background.js
index 5aab472..3b24a37 100644
--- a/webextension/background.js
+++ b/webextension/background.js
@@ -77,6 +77,31 @@ function base64_encode(dec_buf) {
return btoa(dec_str);
}
+// Return a proxy.ProxyInfo according to the given specification.
+//
+// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/…
+// The specification may look like:
+// undefined
+// {"type": "http", "host": "example.com", "port": 8080}
+// {"type": "socks5", "host": "example.com", "port": 1080}
+// {"type": "socks4a", "host": "example.com", "port": 1080}
+function makeProxyInfo(spec) {
+ if (spec == null) {
+ return {type: "direct"};
+ }
+ switch (spec.type) {
+ case "http":
+ return {type: "http", host: spec.host, port: spec.port};
+ // What tor calls "socks5", WebExtension calls "socks".
+ case "socks5":
+ return {type: "socks", host: spec.host, port: spec.port, proxyDNS: true};
+ // What tor calls "socks4a", WebExtension calls "socks4".
+ case "socks4a":
+ return {type: "socks4", host: spec.host, port: spec.port, proxyDNS: true};
+ };
+ throw new Error(`unknown proxy type ${spec.type}`);
+}
+
// A Mutex's lock function returns a promise that resolves to a function which,
// when called, allows the next call to lock to proceed.
// https://stackoverflow.com/a/51086893
@@ -95,8 +120,9 @@ function Mutex() {
}
}
-// Enforces exclusive access to onBeforeSendHeaders listeners.
+// Enforce exclusive access to onBeforeSendHeaders and onRequest listeners.
const headersMutex = new Mutex();
+const proxyMutex = new Mutex();
async function roundtrip(request) {
// Process the incoming request spec and convert it into parameters to the
@@ -132,8 +158,6 @@ async function roundtrip(request) {
// Don't follow redirects (we'll get resp.status:0 if there is one).
init.redirect = "manual";
- // TODO: proxy
-
// We need to use a webRequest.onBeforeSendHeaders listener to override
// certain header fields, including Host (passing them to fetch in
// init.headers does not work). But onBeforeSendHeaders is a global setting
@@ -173,6 +197,27 @@ async function roundtrip(request) {
}
}
+ // Similarly, for controlling the proxy for each request, we set a
+ // proxy.onRequest listener, use it for one request, then remove it.
+ let proxyUnlock = await proxyMutex.lock();
+ let proxyCalled = false;
+ // async to make exceptions visible to proxy.onError.
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=1528873#c1
+ async function proxyFn(details) {
+ try {
+ // Sanity assertion: per-request listeners are called at most once.
+ if (proxyCalled) {
+ throw new Error("proxyFn called more than once");
+ }
+ proxyCalled = true;
+
+ return makeProxyInfo(request.proxy);
+ } finally {
+ browser.proxy.onRequest.removeListener(proxyFn);
+ proxyUnlock();
+ }
+ }
+
try {
// Set our listener that overrides the headers for this request.
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/…
@@ -181,18 +226,27 @@ async function roundtrip(request) {
{urls: ["http://*/*", "https://*/*"]},
["blocking", "requestHeaders"]
);
+ // Set our listener that overrides the proxy for this request.
+ // https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/…
+ browser.proxy.onRequest.addListener(
+ proxyFn,
+ {urls: ["http://*/*", "https://*/*"]}
+ );
// Now actually do the request and build a response object.
let resp = await fetch(url, init);
let body = await resp.arrayBuffer();
return {status: resp.status, body: base64_encode(body)};
} finally {
- // With certain errors (e.g. an invalid URL), the onBeforeSendHeaders
- // listener may never get called, and therefore never release its lock.
- // Ensure that locks are released and listeners removed in any case.
- // It's safe to release a lock or remove a listener more than once.
+ // With certain errors (e.g. an invalid URL), our onBeforeSendHeaders
+ // and onRequest listeners may never get called, and therefore never
+ // release their locks. Ensure that locks are released and listeners
+ // removed in any case. It's safe to release a lock or remove a listener
+ // more than once.
browser.webRequest.onBeforeSendHeaders.removeListener(headersFn);
headersUnlock();
+ browser.proxy.onRequest.removeListener(proxyFn);
+ proxyUnlock();
}
}
diff --git a/webextension/manifest.json b/webextension/manifest.json
index a079833..fc56723 100644
--- a/webextension/manifest.json
+++ b/webextension/manifest.json
@@ -16,6 +16,7 @@
"permissions": [
"nativeMessaging",
+ "proxy",
"webRequest",
"webRequestBlocking",
"https://*/*",
diff --git a/webextension/native/main.go b/webextension/native/main.go
index 3b71da7..e98c4f1 100644
--- a/webextension/native/main.go
+++ b/webextension/native/main.go
@@ -68,7 +68,7 @@ type requestSpec struct {
type proxySpec struct {
Type string `json:"type"`
Host string `json:"host"`
- Port string `json:"port"`
+ Port int `json:"port"`
}
// A specification of an HTTP request or an error, as sent via the socket to
1
0

[meek/webextension] Add MDN documentation link for onBeforeSendHeaders.
by dcf@torproject.org 19 Feb '19
by dcf@torproject.org 19 Feb '19
19 Feb '19
commit 2b42ef051e92ed245cb1c8dc4f4409f0df9599d0
Author: David Fifield <david(a)bamsoftware.com>
Date: Mon Feb 18 15:39:57 2019 -0700
Add MDN documentation link for onBeforeSendHeaders.
---
webextension/background.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/webextension/background.js b/webextension/background.js
index 2bd0d11..664e758 100644
--- a/webextension/background.js
+++ b/webextension/background.js
@@ -180,6 +180,7 @@ async function roundtrip(request) {
try {
// Set our listener that overrides the headers for this request.
+ // https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/…
browser.webRequest.onBeforeSendHeaders.addListener(
headersFn,
{"urls": ["http://*/*", "https://*/*"]},
1
0
commit 8e7b504ae09185428a1aad7502e3b25817206250
Author: David Fifield <david(a)bamsoftware.com>
Date: Mon Feb 18 16:37:29 2019 -0700
Minor typo and style fixes.
---
webextension/background.js | 38 ++++++++++++++++++++------------------
1 file changed, 20 insertions(+), 18 deletions(-)
diff --git a/webextension/background.js b/webextension/background.js
index da3d118..5aab472 100644
--- a/webextension/background.js
+++ b/webextension/background.js
@@ -54,8 +54,6 @@
// because that is what enables the native part to match up requests and
// responses.
-let port = browser.runtime.connectNative("meek.http.helper");
-
// Decode a base64-encoded string into an ArrayBuffer.
function base64_decode(enc_str) {
// First step is to decode the base64. atob returns a byte string; i.e., a
@@ -97,7 +95,7 @@ function Mutex() {
}
}
-// Enforces exclusive access for onBeforeSendHeaders listeners.
+// Enforces exclusive access to onBeforeSendHeaders listeners.
const headersMutex = new Mutex();
async function roundtrip(request) {
@@ -136,21 +134,22 @@ async function roundtrip(request) {
// TODO: proxy
- // We need to use an onBeforeSendHeaders to override certain header fields,
- // including Host (passing them to fetch in init.headers does not work). But
- // onBeforeSendHeaders is a global setting (applies to all requests) and we
- // need to be able to set different headers per request. We make it so that
- // any onBeforeSendHeaders listener is only used for a single request, by
- // acquiring a lock here and releasing it within the listener itself. The
- // lock is acquired and released before any network communication happens;
- // i.e., it's fast.
+ // We need to use a webRequest.onBeforeSendHeaders listener to override
+ // certain header fields, including Host (passing them to fetch in
+ // init.headers does not work). But onBeforeSendHeaders is a global setting
+ // (applies to all requests) and we need to be able to set different headers
+ // per request. We make it so that any onBeforeSendHeaders listener is only
+ // used for a single request, by acquiring a lock here and releasing it
+ // within the listener itself. The lock is acquired and released before any
+ // network communication happens; i.e., it's fast.
let headersUnlock = await headersMutex.lock();
let headersCalled = false;
function headersFn(details) {
try {
- // Sanity assertion: any given listener is called at most once.
+ // Sanity assertion: per-request listeners are called at most once.
if (headersCalled) {
- throw new Error("headersFn called more than once");
+ console.log("headersFn called more than once");
+ return {cancel: true};
}
headersCalled = true;
@@ -168,18 +167,18 @@ async function roundtrip(request) {
return {requestHeaders: browserHeaders.concat(headers)};
} finally {
// Now that the listener has been called, remove it and release the
- // lock to allow the next request to set different listener.
+ // lock to allow the next request to set a different listener.
browser.webRequest.onBeforeSendHeaders.removeListener(headersFn);
headersUnlock();
}
- };
+ }
try {
// Set our listener that overrides the headers for this request.
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/…
browser.webRequest.onBeforeSendHeaders.addListener(
headersFn,
- {"urls": ["http://*/*", "https://*/*"]},
+ {urls: ["http://*/*", "https://*/*"]},
["blocking", "requestHeaders"]
);
@@ -197,7 +196,10 @@ async function roundtrip(request) {
}
}
-port.onMessage.addListener((message) => {
+// Connect to our native process.
+let port = browser.runtime.connectNative("meek.http.helper");
+
+port.onMessage.addListener(message => {
switch (message.command) {
case "roundtrip":
// Do a roundtrip and send the result back to the native process.
@@ -221,7 +223,7 @@ port.onMessage.addListener((message) => {
}
});
-port.onDisconnect.addListener((p) => {
+port.onDisconnect.addListener(p => {
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/…
// "Note that in Google Chrome port.error is not supported: instead, use
// runtime.lastError to get the error message."
1
0
commit e1ff5cdec9719853a6b0b8569b95196fe18e1bb5
Author: David Fifield <david(a)bamsoftware.com>
Date: Tue Feb 19 00:58:13 2019 -0700
Detect errors of proxy.onRequest.
It turns out that if an error occurs in proxy.onRequest, Firefox will
ignore it and continue on as if there were no proxy. This can happen,
for example, if the "type" of a ProxyInfo isn't one of the recognized
types, or if the ProxyInfo is missing a field like "host".
https://bugzilla.mozilla.org/show_bug.cgi?id=1528873
To prevent silent failures like this, we register another pair of event
listeners. Unlike the headers and proxy event listeners, these remain
static for all requests, and are not overwritten with each new request:
* proxy.onError detects when an error occurs.
* webRequest.onBeforeRequest cancels all requests after an error
I made the error condition be persistent because it's not something that
should arise during normal operation. proxy.onError only gets called
when an error occurs in proxy.onRequest, and that only happens when the
proxy specification is bogus. It doesn't get called when there's an
network error, for example.
In order to make exceptions in proxy.onRequest be noticed by
proxy.onError, I had to make it return a rejection promise rather than
throw an exception. An exception just gets logged to the browser console
and nothing else.
---
webextension/background.js | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/webextension/background.js b/webextension/background.js
index 3b24a37..b43e614 100644
--- a/webextension/background.js
+++ b/webextension/background.js
@@ -250,6 +250,30 @@ async function roundtrip(request) {
}
}
+// If an error occurs in a proxy.onRequest listener (for instance if a ProxyInfo
+// field is missing or invalid), the browser will ignore the proxy and just
+// connect directly. It will, however, call proxy.onError listeners. Register a
+// static proxy.onError listener that sets a global flag if an error ever
+// occurs; and a static browser.onBeforeRequest listener which checks the flag
+// and cancels every request if it is set. We could be less severe here (we
+// probably only need to cancel the *next* request that occurs after a proxy
+// error), but this setup is meant to be a fail-closed safety net for what is
+// essentially a "can't happen" state under correct configuration. Note that
+// proxy.onError doesn't get called for transient errors like a failure to
+// connect to the proxy, only for nonsensical ProxyInfo configurations.
+// https://bugzilla.mozilla.org/show_bug.cgi?id=1528873
+// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/…
+let proxyError = null;
+browser.proxy.onError.addListener(error => {
+ console.log(`proxy error, disabling: ${error.message}`);
+ proxyError = error;
+});
+browser.webRequest.onBeforeRequest.addListener(
+ details => ({cancel: proxyError != null}),
+ {urls: ["http://*/*", "https://*/*"]},
+ ["blocking"]
+);
+
// Connect to our native process.
let port = browser.runtime.connectNative("meek.http.helper");
1
0

[translation/torbutton-browseronboardingproperties_completed] Update translations for torbutton-browseronboardingproperties_completed
by translation@torproject.org 19 Feb '19
by translation@torproject.org 19 Feb '19
19 Feb '19
commit a3fec8ee8027e4daa91d9b3f7138fb048965ecc8
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Feb 19 05:19:05 2019 +0000
Update translations for torbutton-browseronboardingproperties_completed
---
tr/browserOnboarding.properties | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tr/browserOnboarding.properties b/tr/browserOnboarding.properties
index 1b10fd9a0..d3c085305 100644
--- a/tr/browserOnboarding.properties
+++ b/tr/browserOnboarding.properties
@@ -19,7 +19,7 @@ onboarding.tour-tor-network.button=Devre Görünümüne Geç
onboarding.tour-tor-circuit-display=Devre Görünümü
onboarding.tour-tor-circuit-display.title=Yolunuzu görün.
-onboarding.tour-tor-circuit-display.description=Ziyaret ettiğiniz her web sitesi için bağlantınız dünya üzerindeki üç Tor aktarıcısından oluşan bir devreden şifrelenir ve aktarılır. Hiç bir web sitesi sizin gerçekte nereden bağlandığınızı bilemez. Kullandığınız devreyi değiştirmek için Devre Görünümünde "Bu Sitenin Devresini Yenile" üzerine tıklayın.
+onboarding.tour-tor-circuit-display.description=Ziyaret ettiğiniz her web sitesi için bağlantınız, dünya üzerindeki üç Tor aktarıcısından oluşan bir devre kurularak şifrelenir ve aktarılır. Hiç bir web sitesi sizin gerçekte nereden bağlandığınızı bilemez. Kullandığınız devreyi değiştirmek için Devre Görünümünde "Bu Sitenin Devresini Yenile" üzerine tıklayın.
onboarding.tour-tor-circuit-display.button=Yolumu Göster
onboarding.tour-tor-security=Güvenlik
1
0